From 8c9dc519fc6e92e27d27bdd9e18731b07edc0e3f Mon Sep 17 00:00:00 2001 From: dingbo Date: Tue, 7 Jun 2022 14:11:41 +0800 Subject: [PATCH] docs: remove title id --- docs-en/05-develop/01-connect/01-python.md | 6 +++--- docs-en/05-develop/01-connect/02-java.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs-en/05-develop/01-connect/01-python.md b/docs-en/05-develop/01-connect/01-python.md index 434456ddb0..d6e59c9e3b 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 25d5d2226b..b8c3bdeab7 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; -- GitLab