Metadata-Version: 2.1
Name: nekosbest
Version: 0.1.0
Summary: A simple async Python wrapper for nekos.best API.
Home-page: https://github.com/PredaaA/nekos-best.py
Author: PredaaA (Predä 。#1001)
License: AGPLv3
Project-URL: Issue Tracker, https://github.com/PredaaA/nekos-best.py/issues
Project-URL: Source Code, https://github.com/PredaaA/nekos-best.py
Description: # nekos-best.py
        
        A simple async Python wrapper for nekos.best API.
        
        > Supported categories are: cuddle, feed, hug, kiss, nekos, pat, poke, slap and tickle.<br>
        > See <https://nekos.best/endpoints> for all endpoints.
        
        ## Requirements
        
        - aiohttp (>=3.6.2)
        
        ## Installation
        
        Make sure to have pip installed in your environement. It will also install all requirements.
        
        ```bash
        pip install nekosbest
        ```
        
        ## Example
        
        ```py
        import asyncio
        from nekosbest import Client
        
        client = Client()
        
        async def main(category: str):
            result = await client.get_image(category)
            print(result)
            print(result.url)
            await client.teardown()  # Cleanup http client.
        
        loop = asyncio.get_event_loop()
        loop.run_until_complete(main("nekos"))
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
