Python package to download manga available on mangareader and mangapanda
Project description
manga_down
manga_down is a tool to download manga from Mangareader and Mangapanda
Installation
pip3 install manga-down
How to use?
Mangareader
To view all chapters available for manga
from manga_down import mangareader #import mangareader from manga_down
naruto = mangareader.Manga("naruto") #initialize Manga class with manga name
naruto.get_chapter_list() #returns list of all chapters of given manga
Found the chapter number that you wanted to download?. Here's how to download that chapter
naruto.download_chapter("120") #just call the download_chapter by passing chapter number as argument
wanted to download the chapter in another folder?
file_location = "/home/user/Downloads"
naruto.download_chapter("120", file_location)#this will download the chapter in another folder passed as parameter
Mangapanda
To view all chapters available for manga
from manga_down import mangapanda #import mangapanda from manga_down
bleach = mangapanda.Manga("bleach") #initialize Manga class with manga name
bleach.get_chapter_list() #returns list of all chapters of given manga
Found the chapter number that you wanted to download?. Here's how to download that chapter
bleach.download_chapter("120") #just call the download_chapter by passing chapter number as argument
wanted to download the chapter in another folder?
file_location = "/home/user/Downloads"
bleach.download_chapter("120", file_location)#this will download the chapter in another folder passed as parameter
Found something unusual? Report here
LICENSE
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
manga_down-0.1.2.tar.gz
(7.7 kB
view details)
File details
Details for the file manga_down-0.1.2.tar.gz
.
File metadata
- Download URL: manga_down-0.1.2.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c9a50d52a9a0f95909d7a5539b8cb10617c1344edbcb9436b94d0cbc5ebfc16 |
|
MD5 | 3a42f59bb886f510ef2d8906e4c57af1 |
|
BLAKE2b-256 | e94895c9375d2f27a94388f5ded89cbbebee1b0a8913bf4755d92a708a410e2c |