Skip to content

ekadasa/mannou

Repository files navigation

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

Features

  • Get info and download every chapters from supported sites.

Installation

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

$ pip install mannou

Examples

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

CLI

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

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

Project

>>> 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)

Documentation

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

License

Free software: GNU General Public License v3.

Credits

About

A manga downloader from various sites

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages