Metadata-Version: 2.1
Name: hyperscience-saas-client
Version: 1.0.4
Summary: hyperscience saas client library
Home-page: UNKNOWN
Author: Hyperscience
License: Apache License 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.24.0)
Requires-Dist: urllib3 (>=1.25.10)

# Hyperscience SaaS Client Library
The Hyperscience SaaS Client Library allows SaaS users to authenticate and use the API programmatically and seamlessly.

## Installation

You can install the Hyperscience SAAS Client Library from [PyPI](https://pypi.org/project/hyperscience-saas-client/):

    pip install hyperscience-saas-client

## How to use
The Hyperscience client library can be used in code:
```python
from hyperscience import ApiController, CredentialsProvider, Configuration

credentials = CredentialsProvider('client_id', 'client_secret')            
configuration = Configuration('cloud.hyperscience.net')
api_controller = ApiController(configuration, credentials)

response = api_controller.get('/api/v5/healthcheck')
```


