kumoai.connector.delete_uploaded_table#
- kumoai.connector.delete_uploaded_table(name, file_type)[source]#
Synchronously deletes a previously uploaded table from the Kumo data plane.
import kumoai from kumoai.connector import delete_uploaded_table # Assume we have uploaded a `.parquet` table named `users`, # and we want to delete this table from Kumo: delete_uploaded_table(name="users", file_type="parquet") # Assume we have uploaded a `.csv` table named `orders`, # and we want to delete this table from Kumo: delete_uploaded_table(name="orders", file_type="csv")
- Parameters:
name (
str
) – The name of the table to be deleted. This table must have previously been uploaded with a call toupload_table()
.file_type (
str
) – The file type of the table to be deleted; this can either be"parquet"
or"csv"
- Return type: