Metadata-Version: 2.1
Name: YuniteAPI
Version: 1.0.1
Summary: A asynchronous python wrapper for the Yunite API
Home-page: https://github.com/SylteA/YuniteAPI
Author: SylteA
License: MIT
Description: <h1>YuniteAPI</h1>
        
        A asynchronous wrapper for the Yunite API
        
        <h1>Getting Started:</h1>
        Install the package using one of the following commands:
        <li> <strong> pip install YuniteAPI </strong> </li>
        <li> <strong> pip install -U YuniteAPI </strong> </li>
        <li> <strong> python -m pip install -U git+https://github.com/SylteA/YuniteAPI.git </strong> </li>
        <hr>
        
        After that, create the client using the following code:
        ```python
        import YuniteAPI
        import asyncio
        
        
        async def main():
            client = YuniteAPI.Client()
            await client.add_token(guild_id=123456789, api_key='Your api-key')  # Example token
            
        
        if __name__ == '__main__':
            loop = asyncio.get_event_loop()
            loop.run_until_complete(main())
        ```
        
        For more documentation please view the <a href="https://github.com/SylteA/YuniteAPI/blob/master/DOCUMENTATION.md">documentation</a>
        
Keywords: wrapper,Yunite,api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.7.5
Description-Content-Type: text/markdown
