TDengine/docs-examples/python/connect_exmaple.py
Bo Ding 800b878f99
test: add test scripts for document sample code to CI task (#11482)
* docs: add R example source code

* test: check if RJDBC was installed

* test: add R test scripts

* test: chmod of test_R.sh

* test: fix test_go.sh; add R sample to document

* test: add test scripts to cases.task

* test: fix errors caused by  tset_python.sh and test_java.sh

* test: fix  test_python.sh

* test: modify java test case and improve opentsdb-json.mdx

* test: fix test_R.sh
2022-04-14 19:36:21 +08:00

19 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()