20 lines
558 B
Python
20 lines
558 B
Python
import taosrest
|
|
|
|
client = None
|
|
url="http://localhost:6041"
|
|
reqId = 3
|
|
try:
|
|
client = taosrest.RestClient(url=url,
|
|
user="root",
|
|
password="taosdata",
|
|
timeout=30)
|
|
|
|
result = client.sql(f"SELECT ts, current, location FROM power.meters limit 100", reqId)
|
|
if result["data"]:
|
|
for row in result["data"]:
|
|
print(f"ts: {row[0]}, current: {row[1]}, location: {row[2]}")
|
|
|
|
except Exception as err:
|
|
print(f"Failed to execute sql with reqId:{reqId}, ErrMessage:{err}")
|
|
raise err
|