Microsoft Fabric API Python SDK
Project description
Guide to Using the Python SDK for Microsoft Fabric REST API
Description
The Microsoft Fabric API provides developers with programmatic access to manage and interact with Microsoft Fabric resources. It enables developers to automate a wide array of tasks, including data integration, data warehousing, big data analytics, deployment process automation, Fabric items provisioning, and more.
This document provides an overview of the API endpoints, authentication methods, and usage examples for the Python SDK for Fabric REST API. The Python SDK is a client library that simplifies communication with the Microsoft Fabric API service and handles serialization and error handling for you.
Installation via pip
To install the client library via pip:
pip install microsoft-fabric-api
Getting Started
1. Register your application
Register your application to use Microsoft Fabric API.
2. Authenticate for the Microsoft Fabric service
The Microsoft Fabric Python Client Library supports the use of TokenCredential classes in the azure-identity library.
You can read more about available Credential classes at Azure Identity client library for Python.
The recommended library for authenticating against Microsoft Identity (Azure AD) is MSAL.
For an example of how to acquire a Microsoft Entra token for Microsoft Fabric Service, see Microsoft Fabric API - get token.
3. Create a Microsoft Fabric client object with an authentication provider
An instance of the FabricClient class handles building requests, sending them to the Microsoft Fabric API, and processing the responses. To create a new instance of this class, you need to provide a instance of TokenCredential or the string representation of its underlying Microsoft Entra access token.
4. Make requests to Microsoft Fabric
Once you have completed authentication and have a FabricClient, you can begin to make calls to the service.
For example, to get a list of workspaces:
from azure.identity import DefaultAzureCredential
from microsoft_fabric_api import FabricClient
# Create credential and client
credential = DefaultAzureCredential(exclude_interactive_browser_credential=False)
fabric_client = FabricClient(credential)
# Get the list of workspaces using the client
workspaces = [workspace for workspace in fabric_client.core.workspaces.list_workspaces()]
print(f"Number of workspaces: {len(workspaces)}")
for workspace in workspaces:
print(f"Workspace: {workspace.display_name}, Capacity ID: {workspace.capacity_id}")
Documentation and resources
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file microsoft_fabric_api-0.1.0b5-py3-none-any.whl.
File metadata
- Download URL: microsoft_fabric_api-0.1.0b5-py3-none-any.whl
- Upload date:
- Size: 2.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbda6bf0f13249fa69f54c88927e7e316db352532d8bb4d2c78533a4a1584e47
|
|
| MD5 |
054f17bebbc0c26ab0fe01b2d7e532b3
|
|
| BLAKE2b-256 |
80a93bb304ed66d921fccf4024a6c4dc4fcbbd776a6d3e6790f446acc455d2db
|