tree: 1c83b505dc9a9615e2c1f8d3354646ac148b105b [path history] [tgz]
  1. README.md
  2. setup.py
client-py/pypi/README.md

Apache IoTDB

Build Status codecov GitHub release License IoTDB Website

Apache IoTDB (Database for Internet of Things) is an IoT native database with high performance for data management and analysis, deployable on the edge and the cloud. Due to its light-weight architecture, high performance and rich feature set together with its deep integration with Apache Hadoop, Spark and Flink, Apache IoTDB can meet the requirements of massive data storage, high-speed data ingestion and complex data analysis in the IoT industrial fields.

Apache IoTDB Python Client API

Using the package, you can write data to IoTDB, read data from IoTDB and maintain the schema of IoTDB.

Requirements

You have to install thrift (>=0.13) before using the package.

How to use (Example)

First, download the package: pip3 install apache-iotdb

You can get an example of using the package to read and write data at here: Example

(you need to add import iotdb in the head of the file)

Or:


from iotdb.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()