提交 52428338 编写于 作者: G gccgdb1234

doc: add description field

上级 6df239fd
--- ---
sidebar_label: Python sidebar_label: Python
title: Connect with Python Connector title: Connect with Python Connector
description: Python Connector for TDengine. description: Connect to TDengine cloud service using Python connector
--- ---
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
......
--- ---
sidebar_label: Java sidebar_label: Java
title: Connect with Java Connector title: Connect with Java Connector
description: Java Connector for TDengine. description: Connect to TDengine cloud service using Java connector
--- ---
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
......
--- ---
sidebar_label: Go sidebar_label: Go
title: Connect with Go Connector title: Connect with Go Connector
description: Go Connector for TDengine. description: Connect to TDengine cloud service using Go connector
--- ---
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
......
--- ---
sidebar_label: Rust sidebar_label: Rust
title: Connect with Rust Connector title: Connect with Rust Connector
description: Rust Connector for TDengine description: Connect to TDengine cloud service using Rust connector
--- ---
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem'; import TabItem from '@theme/TabItem';
......
--- ---
sidebar_label: Node.js sidebar_label: Node.js
title: Connect with Node.js Connector title: Connect with Node.js Connector
description: Node.JS Connector for TDengine description: Connect to TDengine cloud service using Node.JS connector
--- ---
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem'; import TabItem from '@theme/TabItem';
......
--- ---
sidebar_label: REST API sidebar_label: REST API
title: REST API title: REST API
description: Communicate with TDengine Cloud Service through RESTful API description: Connect to TDengine Cloud Service through RESTful API
--- ---
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
......
--- ---
sidebar_label: Python sidebar_label: Python
title: TDengine Python Connector title: TDengine Python Connector
description: Detailed guide for Python Connector
--- ---
`taospy` is the official Python connector for TDengine. `taospy` wraps the [REST interface](/reference/rest-api) of TDengine. Additionally `taospy` provides a set of programming interfaces that conforms to the [Python Data Access Specification (PEP 249)](https://peps.python.org/pep-0249/). It is easy to integrate `taospy` with many third-party tools, such as [SQLAlchemy](https://www.sqlalchemy.org/) and [pandas](https://pandas.pydata.org/). `taospy` is the official Python connector for TDengine. `taospy` wraps the [REST interface](/reference/rest-api) of TDengine. Additionally `taospy` provides a set of programming interfaces that conforms to the [Python Data Access Specification (PEP 249)](https://peps.python.org/pep-0249/). It is easy to integrate `taospy` with many third-party tools, such as [SQLAlchemy](https://www.sqlalchemy.org/) and [pandas](https://pandas.pydata.org/).
......
...@@ -3,6 +3,7 @@ toc_max_heading_level: 4 ...@@ -3,6 +3,7 @@ toc_max_heading_level: 4
sidebar_position: 2 sidebar_position: 2
sidebar_label: Java sidebar_label: Java
title: TDengine Java Connector title: TDengine Java Connector
description: Detailed guide for Java Connector
--- ---
import Tabs from '@theme/Tabs'; import Tabs from '@theme/Tabs';
......
--- ---
sidebar_label: Go sidebar_label: Go
title: TDengine Go Connector title: TDengine Go Connector
description: Detailed guide for Python Connector
--- ---
`driver-go` is the official Go language connector for TDengine. It implements the [database/sql](https://golang.org/pkg/database/sql/) package, the generic Go language interface to SQL databases. Go developers can use it to develop applications that access TDengine cluster data. `driver-go` is the official Go language connector for TDengine. It implements the [database/sql](https://golang.org/pkg/database/sql/) package, the generic Go language interface to SQL databases. Go developers can use it to develop applications that access TDengine cluster data.
......
...@@ -3,6 +3,7 @@ toc_max_heading_level: 4 ...@@ -3,6 +3,7 @@ toc_max_heading_level: 4
sidebar_position: 5 sidebar_position: 5
sidebar_label: Rust sidebar_label: Rust
title: TDengine Rust Connector title: TDengine Rust Connector
description: Detailed guide for Rust Connector
--- ---
......
--- ---
sidebar_label: Node.js sidebar_label: Node.JS
title: TDengine Node.js Connector title: TDengine Node.JS Connector
description: Detailed guide for Node.JS Connector
--- ---
`td2.0-rest-connector` are the official Node.js language connectors for TDengine. Node.js developers can develop applications to access TDengine instance data. `td2.0-rest-connector` is a **REST connector** that connects to TDengine instances via the REST API. `td2.0-rest-connector` are the official Node.js language connectors for TDengine. Node.js developers can develop applications to access TDengine instance data. `td2.0-rest-connector` is a **REST connector** that connects to TDengine instances via the REST API.
......
--- ---
sidebar_label: REST API sidebar_label: REST API
title: REST API title: REST API
description: Detailed guide for REST API
--- ---
To support the development of various types of applications and platforms, TDengine provides an API that conforms to REST principles; namely REST API. To minimize the learning cost, unlike REST APIs for other database engines, TDengine allows insertion of SQL commands in the BODY of an HTTP POST request, to operate the database. To support the development of various types of applications and platforms, TDengine provides an API that conforms to REST principles; namely REST API. To minimize the learning cost, unlike REST APIs for other database engines, TDengine allows insertion of SQL commands in the BODY of an HTTP POST request, to operate the database.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册