Metadata-Version: 2.1
Name: iotdb-session-0.10.1
Version: 0.1.2
Summary: A small iotdb python client
Home-page: https://github.com/JulianFeinauer/iotdb-session-py
Author: Julian Feinauer
Author-email: j.feinauer@pragmaticminds.de
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: apache-iotdb (==0.10.1)
Requires-Dist: six (==1.15.0)
Requires-Dist: thrift (==0.13.0)

# Python package for IoTDB

This module contains the missing parts from the `apache-iotdb` package which can be found here https://pypi.org/project/apache-iotdb/.

## Example

Just install the package via `pip install iotdb-session-0.10.1`.
The sessions API can be used via:

```
from iotdb_session.Session import Session

ip = "127.0.0.1"
port_ = "6667"
username_ = 'root'
password_ = 'root'
session = Session(ip, port_, username_, password_)
session.open(False)
zone = session.get_time_zone()
session.close()

self.assertEqual("+08:00", zone)
```

