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
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
Requires-Dist: aiohttp (==3.7.*,>=3.7.0)
Provides-Extra: dev
Requires-Dist: pytest (==5.*,>=5.2.0) ; extra == 'dev'
Requires-Dist: pytest-asyncio (==0.*,>=0.15.1) ; extra == 'dev'

# 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()
```


