diff --git a/docs-en/05-develop/01-connect/01-python.md b/docs-en/05-develop/01-connect/01-python.md index 434456ddb0fbfd107e47982e1826f07ea7ee118a..d6e59c9e3b61daf31dce209d827fffec8dfc0a62 100644 --- a/docs-en/05-develop/01-connect/01-python.md +++ b/docs-en/05-develop/01-connect/01-python.md @@ -3,7 +3,7 @@ sidebar_label: Python title: Connect with Python Connector --- -## Install Connector {#install} +## Install Connector First, you need to install the `taospy` module version >= `2.3.3`. Run the command below in your terminal. @@ -13,7 +13,7 @@ pip3 install taospy>=2.3.3 You'll need to have Python3 installed. -## Config {#config} +## Config Run this command in your terminal to save your URL and token as variables: @@ -29,7 +29,7 @@ You should replace above placeholders as real values. To obtain these values, pl ::: -## Connect {#connect} +## Connect ```python import taosrest diff --git a/docs-en/05-develop/01-connect/02-java.md b/docs-en/05-develop/01-connect/02-java.md index 25d5d2226bfae901718ab216a5309b895a70c285..b8c3bdeab70cdced431ac55084ed245e5b9a16a0 100644 --- a/docs-en/05-develop/01-connect/02-java.md +++ b/docs-en/05-develop/01-connect/02-java.md @@ -3,7 +3,7 @@ sidebar_label: Java title: Connect with Java Connector --- -## Add Dependency {#install} +## Add Dependency Build with Maven @@ -23,7 +23,7 @@ dependencies { } ``` -## Config {#config} +## Config Run this command in your terminal to save your url and token as variables: @@ -40,7 +40,7 @@ You should replace above placeholders as real values. To obtain these values, pl ::: -## Connect {#connect} +## Connect ```java import com.taosdata.jdbc.rs.RestfulConnection;