Lightweight python CLI for indexing, searching, and downloading Manga from popular online sources.
Usage: manga [OPTIONS] COMMAND [ARGS]...
Options:
--help Show this message and exit.
Commands:
download -
read -
search -
version -
Sources are scraped and indexed using Whoosh
By default, chapters are downloaded to ~/.manga/manga/<title>.
To install the package after checking out the repo locally, run
$ python -m venv venv
$ source venv/bin/activate
$ python -m pip install -r requirements.txt
$ python -m pip install -e ./
The reader uses the pytest unit testing framework and pytest-cov for code coverage. Tests can be run after installing the package locally with
$ py.test
from the project root.