MangaDex.py
An easy to use wrapper for the MangaDexAPIv5 written in Python using Requests.
Install / Use
/learn @Proxymiity/MangaDex.pyREADME
[!warning] This library is not updated anymore. This project is now over, please see other alternatives such as EMACC99/mangadex. You can also read the API docs here and get yourself familiar with them.
The use of this library is discouraged. Packages from PyPI may be removed at any given time.
As a reminder, I was never affiliated with MangaDex by any means.
MangaDex.py
An easy to use, MangaDex API Wrapper using Requests - aiming to be simple and efficient.
Installation
pip install --upgrade MangaDex.py
Quick start
Example
Logging in and getting the latest chapter from a manga:
# Import the MangaDexPy library
import MangaDexPy
cli = MangaDexPy.MangaDex()
cli.login("username", "password")
# Get manga with id b9797c5b-642e-44d9-ac40-8b31b9ae110a.
manga = cli.get_manga("b9797c5b-642e-44d9-ac40-8b31b9ae110a")
print(manga.title + "'s latest volume:")
print(manga.last_volume)
print(manga.title + "'s latest chapter:")
print(manga.last_chapter)
Here's the terminal output:

You can find more examples on this page
Explanation
cli = MangaDexPy.MangaDex() returns the client object used to make calls.
cli.login(u ,p) logs in to MangaDex using credentials stored in variables.
manga = cli.get_manga("b9797c5b-642e-44d9-ac40-8b31b9ae110a", full=True) returns a Manga object, which contains the last_volume and last_chapter properties.
Documentation
The full API documentation is available in this repository's wiki.
Related Skills
gh-issues
349.7kFetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
node-connect
349.7kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
oracle
349.7kBest practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
taskflow-inbox-triage
349.7kname: taskflow-inbox-triage description: Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some w
