Metadata-Version: 2.1
Name: gs-dbs-client
Version: 0.0.5
Summary: python wrapper for the Glass Sphere DBS
Home-page: https://glass-sphere-ai.de
Author: Glass Sphere Software
Author-email: 
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: gql (==3.0.0a5)
Requires-Dist: pandas
Requires-Dist: PyYAML
Requires-Dist: requests
Requires-Dist: aiohttp

# GS DBS Client

The GS-DBS-Client is a Python library interacting with the Glass Sphere DBS.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install the gs-dbs-client.

```bash
pip install gs-dbs-client
```

## Usage

```python
from client.main import GSDBS

	 _gsdbs = GSDBS()
     df = pd.read_csv('test.csv', sep=';')
     df = df.astype(
        {"streamkey": str, "fragmentid": str, "frameid": str, "objectid": str, "classid": str, "x": int, "y": int, "width": int, "height": int,
         "confidence": float})

     rc = _gsdbs.addDObject("gun", ["streamkey", "fragmentid", "frameid", "objectid"], df)


```

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

