Metadata-Version: 2.1
Name: manganelo
Version: 1.1.1
Summary: Unofficial API for the Manganelo (and Mangakakalot) website.
Home-page: https://github.com/nixonjoshua98/manganelo
Author: Joshua Nixon
Author-email: nixonjoshua98@gmail.com
License: MIT
Download-URL: https://github.com/nixonjoshua98/manganelo/archive/v1.1.1.tar.gz
Description: # Unofficial Manganelo API
        
        #### Package to scrape the website Manganelo (and Mangakakalot).
        
        _nixonjoshua98 at gmail dot com_
        
        ## Installation
        
        **Python 3.7.x**
        ```cmd
        pip install manganelo
        ```
        
        ## Examples
        ##### Searching
        
        ```python
        results = MangaSearch("God")
        
        for r in results:
            print(r.title, r.url)
        ```
        
        ##### Information
        
        ```python
        info = MangaInfo("https://manganelo.com/manga/martial_gods_space")
        
        print("Title:", info.title)
        print("Authors:", info.authors)
        print("Genres:", info.genres)
        print("Alt Titles:", info.alt_titles)
        print("Status:", info.status)
        ```
        
        ##### Chapter List
        
        ```python
        chapters = ChapterList("https://manganelo.com/manga/everlasting_god_of_sword")
        
        for c in chapters:
            print(c.url, c.chapter_num)
        ```
Keywords: manga,manganelo,scrapper,web,mangakakalot
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.7
Description-Content-Type: text/markdown
