Skip to main content

Arc Jumpstart logo

PyPI version Python versions


Fabric Jumpstart accelerates Microsoft Fabric adoption with ready-to-run accelerators, demos, and tutorials that install directly into your workspace in minutes via fabric-cicd.

Install the Library

Requirements: Python 3.10–3.13 and access to a Microsoft Fabric workspace.

pip install fabric-jumpstart

List and Install a Jumpstart

Run inside a Fabric notebook (or any Python environment with Fabric credentials):

import fabric_jumpstart as jumpstart

# Renders an interactive catalog
jumpstart.list()

# Copy the install command from the catalog, past in another cell and run!
jumpstart.install("stateful-streaming-lakehouse")

Notes

  • workspace_id is optional when you run in a Fabric notebook; it auto-detects the current workspace. Specify to deploy to another target workspace.
  • install() accepts extras like item_prefix and unattended=True if you prefer console logs over HTML output.
  • Jumpstarts that include file upload configuration will automatically upload small data files to a Lakehouse's Files area after deployment — no extra arguments needed.

Handling Name Conflicts

If items with the same name already exist in your workspace, Fabric Jumpstart will detect conflicts and provide resolution options:

  1. Overwrite existing items:

    jumpstart.install("spark-structured-streaming", overwrite=True)
    
  2. Auto-generate a prefix to avoid conflicts:

    jumpstart.install("spark-structured-streaming", auto_prefix_on_conflict=True)
    

    This generates a prefix like js3_sss__ (jumpstart ID + abbreviated name) and applies it to all deployed items.

  3. Provide a custom prefix:

    jumpstart.install("spark-structured-streaming", item_prefix="demo_")
    

The prefixing strategy:

  • Renames item directories (e.g., MyNotebook.Notebookjs3_sss__MyNotebook.Notebook)
  • Updates all references to renamed items within configuration files
  • Uses word-boundary matching to avoid double-prefixing if you re-run the same install
  • Reuses existing prefixes from previous attempts to prevent js3_sss__js3_sss__ patterns

Testing a Jumpstart Before Registration

Use _install_from_github() to test a jumpstart directly from a GitHub repo before adding it to the registry. This method builds a synthetic config from the arguments you provide and runs the same install pipeline as install().

import fabric_jumpstart as jumpstart

jumpstart._install_from_github(
    logical_id="my-jumpstart", # sets name of root folder that items are deployed to
    repo_url="https://github.com/my-org/my-repo",
    repo_ref="v1.0.0",                           # tag or commit SHA — not a branch
    workspace_path="my-jumpstart/",              # defaults to "{logical_id}/"
    entry_point="GettingStarted.Notebook",
    items_in_scope=["Lakehouse", "Notebook"],
    workspace_id="<guid>",                       # target workspace (auto-resolves to the current ws in Fabric)
)

Common optional parameters:

jumpstart._install_from_github(
    logical_id="my-jumpstart",
    repo_url="https://github.com/my-org/my-repo",
    repo_ref="abc1234",
    entry_point="GettingStarted.Notebook",
    items_in_scope=["Lakehouse", "Notebook", "SQLEndpoint"],
    workspace_path="my-jumpstart/",              # defaults to "{logical_id}/"
    name="My Jumpstart",                         # display name (defaults to logical_id)
    workspace_id="<guid>",                       # target workspace (auto-detected in Fabric)
    files_source_path="my-jumpstart/data/",      # upload binary/data files after deploy
    files_destination_lakehouse="MyLakehouse",   # target Lakehouse for file upload
    files_destination_path="raw/",               # destination path in Lakehouse Files
    item_prefix="test_",                         # prefix all deployed item names
    unattended=True,                             # console output instead of HTML
)

Once the jumpstart installs successfully, add a YAML file to fabric_jumpstart/jumpstarts/ and switch to the standard jumpstart.install() flow.

Contributing

See the root contributing guide for shared guidelines (commit conventions, issue workflow, PR process), then follow the Python library contributing guide for development setup, quality checks, and the new jumpstart workflow.

Download files

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

Source Distribution

fabric_jumpstart-0.1.10.tar.gz (618.6 kB view details)

Uploaded Source

Built Distribution

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

fabric_jumpstart-0.1.10-py3-none-any.whl (713.8 kB view details)

Uploaded Python 3

File details

Details for the file fabric_jumpstart-0.1.10.tar.gz.

File metadata

  • Download URL: fabric_jumpstart-0.1.10.tar.gz
  • Upload date:
  • Size: 618.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: RestSharp/106.13.0.0

File hashes

Hashes for fabric_jumpstart-0.1.10.tar.gz
Algorithm Hash digest
SHA256 281fa93096d24d309bea51ce9bc151346a7804e2ce652c606a59a46f66bf667e
MD5 f3a551608a00bfa6f16385d3aebf6d65
BLAKE2b-256 d49e3f18218f3419700d2a633238e84b09d49d66fcabff1ebe49361745557aff

See more details on using hashes here.

File details

Details for the file fabric_jumpstart-0.1.10-py3-none-any.whl.

File metadata

File hashes

Hashes for fabric_jumpstart-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 2badbfffdd6a5505dffe7e98545a4c5376e0f627fdd556be10108d6fad0f425b
MD5 4b2fdcbda6639aa2e3eaf2043637b68b
BLAKE2b-256 a4e4513822a314fa9e0960c986f1a20e01a63e7fba64ab8ed0d37cc88ab62bfc

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.11

2 files

This release

0.1.10 This release

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

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