Unofficial API for the Manganelo/Manganato website.


Keywords
manga, manganelo, scrapper, web, mangakakalot, thread, comic, manhwa, manganato, manga-scraper, python
License
MIT
Install
pip install manganelo==1.23

Documentation

Downloads Downloads Downloads

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