Metadata-Version: 2.1
Name: aio-cooker-client
Version: 0.1.0
Summary: A python (asyncio) client library for Quortex Cooker
Home-page: https://github.com/quortex/cooker-client-python
Author: Quortex DevOps Team
Author-email: devops@quortex.io
License: Apache-2.0
Description: # Cooker Client Python
        Python (asyncio) client library for Quortex Cooker API.
        
        ## Installation
        
        This client can be installed by running `pip install aio_cooker_client`. It requires Python 3.7+ to run.
        
        ## Usage
        
        ```python
            import aio_cooker_client
        
            client = aio_cooker_client.CookerClient(
                cooker_domain_name=DOMAIN_NAME,
                client_id=CLIENT_ID,
                client_secret=CLIENT_SECRET,
                cache_ttl=120,
            )
        
            cred = client.get_credential()
        ```
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Requires-Python: ==3.*,>=3.7.0
Description-Content-Type: text/markdown
Provides-Extra: dev
