GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.
The largest MangaDex API. Contribute to md-y/mangadex-full-api development by creating an account on GitHub.
This module supports the "GET" endpoints for mangadex.org api. It doesn't require authentication, and doesn't support authenticated features either. (yet.) Getting Help/Reporting Bugs Theoretically, you can report bugs in thegithub repository. However I am more active in discord. Join thediscord...
The largest MangaDex API. Contribute to md-y/mangadex-full-api development by creating an account on GitHub.
A python wrapper for the MangaDex API V5. It uses the requests library and all the aditional arguments can be viewed in the Official Mangadex Documentation Instaling the API wrapper module PyPI pip install --Upgrade mangadex Installing local In the mangadex directory type pip install . Wrapper ...
The largest MangaDex API. Contribute to md-y/mangadex-full-api development by creating an account on GitHub.
The largest MangaDex API. Contribute to md-y/mangadex-full-api development by creating an account on GitHub.
As of yesterday MangaDex has opened their API again after the attacks. It's in an open beta and read-only, but most of the features that gallery-dl might be interested in is there. Announcement: https://mangadex.org/index.html API docs: ...
(self): self.url = "https://api.mangadex.org" self.timeout = 5 def ping(self) -> Optional[str]: """ Ping healthchech Raises: ApiError: Raised when api is not functioning Returns: Optional[str]: Returns string when the Infrastructure is ok """ url = f"{self.url}/ping" pong =...
api_root = "https://api.mangadex.org" # mangadex-to-iso639-1 codes iso639_map = { @@ -27,6 +26,10 @@ class MangadexExtractor(Extractor): "vn": "vi", } def __init__(self, match): Extractor.__init__(self, match) self.api_root = self.config("api-server") or "https:/...