Skip to content

_get_fabric_runtime_context

Internal helper
This page documents an internal implementation helper, not a primary public API.
Source code in src/fabricops_kit/technical_columns.py
93
94
95
96
97
98
99
def _get_fabric_runtime_context() -> dict[str, Any]:
    try:
        from notebookutils import runtime  # type: ignore

        return getattr(runtime, "context", None) or {}
    except Exception:
        return {}