One Line Code To Get A List Of Items From All The Fabric/Premium Workspaces
Using Semantic Link v0.5
Principal Program Manager, Microsoft Fabric CAT helping users and organizations build scalable, insightful, secure solutions. Blogs, opinions are my own and do not represent my employer.
What the title says, thanks to the latest version (v0.5) of Semantic Link
!pip install --upgrade semantic-link --q #upgrade to semantic-link v0.5
import sempy.fabric as fabric
import pandas as pd
df = pd.concat([fabric.list_items(workspace=ws) for ws in fabric.list_workspaces().query('`Is On Dedicated Capacity` == True').Id], ignore_index=True)
df

ThreadPoolExecutor