Metadata-Version: 2.1
Name: askitsu
Version: 0.5.0
Summary: An async python wrapper Kitsu.io API
Home-page: UNKNOWN
Author: ShomyKohai
License: MIT
Project-URL: Documentation, https://askitsu.rtfd.org/
Project-URL: Source, https://github.com/ShomyKohai/askitsu
Description: <h1  align="center">
        askitsu
        </h1>
        
        [![TwitterShomy](https://img.shields.io/badge/-shomykohai-1DA1F2?style=flat&logo=twitter&logoColor=white&labelColor=1DA1F2)](https://twitter.com/shomykohai)
        [![askitsu](https://img.shields.io/pypi/v/askitsu?label=askitsu&logo=pypi&logoColor=white&labelColor=blue&color=9cf)](https://pypi.org/project/askitsu/)
        [![Documentation Status](https://readthedocs.org/projects/askitsu/badge/?version=latest)](https://askitsu.readthedocs.io/en/latest/?badge=latest)
        
        <p align="center">
          An async wrapper for Kitsu.io API written in Python
        </p>
        
        ![askitsu](https://github.com/ShomyKohai/askitsu/blob/master/docs/images/dark.png?raw=true "askitsu")
          
        # Key features
        
        - Fully typed
        - Use of `async`/`await`
        - Support most of primary Kitsu entries -- Anime, Manga, Characters and much more
        - Can be used with discord bots
        
        # Installing
        
        Requires python 3.8+
        
        To install the package, you can simply run
        
        ```py
        
        #Linux/MacOS
        python3 -m pip install askitsu
        
        
        #Windows
        py -3 -m pip install askitsu
        
        ```
        
        Or to get the latest dev version
        
        ```py
        
        #Linux/MacOS
        python3 -m pip install git+https://github.com/ShomyKohai/askitsu.git
        
          
        
        #Windows
        py -3 -m pip install git+https://github.com/ShomyKohai/askitsu.git
        
        ```
        
        ## Requirements
        
        - [aiohttp](https://pypi.org/project/aiohttp/)
        - [colorama](https://pypi.org/project/colorama/)
        
        # Examples
        
        ```py
        import askitsu
        import asyncio
        
        async def search():
            client = askitsu.Client()
            anime = await client.search_anime("attack on titan")
            print(anime.episode_count)
            print(anime.status)
            await client.close()
        
        loop = asyncio.get_event_loop()
        loop.run_until_complete(search())
        
        ```
        
        More examples can be found inside the example directory -> [Here](https://github.com/ShomyKohai/askitsu/tree/master/examples)
        
        # Links
        
        - [Docs](https://askitsu.readthedocs.io/)
        - [PyPi](https://pypi.org/project/askitsu/)
        - [Kitsu.io Docs](https://kitsu.docs.apiary.io/)
        - [discord.py](https://github.com/Rapptz/discord.py) (bot example)
        
Keywords: kitsu,kitsu api,kitsu.io,async
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Description-Content-Type: text/markdown
