Skip to main content

A wrapper around fabric-cicd for deploying Fabric solutions from GitHub repositories

Project description

🚀 fabric-launcher

A Python library to automate deployment of Microsoft Fabric solutions from GitHub repositories into Fabric workspaces. Fabric-launcher is designed to run within Fabric notebooks. It is ideal for simple, automated deployment for solution accelerators, demos, tutorials, and samples.

fabric-launcher is a wrapper around fabric-cicd and supports all Fabric item types that fabric-cicd supports.

Overview

fabric-launcher provides a high-level Python interface for orchestrating end-to-end deployment of Microsoft Fabric workspace solutions. It's designed for use within Fabric Python notebooks and simplifies:

  • 📥 Downloading source code from GitHub repositories
  • 🚀 Deploying artifacts to Fabric workspaces (all types supported by fabric-cicd)
  • 📁 Uploading files to Lakehouse Files area
  • ▶️ Triggering notebook execution for post-deployment tasks

Note: For parameterization, value replacement, and the latest item type compatibility, see the fabric-cicd documentation.

Installation

%pip install fabric-launcher
notebookutils.session.restartPython()

Quick Start

import notebookutils
from fabric_launcher import FabricLauncher

# Initialize and deploy
launcher = FabricLauncher(notebookutils)
launcher.download_and_deploy(
    repo_owner="myorg",
    repo_name="my-fabric-solution",
    workspace_folder="workspace"
)

With Configuration File (Recommended)

# Config file in your repo: config/deployment.yaml
launcher = FabricLauncher(
    notebookutils,
    config_repo_owner="myorg",
    config_repo_name="my-solution",
    config_file_path="config/deployment.yaml",
    environment="PROD"
)
launcher.download_and_deploy()

Staged Deployment

launcher.download_and_deploy(
    repo_owner="myorg",
    repo_name="my-solution",
    item_type_stages=[
        ["Lakehouse", "KQLDatabase"],     # Stage 1
        ["Notebook", "Eventstream"],       # Stage 2
        ["SemanticModel", "Report"]        # Stage 3
    ]
)

Examples

See the examples/ directory for complete working code:

Documentation

Key Features

Simple API - High-level methods abstract complexity
Fabric-native - Designed for Fabric notebooks with notebookutils
Flexible deployment - Staged deployment or custom item type selection
GitHub integration - Public and private repository support
Configuration management - YAML/JSON config files with environment overrides
Post-deployment validation - Automatic verification of deployed items
Comprehensive reporting - Deployment tracking and audit trails

Supported Item Types

Supports all fabric-cicd item types:

Data: Lakehouse, KQLDatabase, Eventhouse
Compute: Notebook, Eventstream
Analytics: SemanticModel, Report, KQLDashboard
Other: Reflex, DataAgent, and more

See fabric-cicd docs for the complete list.

Note: For item types not yet supported by fabric-cicd, use post-deployment notebooks with custom code via launcher.run_notebook().

Safety Features

By default, fabric-launcher validates that the target workspace is empty (except for the current notebook) before deployment to prevent accidentally overwriting existing work.

# Default: validates workspace is empty
launcher = FabricLauncher(notebookutils)
launcher.download_and_deploy(...)  # Blocks if workspace has existing items

# To deploy to non-empty workspace (use with caution)
launcher = FabricLauncher(notebookutils, allow_non_empty_workspace=True)

Main Methods

Method Purpose
download_and_deploy() Download from GitHub and deploy in one operation
download_repository() Download repository to local directory
deploy_artifacts() Deploy Fabric items from local directory
upload_files_to_lakehouse() Upload files to Lakehouse Files area
copy_data_folders_to_lakehouse() Copy multiple folders to Lakehouse
run_notebook() Execute a Fabric notebook asynchronously
validate_deployment() Validate deployed items are accessible

See QUICKSTART.md for detailed syntax and parameters.

Post-Deployment Utilities

The fabric_launcher.post_deployment_utils module provides utility functions for common post-deployment tasks:

Item Management:

  • get_folder_id_by_name() - Find folders by display name
  • get_item_definition_from_repo() - Load item definitions from repository
  • scan_logical_ids() - Map logical IDs to actual workspace IDs
  • replace_logical_ids() - Replace logical IDs in definitions
  • create_or_update_fabric_item() - Generic item creation with logical ID replacement
  • move_item_to_folder() - Organize items into folders

Eventhouse & KQL Database:

  • get_kusto_query_uri() - Get Kusto query service URI for an Eventhouse
  • exec_kql_command() - Execute KQL management commands
  • create_shortcut() - Create OneLake shortcuts in Fabric items
  • create_accelerated_shortcut_in_kql_db() - Create shortcuts with accelerated external tables

SQL Endpoints:

  • get_sql_endpoint() - Get SQL endpoint connection strings for Lakehouse/Warehouse
  • exec_sql_query() - Execute SQL queries against Fabric SQL endpoints

These helpers are useful for:

  • Deploying custom item types not yet supported by fabric-cicd
  • Handling cross-item references and logical ID remapping
  • Post-deployment organization and configuration
  • Eventhouse and KQL Database setup with shortcuts
  • SQL-based data validation and queries

See examples/post_deployment_utils_examples.py for comprehensive usage examples including Eventhouse, KQL Database, and SQL operations.

Development and Testing

# Clone the repository
git clone https://github.com/microsoft/fabric-launcher.git
cd fabric-launcher

# Install in development mode
pip install -e .
pip install -r requirements-dev.txt

# Run tests
pytest tests/ -v

# Check code formatting
ruff format fabric_launcher/ tests/
ruff check fabric_launcher/ tests/

See tests/README.md for detailed testing documentation.

Requirements

  • Python 3.10, 3.11, or 3.12 (compatible with fabric-cicd dependency)
  • Access to Microsoft Fabric workspace
  • Running within a Fabric Python notebook (for notebookutils access)

Note: semantic-link-sempy is a runtime dependency that is pre-installed in Fabric notebook environments. For local development or testing outside of Fabric, the package uses mocked versions of these dependencies.

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

License

MIT License - see LICENSE for details.

Security

See SECURITY.md for security policy and reporting vulnerabilities.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fabric_launcher-0.3.0.tar.gz (71.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fabric_launcher-0.3.0-py3-none-any.whl (44.7 kB view details)

Uploaded Python 3

File details

Details for the file fabric_launcher-0.3.0.tar.gz.

File metadata

  • Download URL: fabric_launcher-0.3.0.tar.gz
  • Upload date:
  • Size: 71.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fabric_launcher-0.3.0.tar.gz
Algorithm Hash digest
SHA256 947c96e254ab85ab190d2d6f3c9bcb69beb22094b82436bef8b0170e3f0b4307
MD5 9f3941c015f18d96e3d0232f3b76974a
BLAKE2b-256 0006616fde72eec2442f2a7022570e09a0dcd7d2fad6d056b20056b5f9000d15

See more details on using hashes here.

Provenance

The following attestation bundles were made for fabric_launcher-0.3.0.tar.gz:

Publisher: python-publish.yml on microsoft/fabric-launcher

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fabric_launcher-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for fabric_launcher-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5dcd39b983252554e0ba07e0902875a46514f23155d3899b8e2c0a77b37c92b1
MD5 3a20995f25f7067638593ccd7ef2cb82
BLAKE2b-256 fdd19c1fc2c7a390ff58c67ecdb407b702bd60cd6fe1e58a0028613a5fae4920

See more details on using hashes here.

Provenance

The following attestation bundles were made for fabric_launcher-0.3.0-py3-none-any.whl:

Publisher: python-publish.yml on microsoft/fabric-launcher

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page