mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
20 lines
485 B
Python
20 lines
485 B
Python
|
|
import taos
|
||
|
|
|
||
|
|
|
||
|
|
def test_connection():
|
||
|
|
# all parameters are optional.
|
||
|
|
# if database is specified,
|
||
|
|
# then it must exist.
|
||
|
|
conn = taos.connect(host="localhost",
|
||
|
|
port=6030,
|
||
|
|
user="root",
|
||
|
|
password="taosdata",
|
||
|
|
database="log")
|
||
|
|
print('client info:', conn.client_info)
|
||
|
|
print('server info:', conn.server_info)
|
||
|
|
conn.close()
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
test_connection()
|