shaikhsajid1111 / manga-down

manga_down is a tool to download manga from mangareader and mangapanda
https://pypi.org/project/manga-down/
MIT License
4 stars 0 forks source link
manga manga-downloader manga-reader manga-scraper mangapanda mangareader python requests web-crawler web-crawler-python web-scraping

manga_down


manga_down is a tool to download manga from Mangareader and Mangapanda

Build Status Maintenance PyPI license Python >=3.6.9

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

MIT