You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2020/07/21 13:09:10 UTC

[incubator-iotdb] 03/04: updated README file of python client.

This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a commit to branch rel/0.10
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git

commit 4a38a29cde20eb17f3da0b86cff2f00b0e24b4fe
Author: Zekun Li <lz...@gmail.com>
AuthorDate: Tue Jul 21 14:41:13 2020 +0800

    updated README file of python client.
---
 client-py/readme.md | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/client-py/readme.md b/client-py/readme.md
index 576cae7..a63ec87 100644
--- a/client-py/readme.md
+++ b/client-py/readme.md
@@ -19,7 +19,7 @@
 
 -->
 
-# Python connection
+# Python Client
 ## Introduction
 This is an example of how to connect to IoTDB with python, using the thrift rpc interfaces. Things 
 are almost the same on Windows or Linux, but pay attention to the difference like path separator.
@@ -45,6 +45,7 @@ Optionally, if you know the basic usage of thrift, you can only download the thr
 `service-rpc\src\main\thrift\rpc.thrift`, and simply use `thrift -gen py -out ./target/iotdb rpc.thrift` 
 to generate the python library.
 
-## Example
-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.
\ No newline at end of file
+## Session Client & Example
+We packed up the Thrift interface in `client-py/src/session.py` (similar with its Java counterpart), also provided 
+an example file `client-py/src/sessionExample.py` of how to use the session module. please read it carefully.
+