Skip to main content

Hello, how can I delete all the time series of a dataset with python sdk?

You can first list all the time series in a data set, then convert them to a list of ids that you then delete:

tss = client.time_series.list(data_set_ids=123456, limit=None)
client.time_series.delete(id=tss.as_ids())

 


You can first list all the time series in a data set, then convert them to a list ids that you then delete:

tss = client.time_series.list(data_set_ids=123456, limit=None)
client.time_series.delete(id=tss.as_ids())

thank you very much, it worked perfectly for me

 

 


Reply