importpandasfromsqlalchemyimportcreate_engineengine=create_engine("taos://root:taosdata@localhost:6030/power")df=pandas.read_sql("SELECT * FROM meters",engine)# print indexprint(df.index)# print data type of element in ts columnprint(type(df.ts[0]))print(df.head(3))# output:# RangeIndex(start=0, stop=8, step=1)# <class 'pandas._libs.tslibs.timestamps.Timestamp'>