from proton_driver import connect
import pandas as pd
with connect(f'proton://{timeplus_user}:{timeplus_password}@{timeplus_host}') as conn:
with conn.cursor() as cur:
cur.execute('SELECT * from table(network_traffic)')
print(cur.df()) # Pandas DataFrame
when running such code, I got
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Cell In[16], line 6
4 with conn.cursor() as cur:
5 cur.execute('SELECT * from table(network_traffic)')
----> 6 print(cur.df()) # Pandas DataFrame
AttributeError: 'Cursor' object has no attribute 'df'
here is my code
when running such code, I got
the proton driver version is
other method seems also not exists
fetchnumpy()
pl()
arrow()