import os
from dataframer import Dataframer
client = Dataframer(
api_key=os.environ.get("DATAFRAMER_API_KEY"), # This is the default and can be omitted
)
client.dataframer.runs.delete(
"run_id",
)
Data Generation Runs
Delete run
Delete a run and its generated files
DELETE
/
api
/
dataframer
/
runs
/
{run_id}
Python
Copy
import os
from dataframer import Dataframer
client = Dataframer(
api_key=os.environ.get("DATAFRAMER_API_KEY"), # This is the default and can be omitted
)
client.dataframer.runs.delete(
"run_id",
)