This is an example of how to connect to IoTDB with python, using the thrift rpc interfaces. Things will be a bit different on Linux or Windows, we will introduce how to operate on the two systems separately.
python3.7 or later is preferred.
You have to install Thrift (0.11.1 or later) to compile our thrift file into python code. Below is the official tutorial of installation:
http://thrift.apache.org/docs/install/
You can find the Apache IoTDB Python Client API package on https://pypi.org/project/apache-iotdb/.
The download command is:
pip install apache-iotdb
If you have added Thrift executable into your path, you may just run client-py/compile.sh or client-py\compile.bat, otherwise, modify it to set variable THRIFT_EXE to point to your executable. This will generate thrift sources under folder target, you can add it to your PYTHONPATH so that you will be able to use the library in your code. Note that the scripts locate the thrift source file by relative path, so if you move the scripts else where, they are no longer valid.
Optionally, if you know the basic usage of thrift, download the thrift source file in thrift\src\main\thrift\rpc.thrift, and simply use thrift -gen py -out ./target/iotdb rpc.thrift to generate the python library.
We provided an example of how to use the thrift library to connect to IoTDB in client-py/src /client_example.py, please read it carefully before you write your own code.