Metadata-Version: 2.1
Name: mandown
Version: 0.1.1
Summary: Command line application and library to download manga from various sources
Home-page: https://github.com/potatoeggy/mandown
License: AGPL-3.0-only
Keywords: manga,downloader,download
Author: Daniel Chen
Author-email: danielchen04@hotmail.ca
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: beautifulsoup4 (>=4.10.0,<5.0.0)
Requires-Dist: feedparser (>=6.0.8,<7.0.0)
Requires-Dist: requests (>=2.27.0,<3.0.0)
Requires-Dist: typer (>=0.4.0,<0.5.0)
Project-URL: Documentation, https://github.com/potatoeggy/mandown
Project-URL: Repository, https://github.com/potatoeggy/mandown
Description-Content-Type: text/markdown

# mandown

Python library and command line application to download books from various sources including manga

Currently only supports MangaSee.

## Dependencies

- python = "^3.8"
- typer = "^0.4.0"
- feedparser = "^6.0.8"
- beautifulsoup4 = "^4.10.0"
- requests = "^2.27.0"

## Usage

```
mandown URL DESTINATION_FOLDER
```

Run `python cli.py --help` for more info.

## Library usage

```python
from mandown import mandown

md.download(url_to_manga, destination_folder, start_chapter=None, end_chapter=None, maxthreads=4)

manga = md.query(url_to_manga)
print(manga.metadata, manga.chapters)
```

