Metadata-Version: 2.1
Name: Qantio.Sdk.Public
Version: 0.3.2
Summary: The official SDK to interract with qant.io time series analysis and prediction services.
Home-page: https://qant.io
Author: qant.io
Author-email: support@qant.io
License: MIT
Keywords: qant.io,qantio,time series,forecasting,analysis,prediction,autoML,prediction as a service.
Classifier: Environment :: Console
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# qantio.sdk.client

Qantio.Sdk.Client is a Python library for dealing with Qant.io time series prediction service.

## Installation

Use the package manager [pip](https://pypi.org/project/qantio.sdk.client/) to install qantio.sdk.client.

```bash
pip install qantio.sdk.client
```
## Usage

```python
import qantio.sdk.client

# Create the client with your Qant.io ApiKey
qt_client = qantio_client("ApiKey")

# Authenticate the client against the backend with your Qant.io credentials
await qt_client.Authenticate("Username", "Password")

# Create a time serie, add an measurement and send data to Qant.io backend
await qt_client.Timeseries("Id").addMeasurement("Timestamp", "MeasurementValue").Send()
```

## License
[MIT](https://choosealicense.com/licenses/mit/)

