Skip to content

Commit 7a869fc

Browse files
authored
Open source users raise Python questions, other versions and master modifications (#467)
1 parent a702c65 commit 7a869fc

19 files changed

+45
-45
lines changed

src/UserGuide/Master/Tree/API/Programming-Python-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ You have to install thrift (>=0.13) before using the package.
3131

3232
First, download the package: `pip3 install apache-iotdb`
3333

34-
You can get an example of using the package to read and write data at here: [Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/SessionExample.py)
34+
You can get an example of using the package to read and write data at here: [Session Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/session_example.py)
3535

36-
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/SessionAlignedTimeseriesExample.py)
36+
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/session_aligned_timeseries_example.py)
3737

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

src/UserGuide/V0.13.x/API/Programming-Python-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ First, download the latest package: `pip3 install apache-iotdb`
3333

3434
*Notice: If you are installing Python API v0.13.0, DO NOT install by `pip install apache-iotdb==0.13.0`, use `pip install apache-iotdb==0.13.0.post1` instead!*
3535

36-
You can get an example of using the package to read and write data at here: [Example](https://github.com/apache/iotdb/blob/master/client-py/SessionExample.py)
36+
You can get an example of using the package to read and write data at here: [Session Example](https://github.com/apache/iotdb/blob/rel/0.13/client-py/SessionExample.py)
3737

38-
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/master/client-py/SessionAlignedTimeseriesExample.py)
38+
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/rel/0.13/client-py/SessionAlignedTimeseriesExample.py)
3939

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

src/UserGuide/V1.0.x/API/Programming-Python-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ You have to install thrift (>=0.13) before using the package.
3131

3232
First, download the package: `pip3 install apache-iotdb`
3333

34-
You can get an example of using the package to read and write data at here: [Example](https://github.com/apache/iotdb/blob/master/client-py/SessionExample.py)
34+
You can get an example of using the package to read and write data at here: [Session Example](https://github.com/apache/iotdb/blob/rel/1.0/client-py/SessionExample.py)
3535

36-
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/master/client-py/SessionAlignedTimeseriesExample.py)
36+
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/rel/1.0/client-py/SessionAlignedTimeseriesExample.py)
3737

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

src/UserGuide/V1.1.x/API/Programming-Python-Native-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You have to install thrift (>=0.13) before using the package.
3131

3232
First, download the package: `pip3 install apache-iotdb`
3333

34-
You can get an example of using the package to read and write data at here: [Example](https://github.com/apache/iotdb/blob/rel/1.1/client-py/SessionExample.py)
34+
You can get an example of using the package to read and write data at here: [Session Example](https://github.com/apache/iotdb/blob/rel/1.1/client-py/SessionExample.py)
3535

3636
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/rel/1.1/client-py/SessionAlignedTimeseriesExample.py)
3737

src/UserGuide/V1.2.x/API/Programming-Python-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ You have to install thrift (>=0.13) before using the package.
3131

3232
First, download the package: `pip3 install apache-iotdb`
3333

34-
You can get an example of using the package to read and write data at here: [Example](https://github.com/apache/iotdb/blob/master/client-py/SessionExample.py)
34+
You can get an example of using the package to read and write data at here: [Session Example](https://github.com/apache/iotdb/blob/rel/1.2/iotdb-client/client-py/SessionExample.py)
3535

36-
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/master/client-py/SessionAlignedTimeseriesExample.py)
36+
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/rel/1.2/iotdb-client/client-py/SessionAlignedTimeseriesExample.py)
3737

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

src/UserGuide/V1.3.0-2/API/Programming-Python-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ You have to install thrift (>=0.13) before using the package.
3131

3232
First, download the package: `pip3 install apache-iotdb`
3333

34-
You can get an example of using the package to read and write data at here: [Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/SessionExample.py)
34+
You can get an example of using the package to read and write data at here: [Session Example](https://github.com/apache/iotdb/blob/rc/1.3.0/iotdb-client/client-py/SessionExample.py)
3535

36-
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/SessionAlignedTimeseriesExample.py)
36+
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/rc/1.3.0/iotdb-client/client-py/SessionAlignedTimeseriesExample.py)
3737

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

src/UserGuide/V2.0.1/Tree/API/Programming-Python-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ You have to install thrift (>=0.13) before using the package.
3131

3232
First, download the package: `pip3 install apache-iotdb`
3333

34-
You can get an example of using the package to read and write data at here: [Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/SessionExample.py)
34+
You can get an example of using the package to read and write data at here:[Session Example](https://github.com/apache/iotdb/blob/rc/2.0.1/iotdb-client/client-py/session_example.py)
3535

36-
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/SessionAlignedTimeseriesExample.py)
36+
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/rc/2.0.1/iotdb-client/client-py/session_aligned_timeseries_example.py)
3737

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

src/UserGuide/V2.0.1/Tree/SQL-Manual/UDF-Libraries_apache.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,20 @@ Based on the ability of user-defined functions, IoTDB provides a series of funct
3131

3232
1. Please obtain the compressed file of the UDF library JAR package that is compatible with the IoTDB version.
3333

34-
| UDF libraries version | Supported IoTDB versions | Download link |
34+
| UDF installation package | Supported IoTDB versions | Download link |
3535
| --------------- | ----------------- | ------------------------------------------------------------ |
36-
| UDF-1.3.3.zip | V1.3.3 and above | Please contact Timecho for assistance |
37-
| UDF-1.3.2.zip | V1.0.0~V1.3.2 | Please contact Timecho for assistance|
36+
| apache-UDF-1.3.3.zip | V1.3.3 and above |Please contact Timecho for assistance |
37+
| apache-UDF-1.3.2.zip | V1.0.0~V1.3.2 | Please contact Timecho for assistance|
3838

3939
2. Place the library-udf.jar file in the compressed file obtained in the directory `/ext/udf ` of all nodes in the IoTDB cluster
40-
3. In the SQL command line terminal (CLI) or visualization console (Workbench) SQL operation interface of IoTDB, execute the corresponding function registration statement as follows.
40+
3. In the SQL operation interface of IoTDB's SQL command line terminal (CLI), execute the corresponding function registration statement as follows.
4141
4. Batch registration: Two registration methods: registration script or SQL full statement
4242
- Register Script
4343
- Copy the registration script (register-UDF.sh or register-UDF.bat) from the compressed package to the `tools` directory of IoTDB as needed, and modify the parameters in the script (default is host=127.0.0.1, rpcPort=6667, user=root, pass=root);
4444
- Start IoTDB service, run registration script to batch register UDF
4545

4646
- All SQL statements
47-
- Open the SQl file in the compressed package, copy all SQL statements, and execute all SQl statements in the SQL command line terminal (CLI) of IoTDB or the SQL operation interface of the visualization console (Workbench) to batch register UDF
47+
- Open the SQl file in the compressed package, copy all SQL statements, and in the SQL operation interface of IoTDB's SQL command line terminal (CLI), execute all SQl statements to batch register UDFs
4848

4949
## Data Quality
5050

src/UserGuide/V2.0.1/Tree/SQL-Manual/UDF-Libraries_timecho.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ Based on the ability of user-defined functions, IoTDB provides a series of funct
3131

3232
1. Please obtain the compressed file of the UDF library JAR package that is compatible with the IoTDB version.
3333

34-
| UDF libraries version | Supported IoTDB versions | Download link |
34+
| UDF installation package | Supported IoTDB versions | Download link |
3535
| --------------- | ----------------- | ------------------------------------------------------------ |
36-
| UDF-1.3.3.zip | V1.3.3 and above | Please contact Timecho for assistance |
37-
| UDF-1.3.2.zip | V1.0.0~V1.3.2 | Please contact Timecho for assistance |
36+
| TimechoDB-UDF-1.3.3.zip | V1.3.3 and above | Please contact Timecho for assistance |
37+
| TimechoDB-UDF-1.3.2.zip | V1.0.0~V1.3.2 | Please contact Timecho for assistance|
3838

3939
2. Place the `library-udf.jar` file in the compressed file obtained in the directory `/ext/udf ` of all nodes in the IoTDB cluster
4040
3. In the SQL command line terminal (CLI) or visualization console (Workbench) SQL operation interface of IoTDB, execute the corresponding function registration statement as follows.

src/UserGuide/latest/API/Programming-Python-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ You have to install thrift (>=0.13) before using the package.
3131

3232
First, download the package: `pip3 install apache-iotdb`
3333

34-
You can get an example of using the package to read and write data at here: [Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/SessionExample.py)
34+
You can get an example of using the package to read and write data at here: [Session Example](https://github.com/apache/iotdb/blob/rc/1.3.3/iotdb-client/client-py/SessionExample.py)
3535

36-
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/master/iotdb-client/client-py/SessionAlignedTimeseriesExample.py)
36+
An example of aligned timeseries: [Aligned Timeseries Session Example](https://github.com/apache/iotdb/blob/rc/1.3.3/iotdb-client/client-py/SessionAlignedTimeseriesExample.py)
3737

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

0 commit comments

Comments
 (0)