Skip to main content

An API wrapper for the MangaDexAPIv5.

Project description

Codacy Badge Quality Gate Status MangaDex API Status MangaDex Website Status

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:
Quick start demo image
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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

MangaDex.py-2.0.10.tar.gz (10.4 kB view hashes)

Uploaded Source

Built Distribution

MangaDex.py-2.0.10-py3-none-any.whl (12.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page