A simple manga extractor. Extracts any comic info, chapter list and chapter pages. In development.
Project description
MEXT - Manga/Manhua/Manhwa Extractor
A simple manga extractor. Extracts any comic info, chapter list and chapter pages. This is an app that strictly provides API.
Still in development.
This has been tested only on Windows 11 64-bit.
Requirements
- Node.js
Installations
pip install mext
Usage
This package uses multiple provider codes to extract manga/manhua/manhwa data from online sites.
The providers and it's usage is listed below.
It's easy to use from python code.
Proxy
To use proxy IP's
export HTTP_PROXY='http://10.10.10.10:8000'
export HTTPS_PROXY='http://10.10.10.10:1212'
Steps:
-
Import
Mext
like thisfrom mext import Mext
-
Get the URL of manga or chapter and pass it to
Mext
site_url = 'xxx0' manga_url = 'xxx1' chapter_url = 'xxx2' # Initialize me = Mext() # To get manga manga = me.get_manga(manga_url) # To get manga list manga_list = me.get_manga_list(site_url) # To get one particular chapter chapter = me.get_chapter(chapter_url) # Pass manga url to get chapter list belonging to manga chapter_list = me.get_manga_chapters(manga_url)
Providers
- MangaDex
- AsuraScans
...others coming soon
Mangadex
Get Manga using Manga URL
from mext import Mext
manga_url = 'https://mangadex.org/title/d1c0d3f9-f359-467c-8474-0b2ea8e06f3d/bocchi-sensei-teach-me-mangadex'
manga = me.get_manga(manga_url) # You'll get back a instance of Mext with Manga data
print(manga.to_dict())
Get Chapter using Chapter URL
from mext import Mext
chapter_url = 'https://mangadex.org/chapter/e183d3f4-fde0-4288-a1ed-8547490f84b3'
chapter = me.get_chapter(chapter_url) # You'll get back a instance of Mext with Chapter data
print(chapter.to_dict())
Get Chapters List belonging to a manga using Manga URL
from mext import Mext
manga_url = 'https://mangadex.org/title/f7972eed-0040-4aac-b8de-fc99c522c25a/anti-kissmanga-anthology'
chapter_list = me.get_manga_chapters(manga_url) # You'll get back a list of instances of Mext with a list of Chapter data
chapter_list = me.chapter_list
print(chapter_list.to_dict())
Credits
Made using
- Mangadex API Documentation Mangadex API
- Manga-py manga-py
- Mangadex API - MangaDex.py
Contributions
Ready for any genuine support and valid pull requests.
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file mext-2.0.1.tar.gz
.
File metadata
- Download URL: mext-2.0.1.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.1.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b94765f90b22110a42b38be13e8fe9f7aa642d71601b148b253e15879be03cd7 |
|
MD5 | f83cb94c2b65fd750c5b45ada3cff99f |
|
BLAKE2b-256 | b4657b54947ef30436a6410dca12f5ae1d4803c406a3eb5525fdf6c7b5c417db |
File details
Details for the file mext-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: mext-2.0.1-py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.1.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4bdc1d6f14825f5ebe6c9fe1a727ef1e83ddd177556f9046fec8ad9b097ae68 |
|
MD5 | d7afdd1445450d787fd4b740e890cfbe |
|
BLAKE2b-256 | 8a9f383696a10720603141d709efc6ab58d6510561491caccc8004c10506821e |