https://github.com/nixonjoshua98/manganelo
Manganelo/Manganato Web Scrapper
https://github.com/nixonjoshua98/manganelo
manga manga-scraper manhwa python
Last synced: 7 days ago
JSON representation
Manganelo/Manganato Web Scrapper
- Host: GitHub
- URL: https://github.com/nixonjoshua98/manganelo
- Owner: nixonjoshua98
- License: mit
- Created: 2019-12-27T14:06:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-19T21:19:42.000Z (about 2 years ago)
- Last Synced: 2025-10-25T22:05:28.152Z (7 days ago)
- Topics: manga, manga-scraper, manhwa, python
- Language: Python
- Homepage:
- Size: 162 KB
- Stars: 28
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://pepy.tech/project/manganelo) [](https://pepy.tech/project/manganelo) [](https://pepy.tech/project/manganelo)
# Unofficial Manganelo (Manganato) API
Installation
-
**Python 3.7+ (latest version requires Python 3.9+)**
```cmd
pip install manganelo
```
Examples
-
```python
import manganelo
home_page = manganelo.get_home_page()
results = manganelo.get_search_results("Naruto")
for r in results:
print(r.title, r.views)
chapters = r.chapter_list
icon_path = r.download_icon("./icon.png")
for c in chapters:
print(f"#{c.chapter} | {c.title}")
chapter_path = c.download(f"./Chapter {c.chapter}.pdf")
```