left1414 Member

Comments

  • I was able to figure this out. In case anyone needs it: from pydomo import Domo from pprint import pprint domo = Domo(client_id, client_secret, api_host=api_host) dataset_id = xxxx streams = domo.streamsstream_list = streams.list(2000,0) dataset_streams = [stream for stream in stream_list if stream['dataSet']['id'] ==…