Metadata-Version: 2.1
Name: manga-down
Version: 0.1.1
Summary: Python package to download manga available on mangareader and mangapanda
Home-page: https://github.com/shaikhsajid1111/manga-down/
Author: Shaikh Sajid
Author-email: shaikhsajid3732@gmail.com
License: UNKNOWN
Keywords: web-scraping manga-down manga-download download manga-downloader requests bs4 beautifulsoup mangreader mangapanda
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Requires-Python: >=3.6.9
Description-Content-Type: text/markdown
Requires-Dist: bs4 (==0.0.1)
Requires-Dist: requests (==2.22.0)
Requires-Dist: fake-headers (==1.0.2)

# manga_down
-----------------
manga_down is a tool to download manga from [Mangareader](https://www.mangareader.net) and [Mangapanda](https://http://www.mangapanda.com) 

[![Build Status](https://travis-ci.org/joemccann/dillinger.svg?branch=master)](https://travis-ci.org/joemccann/dillinger) 
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity)
[![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) [![Python >=3.6.9](https://img.shields.io/badge/python-3.6.9+-blue.svg)](https://www.python.org/downloads/release/python-376/)

## Installation

```
pip3 install manga-down
```

## How to use?

### Mangareader

#### To view all chapters available for manga

```python
from manga_down import mangareader     #import mangareader from manga_down

naruto = mangareader.Manga("naruto")   #initialize Manga class with manga name
naruto.get_chapter_list()        #returns list of all chapters of given manga
```

Found the chapter number that you wanted to download?.
Here's how to download that chapter

```python
naruto.download_chapter("120")  #just call the download_chapter by passing chapter number as argument
```

wanted to download the chapter in another folder?
```
file_location = "/home/user/Downloads"
naruto.download_chapter("120", file_location)#this will download the chapter in another folder passed as parameter 
```

----------------------------------------

### Mangapanda

#### To view all chapters available for manga

```python
from manga_down import mangapanda   #import mangapanda from manga_down

bleach = mangapanda.Manga("bleach")   #initialize Manga class with manga name
bleach.get_chapter_list()        #returns list of all chapters of given manga
```

Found the chapter number that you wanted to download?.
Here's how to download that chapter

```python
bleach.download_chapter("120")  #just call the download_chapter by passing chapter number as argument
```

wanted to download the chapter in another folder?
```
file_location = "/home/user/Downloads"
bleach.download_chapter("120", file_location)#this will download the chapter in another folder passed as parameter 
```


### Found something unusual? Report [here](https://github.com/shaikhsajid1111/manga-down/issues)


## LICENSE
[MIT](LICENSE)



