Nuke Fabric Workspace


A handy function to delete all Fabric items in a workspace. Run this in a Python notebook in the workspace you want to delete items from. Everything, except that notebook, will be deleted. You need to have contributor+ role in the workspace. Delete the last remaining notebook manually.
Note : If you are going to use this to delete items and sync with a git repo, I recommend waiting about 15-30min before you sync with the empty workspace. Soft delete can keep the items in cache and cause problems with the sync if items names are the same before and after deleting the items.
from tqdm import tqdm
import sempy.fabric as fabric
import time
def nuke_workspace():
"""
Deletes all fabric items from a workspace. Think before you delete.
"""
items = fabric.list_items()
nb_id = fabric.get_artifact_id()
items_to_delete = fabric.list_items().query('Id != @nb_id')['Id']
workspaceId = fabric.get_notebook_workspace_id()
workspaceName = fabric.resolve_workspace_name(workspaceId)
countdown = 10 # Countdown
print(f"🔴 WARNING: All items from workspace {workspaceName} will be deleted in {countdown} seconds.")
for remaining in range(countdown, 0, -1):
print(f"{remaining} seconds remaining... 🚨abort if you are not sure")
time.sleep(1)
print(f"{len(items_to_delete)} items will be deleted")
for item in tqdm(items_to_delete, desc="Deleting items"):
try:
fabric.delete_item(item)
except:
continue
remaining_items = fabric.list_items()['Display Name'].to_list()
print(f"Remaining items: {remaining_items} delete manually")
nuke_workspace()
Subscribe to my newsletter
Read articles from Sandeep Pawar directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Sandeep Pawar
Sandeep Pawar
Microsoft MVP with expertise in data analytics, data science and generative AI using Microsoft data platform.