Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions docs/en/14-reference/05-connector/30-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ Python Connector historical versions (it is recommended to use the latest versio

|Python Connector Version | Major Changes | TDengine Version|
| --------- | ----------------------------------------------------------------------------------------------------- | ----------------- |
|2.8.9 | Data subscription supports token authentication | - |
|2.8.8 | Support TOTP authentication and token authentication | - |
|2.8.6 | Support for pandas' read_Sql_table, to_Sql, and read_Sql interface calls | - |
|2.8.5 | Support the SQLAlchemy feature of taos-ws-py | - |
Expand All @@ -89,6 +90,7 @@ WebSocket Connector Historical Versions:

|WebSocket Connector Version | Major Changes | TDengine Version|
| ----------------------- | -------------------------------------------------------------------------------------------------- | ----------------- |
|0.6.6 | Data subscription supports token authentication | - |
|0.6.5 | Support TOTP authentication and token authentication | - |
|0.6.4 | Support reporting connector version information | - |
|0.6.3 | Support configuring the response timeout for WebSocket connections (excluding data subscription) | - |
Expand Down Expand Up @@ -381,7 +383,8 @@ The interface for binding parameters of the standard Stmt.
- client.id: Client ID.
- td.connect.user: Database username.
- td.connect.pass: Database password.
- td.connect.token: Database connection token.
- td.connect.token: Cloud service authentication token.
- td.connect.bearer_token: Database authentication token, with higher authentication priority than username and password.
- auto.offset.reset: Determines the consumption position as either the latest data (latest) or including old data (earliest).
- enable.auto.commit: Whether to allow automatic commit.
- auto.commit.interval.ms: Automatic commit interval.
Expand Down Expand Up @@ -560,7 +563,7 @@ TaosResult object can be iterated over to retrieve queried data.
- client.id: Client ID.
- td.connect.user: Database username.
- td.connect.pass: Database password.
- td.connect.token: Database connection token.
- td.connect.token: Database authentication token, with higher authentication priority than username and password.
- auto.offset.reset: Determines the consumption position as either the latest data (latest) or including old data (earliest).
- enable.auto.commit: Whether to allow automatic submission.
- auto.commit.interval.ms: Automatic submission interval.
Expand Down
9 changes: 6 additions & 3 deletions docs/zh/14-reference/05-connector/30-python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Python Connector 历史版本(建议使用最新版本的 `taospy`):

| Python Connector 版本 | 主要变化 | TDengine TSDB 版本 |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------- |
| 2.8.9 | 数据订阅支持令牌身份验证 | - |
| 2.8.8 | 支持 TOTP 身份验证和令牌身份验证 | - |
| 2.8.6 | 支持 pandas 的 read_sql_table,to_sql 和 read_sql 接口 | - |
| 2.8.5 | 支持 taos-ws-py 的 sqlalchemy 功能 | - |
Expand All @@ -85,7 +86,8 @@ WebSocket Connector 历史版本:

| WebSocket Connector 版本 | 主要变化 | TDengine TSDB 版本 |
| ----------------------- | ------------------------------------------------------------------------------------ | ----------------- |
| 0.6.5 | 支持 TOTP 身份验证和令牌身份验证 | - |
| 0.6.6 | 数据订阅支持令牌身份验证 | - |
| 0.6.5 | 支持 TOTP 身份验证和令牌身份验证 | - |
| 0.6.4 | 支持上报连接器版本信息 | - |
| 0.6.3 | 支持配置 WebSocket 连接的响应超时时间(不含数据订阅) | - |
| 0.6.2 | 修复内存泄漏 | - |
Expand Down Expand Up @@ -381,7 +383,8 @@ TaosResult 对象可以通过循环遍历获取查询到的数据。
- client.id:客户端 id。
- td.connect.user:数据库用户名。
- td.connect.pass:数据库密码。
- td.connect.token:数据库的连接 token。
- td.connect.token:云服务认证 token。
- td.connect.bearer_token:数据库认证 token,认证优先级高于用户名密码。
- auto.offset.reset:来确定消费位置为最新数据(latest)还是包含旧数据(earliest)。
- enable.auto.commit:是否允许自动提交。
- auto.commit.interval.ms:自动提交间隔
Expand Down Expand Up @@ -560,7 +563,7 @@ TaosResult 对象可以通过循环遍历获取查询到的数据。
- client.id:客户端 id。
- td.connect.user:数据库用户名。
- td.connect.pass:数据库密码。
- td.connect.token:数据库的连接 token。
- td.connect.token:数据库认证 token,认证优先级高于用户名密码
- auto.offset.reset:来确定消费位置为最新数据(latest)还是包含旧数据(earliest)。
- enable.auto.commit:是否允许自动提交。
- auto.commit.interval.ms:自动提交间隔
Expand Down
Loading