Skip to content

Commit

Permalink
Merge pull request #22368 from taosdata/docs/sunpeng/fix-for-python-w…
Browse files Browse the repository at this point in the history
…s-docs-for-main

docs: fix connection param in taosws in python connector
  • Loading branch information
zitsen committed Aug 8, 2023
2 parents 889a4f3 + 90008bf commit 445277f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/en/14-reference/03-connector/07-python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ conn.execute("CREATE STABLE weather(ts TIMESTAMP, temperature FLOAT) TAGS (locat
<TabItem value="websocket" label="WebSocket connection">

```python
conn = taosws.connect(url="ws://localhost:6041")
conn = taosws.connect("taosws://localhost:6041")
# Execute a sql, ignore the result set, just get affected rows. It's useful for DDL and DML statement.
conn.execute("DROP DATABASE IF EXISTS test")
conn.execute("CREATE DATABASE test")
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/08-connector/30-python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ conn.execute("CREATE STABLE weather(ts TIMESTAMP, temperature FLOAT) TAGS (locat
<TabItem value="websocket" label="WebSocket 连接">

```python
conn = taosws.connect(url="ws://localhost:6041")
conn = taosws.connect("taosws://localhost:6041")
# Execute a sql, ignore the result set, just get affected rows. It's useful for DDL and DML statement.
conn.execute("DROP DATABASE IF EXISTS test")
conn.execute("CREATE DATABASE test")
Expand Down

0 comments on commit 445277f

Please sign in to comment.