Skip to content

Latest commit

 

History

History
111 lines (68 loc) · 2.66 KB

README.rst

File metadata and controls

111 lines (68 loc) · 2.66 KB

Mannou - Manga Downloader

PyPI Python supported version. Build status of the master branch on linux (Ubuntu Xenial) Documentation.

A manga downloader from various sites.

Please remember this package still under development.

This command:

$ mannou https://manganelo.com/manga/tomochan_wa_onnanoko --download

will download every chapters to ~/Manga

  • Get info and download every chapters from supported sites.

You must have Python and PIP installed in your computer, then:

$ pip install mannou

You can use this package as CLI program or import it in your project.

$ mannou https://manganelo.com/manga/aiura --download --start 2 --end 3

This command will download manga called Aiura from chapter 2 to 3

>>> import mannou
>>> url = 'https://manganelo.com/manga/aiura'
>>> manga = mannou.get(url)
>>> str(manga) # or manga.title
Aiura
>>> manga[0] # or manga.chapters[0]
Chapter(number='1', url='https://manganelo.com/chapter/aiura/chapter_1')
>>> images = manga.get_chapter_images(manga[0].url)
>>> images[0]
Image(name='1.jpg', url='http://s8.mkklcdn.com/mangakakalot/a1/aiura/chapter_1/1.jpg')
>>> mannou.download(url, start=1, end=5) # Download every chapters 1 until 5 in 'Aiura' and save it to default location (~/Manga or %USERPROFILE%\Manga)

Please refer to https://mannou.readthedocs.io for further documentation.

Free software: GNU General Public License v3.