Metadata-Version: 2.1
Name: gs-dbs-client
Version: 0.1.14
Summary: python wrapper for the Glass Sphere DBS
Home-page: https://glass-sphere-ai.de
Author: Glass Sphere Software
Author-email: 
License: MIT
Description: # 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.gsdbs 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
        (C) 2021 ENS - Freies Institut fÃ¼r Technische Informatik UG haftungsbeschrÃ¤nkt
        
        [MIT](https://choosealicense.com/licenses/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
