I have the following code:
stream = c.ts_stream_keys('EUClaptimes')
for key_list in stream:
print key_list
# print stream
stream.close()
That gives the following error messages:
Attribute error: ‘str’ object has no attribute ‘name'
If I amend it to:
stream = c.ts_stream_keys('EUClaptimes')
# for key_list in stream:
# print key_list
print stream
stream.close()
I do get a stream object
The table name etc exists as I am using it elsewhere on my jupyter notebook.