Metadata-Version: 1.2
Name: mangapy
Version: 1.0.0
Summary: Manga downloader
Home-page: https://github.com/alemar11/manga
Author: Alessandro Marzoli
Author-email: alessandromarzoli@gmail.com
License: MIT
Description: # mangapy
        
        Manga downloader
        
        - fanfox.net
        - mangapark.net
        
        ## Installation
        
        Install from local folder
        
        ```
        pip install .
        ```
        
        Install from local folder (editable mode)
        
        ```
        pip install -e .
        ```
        
        Install a local setup.py into your virtual environment/Pipfile:
        
        ```
        pipenv install -e .
        ```
        
        Run tests:
        
        ```
        pipenv run pytest
        ```
        
        ## Usage
        
        Downloads all Bleach chatpers inside the *Downloads* folder (from Fanfox source).
        ```
        mangapy bleach -a -o ~/Downloads
        ```
        
        Downloads Bleach chatper 1 inside the *Downloads* folder (from Fanfox source).
        ```
        mangapy bleach -c 1 -o ~/Downloads
        ```
        
        Downloads Bleach chatpers from 0 to 10 (included) inside the *Downloads* folder using MangaPark as source.
        ```
        mangapy bleach -c 0-10 -o ~/Downloads -s mangapark
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: End Users/Desktop
Requires-Python: >=3.7
