In [1]:
from ovation.session import connect
from ovation.core import delete_entity
We manually collect a list of files to delete
In [3]:
entities = []
In [ ]:
email = input('Ovation email: ')
In [ ]:
session = connect(email)
Looping through the list of entities
, we call session.delete
for each one
In [ ]:
for id in entities:
d = delete_entity(session, id)