Metadata-Version: 2.1
Name: hyperunison_public_api_sdk
Version: 1.1.8
Summary: Python SDK to use public API of Unison
Author-email: Konstantin Naumov <konstantin@hyperunison.com>
Project-URL: Homepage, https://github.com/Hyperunison/unison-sdk-python
Project-URL: Issues, https://github.com/Hyperunison/unison-sdk-python/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Hyperunison Python SDK

You can use this SDK to execute UQL queries via Public API.

## API keys

You will need to create API key to use the Public API. You can do it in Web interface of the site.

## The example of using

```python
from src.UnisonSDKApi import UnisonSDKApi
from src.auto.auto_api_client.configuration import Configuration

query = ''
api_key = ''
biobank_id = 1
api = UnisonSDKApi(
    Configuration(
        host='',
    )
)
response = api.execute_cohort_request(
    api_key,
    biobank_id,
    query
)
print(response)
```
