Python client for MangaPlus to access manga content and interact with the API.
Project description
A Python client for MangaPlus by Shueisha, allowing developers to access manga content and interact with the official API programmatically.
Features
- Access all MangaPlus titles: serializing, completed, one-shots.
- Fetch manga chapters and downloadable images in multiple qualities.
- Manage favorites, comments, and subscriptions.
- Track reading history and title rankings.
- Log user interactions, including banner taps, popup taps, and downloads.
- Supports multiple languages and viewer modes (vertical/horizontal).
- Provides device registration and secure subscription handling.
Installation
You can install via pip:
pip install mangaplus
Or install the latest version from GitHub:
pip install git+https://github.com/hyugogirubato/mangaplus.git
Usage
from mangaplus import MangaPlus
from mangaplus.constants import Language, Viewer, Quality, TitleType
if __name__ == "__main__":
# Initialize the client
client = MangaPlus(lang=Language.ENGLISH, viewer=Viewer.VERTICAL)
# Register a new device
device_id = "your_device_id_here"
client.register(device_id=device_id)
# Fetch updates titles
updates_content = client.getUpdates()
# Fetch all serializing titles
titles = client.getAllTitlesV3(title_type=TitleType.SERIALIZING)
# Get chapter images
chapter_data = client.getMangaData(chapter_id=1000486, quality=Quality.SUPER_HIGH)
# Add a title to favorites
client.addFavorited(title_id=100020)
# Post a comment
client.postCommentRx(chapter_id=1000486, body="Great chapter!")
API Methods
Some of the key methods provided by this client:
| Method | Description |
|---|---|
getAllTitlesV3() |
Get titles by type (serializing, completed, one-shots) |
getMangaData() |
Retrieve chapter images with optional quality and split options |
getTitleDetail() |
Get detailed title information |
getFavoriteTitles() |
List all favorite titles |
addFavorited() / deleteFavorite() |
Add or remove titles from favorites |
getHome() |
Fetch home screen data |
register() |
Register a device and obtain a secret key |
setSubscription() / setSubscriptionRestore() |
Manage subscription data |
getRankingV2() |
Get ranking lists (hottest, trending, completed) |
getHistory() |
Retrieve user reading history |
logBannerTap() / logPopupTap() |
Log interactions with banners and popups |
And many more methods for publisher news, downloadable images, language preferences, and event logging.
Disclaimer
MangaPlus Python Client is an unofficial library and is not affiliated with or endorsed by Shueisha. The library is provided "as-is" without any warranty, and usage is at your own risk. Please comply with the MangaPlus service terms and conditions while using this library.
Contributors
Licensing
This project is licensed under the terms of GNU License. You can find a copy of the license in the LICENSE file in the root folder.
© hyugogirubato 2026
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mangaplus-2.1.2.tar.gz.
File metadata
- Download URL: mangaplus-2.1.2.tar.gz
- Upload date:
- Size: 64.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.8.10 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bc541f18a6ae270a8665441b91f98c4ef0b2bdac508d5aeddff6840d543b46c
|
|
| MD5 |
37e2eb1fe09744ab51571163aef4f96f
|
|
| BLAKE2b-256 |
cf0de4afdd7dae672c30160f994649060e21ebc983d930a4bd1c7fb98eb81a5d
|
File details
Details for the file mangaplus-2.1.2-py3-none-any.whl.
File metadata
- Download URL: mangaplus-2.1.2-py3-none-any.whl
- Upload date:
- Size: 65.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.8.10 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c32bf136f086f9c184ba9b6901ee1b03b7edd58ec7c5f13e90011b540a9ccb01
|
|
| MD5 |
e5ec2a85816146f083c26620c3897483
|
|
| BLAKE2b-256 |
3cdb2ae45b8bf07ad5aa7a06951dc1197592c6d4899737d225725481fed732d3
|