homework-jianmu/docs/examples/python/connect_example.py

22 lines
404 B
Python

import taos
def create_connection():
# all parameters are optional.
conn = None
try:
conn = taos.connect(
user="root",
password="taosdata",
host="localhost",
port=6030,
)
except Exception as err:
print(err)
finally:
if conn:
conn.close()
if __name__ == "__main__":
create_connection()