manganelo

Manganelo/Manganato Web Scrapper

MIT License

Downloads
1.7K
Stars
25
Committers
6

Unofficial Manganelo (Manganato) API

Installation

Python 3.7+ (latest version requires Python 3.9+)

pip install manganelo

Examples

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")