import os
from woodwide import WoodWide
client = WoodWide(
api_key=os.environ.get("WOOD_WIDE_AI_API_KEY"), # This is the default and can be omitted
)
dataset = client.api.datasets.delete(
dataset_id="dataset_id",
)
print(dataset)
Permanently deletes a specified dataset. Removes the record from the user’s list, deletes the Firestore document, and removes the actual data file from Google Cloud Storage.
DELETE
/
api
/
datasets
/
{dataset_id}
Python
Copy
Ask AI
import os
from woodwide import WoodWide
client = WoodWide(
api_key=os.environ.get("WOOD_WIDE_AI_API_KEY"), # This is the default and can be omitted
)
dataset = client.api.datasets.delete(
dataset_id="dataset_id",
)
print(dataset)