Hello, how can I delete all the time series of a dataset with python sdk?
Delete time series SDK Python
Page 1 / 1
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.