semantic-link-labs 0.9.9__tar.gz → 0.9.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of semantic-link-labs might be problematic. Click here for more details.
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/PKG-INFO +30 -22
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/README.md +28 -20
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/pyproject.toml +2 -2
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/semantic_link_labs.egg-info/PKG-INFO +30 -22
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/semantic_link_labs.egg-info/SOURCES.txt +9 -33
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/semantic_link_labs.egg-info/requires.txt +1 -1
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/__init__.py +28 -1
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_clear_cache.py +12 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_dax.py +8 -2
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_delta_analyzer.py +17 -26
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_environments.py +19 -1
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_generate_semantic_model.py +7 -8
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_helper_functions.py +351 -151
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_kql_databases.py +18 -0
- semantic_link_labs-0.9.11/src/sempy_labs/_kusto.py +137 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_list_functions.py +18 -36
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_model_bpa_rules.py +13 -3
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_notebooks.py +44 -11
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_semantic_models.py +93 -1
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_sql.py +3 -2
- semantic_link_labs-0.9.11/src/sempy_labs/_tags.py +194 -0
- semantic_link_labs-0.9.11/src/sempy_labs/_variable_libraries.py +89 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_vertipaq.py +6 -6
- semantic_link_labs-0.9.11/src/sempy_labs/_vpax.py +386 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_warehouses.py +3 -3
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/__init__.py +14 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_artifacts.py +3 -3
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_capacities.py +161 -1
- semantic_link_labs-0.9.11/src/sempy_labs/admin/_dataflows.py +45 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_items.py +16 -11
- semantic_link_labs-0.9.11/src/sempy_labs/admin/_tags.py +126 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_tenant.py +5 -5
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_generate_shared_expression.py +29 -26
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py +55 -5
- semantic_link_labs-0.9.11/src/sempy_labs/dotnet_lib/dotnet.runtime.config.json +10 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/lakehouse/__init__.py +16 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/lakehouse/_blobs.py +115 -63
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/lakehouse/_get_lakehouse_columns.py +41 -18
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/lakehouse/_get_lakehouse_tables.py +62 -47
- semantic_link_labs-0.9.11/src/sempy_labs/lakehouse/_helper.py +211 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/lakehouse/_lakehouse.py +45 -36
- semantic_link_labs-0.9.11/src/sempy_labs/lakehouse/_livy_sessions.py +137 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/migration/_migrate_calctables_to_lakehouse.py +7 -12
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/migration/_refresh_calc_tables.py +7 -6
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_download_report.py +1 -1
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_generate_report.py +5 -1
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_reportwrapper.py +31 -18
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/tom/_model.py +104 -35
- semantic_link_labs-0.9.9/.github/ISSUE_TEMPLATE/bug_report.md +0 -32
- semantic_link_labs-0.9.9/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
- semantic_link_labs-0.9.9/.github/ISSUE_TEMPLATE/issue--question---advice-needed.md +0 -14
- semantic_link_labs-0.9.9/.github/workflows/build.yaml +0 -69
- semantic_link_labs-0.9.9/.github/workflows/codeql.yaml +0 -30
- semantic_link_labs-0.9.9/.gitignore +0 -160
- semantic_link_labs-0.9.9/.readthedocs.yaml +0 -33
- semantic_link_labs-0.9.9/.vscode/settings.json +0 -7
- semantic_link_labs-0.9.9/CODE_OF_CONDUCT.md +0 -9
- semantic_link_labs-0.9.9/SECURITY.md +0 -41
- semantic_link_labs-0.9.9/SUPPORT.md +0 -25
- semantic_link_labs-0.9.9/docs/Makefile +0 -20
- semantic_link_labs-0.9.9/docs/make.bat +0 -35
- semantic_link_labs-0.9.9/docs/requirements.txt +0 -14
- semantic_link_labs-0.9.9/docs/source/conf.py +0 -46
- semantic_link_labs-0.9.9/docs/source/index.rst +0 -20
- semantic_link_labs-0.9.9/docs/source/modules.rst +0 -7
- semantic_link_labs-0.9.9/environment.yml +0 -13
- semantic_link_labs-0.9.9/notebooks/Best Practice Analyzer Report.ipynb +0 -1
- semantic_link_labs-0.9.9/notebooks/Capacity Migration.ipynb +0 -340
- semantic_link_labs-0.9.9/notebooks/Delta Analyzer.ipynb +0 -171
- semantic_link_labs-0.9.9/notebooks/Migration to Direct Lake.ipynb +0 -387
- semantic_link_labs-0.9.9/notebooks/Model Optimization.ipynb +0 -444
- semantic_link_labs-0.9.9/notebooks/Query Scale Out.ipynb +0 -226
- semantic_link_labs-0.9.9/notebooks/Report Analysis.ipynb +0 -1
- semantic_link_labs-0.9.9/notebooks/SQL.ipynb +0 -226
- semantic_link_labs-0.9.9/notebooks/Semantic Model Management.ipynb +0 -144
- semantic_link_labs-0.9.9/notebooks/Semantic Model Refresh.ipynb +0 -1
- semantic_link_labs-0.9.9/notebooks/Service Principal.ipynb +0 -247
- semantic_link_labs-0.9.9/notebooks/Tabular Object Model.ipynb +0 -786
- semantic_link_labs-0.9.9/src/sempy_labs/report/_bpareporttemplate/.pbi/localSettings.json +0 -9
- semantic_link_labs-0.9.9/src/sempy_labs/report/_bpareporttemplate/.platform +0 -11
- semantic_link_labs-0.9.9/tests/__init__.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/LICENSE +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/setup.cfg +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/semantic_link_labs.egg-info/dependency_links.txt +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/semantic_link_labs.egg-info/top_level.txt +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_ai.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_authentication.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_am-ET.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_ar-AE.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_bg-BG.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_ca-ES.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_cs-CZ.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_da-DK.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_de-DE.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_el-GR.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_es-ES.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_fa-IR.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_fi-FI.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_fr-FR.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_ga-IE.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_he-IL.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_hi-IN.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_hu-HU.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_id-ID.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_is-IS.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_it-IT.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_ja-JP.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_ko-KR.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_mt-MT.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_nl-NL.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_pl-PL.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_pt-BR.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_pt-PT.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_ro-RO.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_ru-RU.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_sk-SK.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_sl-SL.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_sv-SE.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_ta-IN.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_te-IN.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_th-TH.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_tr-TR.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_uk-UA.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_zh-CN.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_bpa_translation/_model/_translations_zu-ZA.po +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_capacities.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_capacity_migration.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_connections.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_dashboards.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_data_pipelines.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_dataflows.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_dax_query_view.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_delta_analyzer_history.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_deployment_pipelines.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_documentation.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_eventhouses.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_eventstreams.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_external_data_shares.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_gateways.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_git.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_graphQL.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_icons.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_job_scheduler.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_kql_querysets.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_managed_private_endpoints.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_mirrored_databases.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_mirrored_warehouses.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_ml_experiments.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_ml_models.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_model_auto_build.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_model_bpa.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_model_bpa_bulk.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_model_dependencies.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_mounted_data_factories.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_one_lake_integration.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_query_scale_out.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_refresh_semantic_model.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_spark.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_sqldatabase.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_translations.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_utils.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_workloads.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_workspace_identity.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/_workspaces.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_activities.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_apps.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_basic_functions.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_datasets.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_domains.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_external_data_share.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_git.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_reports.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_scanner.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_shared.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_users.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/admin/_workspaces.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/__init__.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_directlake_schema_compare.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_directlake_schema_sync.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_dl_helper.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_get_directlake_lakehouse.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_get_shared_expression.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_guardrails.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_list_directlake_model_calc_tables.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_show_unsupported_directlake_objects.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_update_directlake_partition_entity.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/directlake/_warm_cache.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/graph/__init__.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/graph/_groups.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/graph/_teams.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/graph/_users.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/lakehouse/_shortcuts.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/migration/__init__.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/migration/_create_pqt_file.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/migration/_direct_lake_to_import.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/migration/_migrate_calctables_to_semantic_model.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/migration/_migrate_model_objects_to_semantic_model.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/migration/_migrate_tables_columns_to_semantic_model.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/migration/_migration_validation.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_BPAReportTemplate.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/__init__.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/StaticResources/SharedResources/BaseThemes/CY24SU06.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/page.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/1b08bce3bebabb0a27a8/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/2f22ddb70c301693c165/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/3b1182230aa6c600b43a/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/58577ba6380c69891500/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/a2a8fa5028b3b776c96c/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/adfd47ef30652707b987/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/b6a80ee459e716e170b1/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/ce3130a721c020cc3d81/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/page.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/visuals/66e60dfb526437cd78d1/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/page.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/07deb8bce824e1be37d7/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0b1c68838818b32ad03b/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0c171de9d2683d10b930/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0efa01be0510e40a645e/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/6bf2f0eb830ab53cc668/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/88d8141cb8500b60030c/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/a753273590beed656a03/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/b8fdc82cddd61ac447bc/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/page.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/visuals/ce8532a7e25020271077/visual.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/pages/pages.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/report.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition/version.json +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_bpareporttemplate/definition.pbir +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_export_report.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_paginated.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_report_bpa.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_report_bpa_rules.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_report_functions.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_report_helper.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_report_list_functions.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_report_rebind.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/report/_save_report.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/sempy_labs/tom/__init__.py +0 -0
- {semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/tests/test_friendly_case.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: semantic-link-labs
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.11
|
|
4
4
|
Summary: Semantic Link Labs for Microsoft Fabric
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License: MIT License
|
|
@@ -15,7 +15,7 @@ Classifier: Framework :: Jupyter
|
|
|
15
15
|
Requires-Python: <3.12,>=3.10
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: semantic-link-sempy>=0.
|
|
18
|
+
Requires-Dist: semantic-link-sempy>=0.10.2
|
|
19
19
|
Requires-Dist: anytree
|
|
20
20
|
Requires-Dist: powerbiclient
|
|
21
21
|
Requires-Dist: polib
|
|
@@ -27,7 +27,7 @@ Dynamic: license-file
|
|
|
27
27
|
# Semantic Link Labs
|
|
28
28
|
|
|
29
29
|
[](https://badge.fury.io/py/semantic-link-labs)
|
|
30
|
-
[](https://readthedocs.org/projects/semantic-link-labs/)
|
|
31
31
|
[](https://github.com/psf/black)
|
|
32
32
|
[](https://pepy.tech/project/semantic-link-labs)
|
|
33
33
|
|
|
@@ -38,6 +38,9 @@ Dynamic: license-file
|
|
|
38
38
|
[Read the Wiki!](https://github.com/microsoft/semantic-link-labs/wiki)
|
|
39
39
|
---
|
|
40
40
|
|
|
41
|
+
[See code examples!](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples)
|
|
42
|
+
---
|
|
43
|
+
|
|
41
44
|
Semantic Link Labs is a Python library designed for use in [Microsoft Fabric notebooks](https://learn.microsoft.com/fabric/data-engineering/how-to-use-notebook). This library extends the capabilities of [Semantic Link](https://learn.microsoft.com/fabric/data-science/semantic-link-overview) offering additional functionalities to seamlessly integrate and work alongside it. The goal of Semantic Link Labs is to simplify technical processes, empowering people to focus on higher level activities and allowing tasks that are better suited for machines to be efficiently handled without human intervention.
|
|
42
45
|
|
|
43
46
|
If you encounter any issues, please [raise a bug](https://github.com/microsoft/semantic-link-labs/issues/new?assignees=&labels=&projects=&template=bug_report.md&title=).
|
|
@@ -51,43 +54,45 @@ Check out the video below for an introduction to Semantic Link, Semantic Link La
|
|
|
51
54
|
## Featured Scenarios
|
|
52
55
|
* Semantic Models
|
|
53
56
|
* [Migrating an import/DirectQuery semantic model to Direct Lake](https://github.com/microsoft/semantic-link-labs?tab=readme-ov-file#direct-lake-migration)
|
|
54
|
-
* [Model Best Practice Analyzer (BPA)](https://semantic-link-labs
|
|
55
|
-
* [Vertipaq Analyzer](https://semantic-link-labs
|
|
57
|
+
* [Model Best Practice Analyzer (BPA)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#model-best-practice-analyzer)
|
|
58
|
+
* [Vertipaq Analyzer](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#vertipaq-analyzer)
|
|
56
59
|
* [Tabular Object Model](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Tabular%20Object%20Model.ipynb) [(TOM)](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html)
|
|
57
|
-
* [Translate a semantic model's metadata](https://semantic-link-labs
|
|
60
|
+
* [Translate a semantic model's metadata](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#translate-a-semantic-model)
|
|
58
61
|
* [Check Direct Lake Guardrails](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.lakehouse.html#sempy_labs.lakehouse.get_lakehouse_tables)
|
|
59
|
-
* [Refresh](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Semantic%20Model%20Refresh.ipynb), [clear cache](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.clear_cache), [backup](https://semantic-link-labs
|
|
62
|
+
* [Refresh](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Semantic%20Model%20Refresh.ipynb), [clear cache](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.clear_cache), [backup](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#backup-a-semantic-model), [restore](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#restore-a-semantic-model), [copy backup files](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.copy_semantic_model_backup_file), [move/deploy across workspaces](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.deploy_semantic_model)
|
|
60
63
|
* [Run DAX queries which impersonate a user](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.evaluate_dax_impersonation)
|
|
61
64
|
* [Manage Query Scale Out](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Query%20Scale%20Out.ipynb)
|
|
62
|
-
* [Auto-generate descriptions for any/all measures in bulk](https://semantic-link-labs
|
|
63
|
-
* [Warm the cache of a Direct Lake semantic model after a refresh (using columns currently in memory)](https://semantic-link-labs
|
|
64
|
-
* [Warm the cache of a Direct Lake semantic model (via perspective)](https://semantic-link-labs
|
|
65
|
-
* [Visualize a refresh](https://github.com/microsoft/semantic-link-labs/
|
|
65
|
+
* [Auto-generate descriptions for any/all measures in bulk](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#auto-generate-measure-descriptions)
|
|
66
|
+
* [Warm the cache of a Direct Lake semantic model after a refresh (using columns currently in memory)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#warm-cache-the-cache-of-a-direct-lake-semantic-model)
|
|
67
|
+
* [Warm the cache of a Direct Lake semantic model (via perspective)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#warm-cache-the-cache-of-a-direct-lake-semantic-model)
|
|
68
|
+
* [Visualize a refresh](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#refresh-a-semantic-model)
|
|
66
69
|
* [Update the connection of a Direct Lake semantic model](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.directlake.html#sempy_labs.directlake.update_direct_lake_model_connection)
|
|
67
70
|
* [Dynamically generate a Direct Lake semantic model](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.directlake.html#sempy_labs.directlake.generate_direct_lake_semantic_model)
|
|
68
71
|
* [Check why a Direct Lake semantic model would fallback to DirectQuery](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.directlake.html#sempy_labs.directlake.check_fallback_reason)
|
|
69
72
|
* [View a measure dependency tree](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.measure_dependency_tree)
|
|
70
73
|
* [View unique columns touched in a single (or multiple) DAX query(ies)](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.get_dax_query_dependencies)
|
|
71
74
|
* [Analyze delta tables for Direct Lake semantic models using Delta Analyzer](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Delta%20Analyzer.ipynb)
|
|
72
|
-
* [View synonyms from the linguistic schema](https://semantic-link-labs
|
|
75
|
+
* [View synonyms from the linguistic schema](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#list-the-synonyms-in-the-linguistic-metadata)
|
|
73
76
|
* [Add](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html#sempy_labs.tom.TOMWrapper.add_incremental_refresh_policy), [update](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html#sempy_labs.tom.TOMWrapper.update_incremental_refresh_policy) and [view](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html#sempy_labs.tom.TOMWrapper.show_incremental_refresh_policy) an incremental refresh policy.
|
|
74
77
|
* Reports
|
|
75
|
-
* [Report Best Practice Analyzer (BPA)](https://semantic-link-labs
|
|
76
|
-
* [View report metadata](https://github.com/microsoft/semantic-link-labs/
|
|
77
|
-
* [View semantic model objects most frequently used in Power BI reports](https://semantic-link-labs
|
|
78
|
-
* [View broken reports](https://semantic-link-labs
|
|
79
|
-
* [Set a report theme](https://semantic-link-labs
|
|
80
|
-
* [Migrate report-level measures to the semantic model](https://semantic-link-labs
|
|
81
|
-
* [Rebind reports](https://semantic-link-labs
|
|
78
|
+
* [Report Best Practice Analyzer (BPA)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#report-best-practice-analyzer)
|
|
79
|
+
* [View report metadata](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#view-report-metadata)
|
|
80
|
+
* [View semantic model objects most frequently used in Power BI reports](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#show-the-frequency-of-semantic-model-object-used-within-reports)
|
|
81
|
+
* [View broken reports](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#find-broken-visuals-in-a-power-bi-report)
|
|
82
|
+
* [Set a report theme](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#set-the-theme-of-a-report)
|
|
83
|
+
* [Migrate report-level measures to the semantic model](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#migrate-report-level-measures-to-the-semantic-model)
|
|
84
|
+
* [Rebind reports](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#rebind-a-report-to-a-different-semantic-model)
|
|
85
|
+
* [Save a report as a .pbip](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#save-a-report-as-a-pbip-file)
|
|
82
86
|
* Capacities
|
|
83
87
|
* [Migrating a Power BI Premium capacity (P sku) to a Fabric capacity (F sku)](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Capacity%20Migration.ipynb)
|
|
84
88
|
* [Migrating a Fabric Trial capacity (FT sku) to a Fabric capacity (F sku)](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Capacity%20Migration.ipynb)
|
|
85
89
|
* [Create](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.create_fabric_capacity)/[update](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.update_fabric_capacity)/[suspend](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.suspend_fabric_capacity)/[resume](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.resume_fabric_capacity) Fabric capacities
|
|
86
90
|
* Lakehouses
|
|
87
|
-
* [Optimize lakehouse tables](https://semantic-link-labs
|
|
88
|
-
* [Vacuum lakehouse tables](https://semantic-link-labs
|
|
89
|
-
* [Create](https://semantic-link-labs
|
|
91
|
+
* [Optimize lakehouse tables](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#optimize-lakehouse-tables)
|
|
92
|
+
* [Vacuum lakehouse tables](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#vacuum-lakehouse-tables)
|
|
93
|
+
* [Create](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#create-a-onelake-shortcut), [delete](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.lakehouse.html#sempy_labs.lakehouse.delete_shortcut), and [view shortcuts](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.list_shortcuts)
|
|
90
94
|
* [Analyze delta tables for Direct Lake semantic models using Delta Analyzer](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Delta%20Analyzer.ipynb)
|
|
95
|
+
* [Recover a soft-deleted lakehouse table/file/folder](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#recover-a-lakehouse-object)
|
|
91
96
|
* Notebooks
|
|
92
97
|
* [Import a notebook from the web](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.import_notebook_from_web)
|
|
93
98
|
* APIs
|
|
@@ -149,6 +154,9 @@ An even better way to ensure the semantic-link-labs library is available in your
|
|
|
149
154
|
2. Select your newly created environment within the 'Environment' drop down in the navigation bar at the top of the notebook
|
|
150
155
|
|
|
151
156
|
## Version History
|
|
157
|
+
* [0.9.11](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.11) (May 22, 2025)
|
|
158
|
+
* [0.9.10](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.10) (April 24, 2025)
|
|
159
|
+
* [0.9.9](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.9) (April 7, 2025)
|
|
152
160
|
* [0.9.8](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.8) (April 3, 2025)
|
|
153
161
|
* [0.9.7](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.7) (April 1, 2025)
|
|
154
162
|
* [0.9.6](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.6) (March 12, 2025)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Semantic Link Labs
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/py/semantic-link-labs)
|
|
4
|
-
[](https://readthedocs.org/projects/semantic-link-labs/)
|
|
5
5
|
[](https://github.com/psf/black)
|
|
6
6
|
[](https://pepy.tech/project/semantic-link-labs)
|
|
7
7
|
|
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
[Read the Wiki!](https://github.com/microsoft/semantic-link-labs/wiki)
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
+
[See code examples!](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples)
|
|
16
|
+
---
|
|
17
|
+
|
|
15
18
|
Semantic Link Labs is a Python library designed for use in [Microsoft Fabric notebooks](https://learn.microsoft.com/fabric/data-engineering/how-to-use-notebook). This library extends the capabilities of [Semantic Link](https://learn.microsoft.com/fabric/data-science/semantic-link-overview) offering additional functionalities to seamlessly integrate and work alongside it. The goal of Semantic Link Labs is to simplify technical processes, empowering people to focus on higher level activities and allowing tasks that are better suited for machines to be efficiently handled without human intervention.
|
|
16
19
|
|
|
17
20
|
If you encounter any issues, please [raise a bug](https://github.com/microsoft/semantic-link-labs/issues/new?assignees=&labels=&projects=&template=bug_report.md&title=).
|
|
@@ -25,43 +28,45 @@ Check out the video below for an introduction to Semantic Link, Semantic Link La
|
|
|
25
28
|
## Featured Scenarios
|
|
26
29
|
* Semantic Models
|
|
27
30
|
* [Migrating an import/DirectQuery semantic model to Direct Lake](https://github.com/microsoft/semantic-link-labs?tab=readme-ov-file#direct-lake-migration)
|
|
28
|
-
* [Model Best Practice Analyzer (BPA)](https://semantic-link-labs
|
|
29
|
-
* [Vertipaq Analyzer](https://semantic-link-labs
|
|
31
|
+
* [Model Best Practice Analyzer (BPA)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#model-best-practice-analyzer)
|
|
32
|
+
* [Vertipaq Analyzer](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#vertipaq-analyzer)
|
|
30
33
|
* [Tabular Object Model](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Tabular%20Object%20Model.ipynb) [(TOM)](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html)
|
|
31
|
-
* [Translate a semantic model's metadata](https://semantic-link-labs
|
|
34
|
+
* [Translate a semantic model's metadata](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#translate-a-semantic-model)
|
|
32
35
|
* [Check Direct Lake Guardrails](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.lakehouse.html#sempy_labs.lakehouse.get_lakehouse_tables)
|
|
33
|
-
* [Refresh](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Semantic%20Model%20Refresh.ipynb), [clear cache](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.clear_cache), [backup](https://semantic-link-labs
|
|
36
|
+
* [Refresh](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Semantic%20Model%20Refresh.ipynb), [clear cache](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.clear_cache), [backup](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#backup-a-semantic-model), [restore](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#restore-a-semantic-model), [copy backup files](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.copy_semantic_model_backup_file), [move/deploy across workspaces](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.deploy_semantic_model)
|
|
34
37
|
* [Run DAX queries which impersonate a user](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.evaluate_dax_impersonation)
|
|
35
38
|
* [Manage Query Scale Out](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Query%20Scale%20Out.ipynb)
|
|
36
|
-
* [Auto-generate descriptions for any/all measures in bulk](https://semantic-link-labs
|
|
37
|
-
* [Warm the cache of a Direct Lake semantic model after a refresh (using columns currently in memory)](https://semantic-link-labs
|
|
38
|
-
* [Warm the cache of a Direct Lake semantic model (via perspective)](https://semantic-link-labs
|
|
39
|
-
* [Visualize a refresh](https://github.com/microsoft/semantic-link-labs/
|
|
39
|
+
* [Auto-generate descriptions for any/all measures in bulk](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#auto-generate-measure-descriptions)
|
|
40
|
+
* [Warm the cache of a Direct Lake semantic model after a refresh (using columns currently in memory)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#warm-cache-the-cache-of-a-direct-lake-semantic-model)
|
|
41
|
+
* [Warm the cache of a Direct Lake semantic model (via perspective)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#warm-cache-the-cache-of-a-direct-lake-semantic-model)
|
|
42
|
+
* [Visualize a refresh](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#refresh-a-semantic-model)
|
|
40
43
|
* [Update the connection of a Direct Lake semantic model](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.directlake.html#sempy_labs.directlake.update_direct_lake_model_connection)
|
|
41
44
|
* [Dynamically generate a Direct Lake semantic model](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.directlake.html#sempy_labs.directlake.generate_direct_lake_semantic_model)
|
|
42
45
|
* [Check why a Direct Lake semantic model would fallback to DirectQuery](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.directlake.html#sempy_labs.directlake.check_fallback_reason)
|
|
43
46
|
* [View a measure dependency tree](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.measure_dependency_tree)
|
|
44
47
|
* [View unique columns touched in a single (or multiple) DAX query(ies)](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.get_dax_query_dependencies)
|
|
45
48
|
* [Analyze delta tables for Direct Lake semantic models using Delta Analyzer](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Delta%20Analyzer.ipynb)
|
|
46
|
-
* [View synonyms from the linguistic schema](https://semantic-link-labs
|
|
49
|
+
* [View synonyms from the linguistic schema](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#list-the-synonyms-in-the-linguistic-metadata)
|
|
47
50
|
* [Add](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html#sempy_labs.tom.TOMWrapper.add_incremental_refresh_policy), [update](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html#sempy_labs.tom.TOMWrapper.update_incremental_refresh_policy) and [view](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html#sempy_labs.tom.TOMWrapper.show_incremental_refresh_policy) an incremental refresh policy.
|
|
48
51
|
* Reports
|
|
49
|
-
* [Report Best Practice Analyzer (BPA)](https://semantic-link-labs
|
|
50
|
-
* [View report metadata](https://github.com/microsoft/semantic-link-labs/
|
|
51
|
-
* [View semantic model objects most frequently used in Power BI reports](https://semantic-link-labs
|
|
52
|
-
* [View broken reports](https://semantic-link-labs
|
|
53
|
-
* [Set a report theme](https://semantic-link-labs
|
|
54
|
-
* [Migrate report-level measures to the semantic model](https://semantic-link-labs
|
|
55
|
-
* [Rebind reports](https://semantic-link-labs
|
|
52
|
+
* [Report Best Practice Analyzer (BPA)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#report-best-practice-analyzer)
|
|
53
|
+
* [View report metadata](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#view-report-metadata)
|
|
54
|
+
* [View semantic model objects most frequently used in Power BI reports](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#show-the-frequency-of-semantic-model-object-used-within-reports)
|
|
55
|
+
* [View broken reports](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#find-broken-visuals-in-a-power-bi-report)
|
|
56
|
+
* [Set a report theme](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#set-the-theme-of-a-report)
|
|
57
|
+
* [Migrate report-level measures to the semantic model](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#migrate-report-level-measures-to-the-semantic-model)
|
|
58
|
+
* [Rebind reports](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#rebind-a-report-to-a-different-semantic-model)
|
|
59
|
+
* [Save a report as a .pbip](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#save-a-report-as-a-pbip-file)
|
|
56
60
|
* Capacities
|
|
57
61
|
* [Migrating a Power BI Premium capacity (P sku) to a Fabric capacity (F sku)](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Capacity%20Migration.ipynb)
|
|
58
62
|
* [Migrating a Fabric Trial capacity (FT sku) to a Fabric capacity (F sku)](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Capacity%20Migration.ipynb)
|
|
59
63
|
* [Create](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.create_fabric_capacity)/[update](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.update_fabric_capacity)/[suspend](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.suspend_fabric_capacity)/[resume](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.resume_fabric_capacity) Fabric capacities
|
|
60
64
|
* Lakehouses
|
|
61
|
-
* [Optimize lakehouse tables](https://semantic-link-labs
|
|
62
|
-
* [Vacuum lakehouse tables](https://semantic-link-labs
|
|
63
|
-
* [Create](https://semantic-link-labs
|
|
65
|
+
* [Optimize lakehouse tables](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#optimize-lakehouse-tables)
|
|
66
|
+
* [Vacuum lakehouse tables](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#vacuum-lakehouse-tables)
|
|
67
|
+
* [Create](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#create-a-onelake-shortcut), [delete](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.lakehouse.html#sempy_labs.lakehouse.delete_shortcut), and [view shortcuts](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.list_shortcuts)
|
|
64
68
|
* [Analyze delta tables for Direct Lake semantic models using Delta Analyzer](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Delta%20Analyzer.ipynb)
|
|
69
|
+
* [Recover a soft-deleted lakehouse table/file/folder](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#recover-a-lakehouse-object)
|
|
65
70
|
* Notebooks
|
|
66
71
|
* [Import a notebook from the web](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.import_notebook_from_web)
|
|
67
72
|
* APIs
|
|
@@ -123,6 +128,9 @@ An even better way to ensure the semantic-link-labs library is available in your
|
|
|
123
128
|
2. Select your newly created environment within the 'Environment' drop down in the navigation bar at the top of the notebook
|
|
124
129
|
|
|
125
130
|
## Version History
|
|
131
|
+
* [0.9.11](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.11) (May 22, 2025)
|
|
132
|
+
* [0.9.10](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.10) (April 24, 2025)
|
|
133
|
+
* [0.9.9](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.9) (April 7, 2025)
|
|
126
134
|
* [0.9.8](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.8) (April 3, 2025)
|
|
127
135
|
* [0.9.7](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.7) (April 1, 2025)
|
|
128
136
|
* [0.9.6](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.6) (March 12, 2025)
|
|
@@ -7,7 +7,7 @@ name="semantic-link-labs"
|
|
|
7
7
|
authors = [
|
|
8
8
|
{ name = "Microsoft Corporation" },
|
|
9
9
|
]
|
|
10
|
-
version="0.9.
|
|
10
|
+
version="0.9.11"
|
|
11
11
|
description="Semantic Link Labs for Microsoft Fabric"
|
|
12
12
|
readme="README.md"
|
|
13
13
|
requires-python=">=3.10,<3.12"
|
|
@@ -23,7 +23,7 @@ classifiers = [
|
|
|
23
23
|
license= { text = "MIT License" }
|
|
24
24
|
|
|
25
25
|
dependencies = [
|
|
26
|
-
"semantic-link-sempy>=0.
|
|
26
|
+
"semantic-link-sempy>=0.10.2",
|
|
27
27
|
"anytree",
|
|
28
28
|
"powerbiclient",
|
|
29
29
|
"polib",
|
{semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/semantic_link_labs.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: semantic-link-labs
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.11
|
|
4
4
|
Summary: Semantic Link Labs for Microsoft Fabric
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License: MIT License
|
|
@@ -15,7 +15,7 @@ Classifier: Framework :: Jupyter
|
|
|
15
15
|
Requires-Python: <3.12,>=3.10
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: semantic-link-sempy>=0.
|
|
18
|
+
Requires-Dist: semantic-link-sempy>=0.10.2
|
|
19
19
|
Requires-Dist: anytree
|
|
20
20
|
Requires-Dist: powerbiclient
|
|
21
21
|
Requires-Dist: polib
|
|
@@ -27,7 +27,7 @@ Dynamic: license-file
|
|
|
27
27
|
# Semantic Link Labs
|
|
28
28
|
|
|
29
29
|
[](https://badge.fury.io/py/semantic-link-labs)
|
|
30
|
-
[](https://readthedocs.org/projects/semantic-link-labs/)
|
|
31
31
|
[](https://github.com/psf/black)
|
|
32
32
|
[](https://pepy.tech/project/semantic-link-labs)
|
|
33
33
|
|
|
@@ -38,6 +38,9 @@ Dynamic: license-file
|
|
|
38
38
|
[Read the Wiki!](https://github.com/microsoft/semantic-link-labs/wiki)
|
|
39
39
|
---
|
|
40
40
|
|
|
41
|
+
[See code examples!](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples)
|
|
42
|
+
---
|
|
43
|
+
|
|
41
44
|
Semantic Link Labs is a Python library designed for use in [Microsoft Fabric notebooks](https://learn.microsoft.com/fabric/data-engineering/how-to-use-notebook). This library extends the capabilities of [Semantic Link](https://learn.microsoft.com/fabric/data-science/semantic-link-overview) offering additional functionalities to seamlessly integrate and work alongside it. The goal of Semantic Link Labs is to simplify technical processes, empowering people to focus on higher level activities and allowing tasks that are better suited for machines to be efficiently handled without human intervention.
|
|
42
45
|
|
|
43
46
|
If you encounter any issues, please [raise a bug](https://github.com/microsoft/semantic-link-labs/issues/new?assignees=&labels=&projects=&template=bug_report.md&title=).
|
|
@@ -51,43 +54,45 @@ Check out the video below for an introduction to Semantic Link, Semantic Link La
|
|
|
51
54
|
## Featured Scenarios
|
|
52
55
|
* Semantic Models
|
|
53
56
|
* [Migrating an import/DirectQuery semantic model to Direct Lake](https://github.com/microsoft/semantic-link-labs?tab=readme-ov-file#direct-lake-migration)
|
|
54
|
-
* [Model Best Practice Analyzer (BPA)](https://semantic-link-labs
|
|
55
|
-
* [Vertipaq Analyzer](https://semantic-link-labs
|
|
57
|
+
* [Model Best Practice Analyzer (BPA)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#model-best-practice-analyzer)
|
|
58
|
+
* [Vertipaq Analyzer](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#vertipaq-analyzer)
|
|
56
59
|
* [Tabular Object Model](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Tabular%20Object%20Model.ipynb) [(TOM)](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html)
|
|
57
|
-
* [Translate a semantic model's metadata](https://semantic-link-labs
|
|
60
|
+
* [Translate a semantic model's metadata](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#translate-a-semantic-model)
|
|
58
61
|
* [Check Direct Lake Guardrails](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.lakehouse.html#sempy_labs.lakehouse.get_lakehouse_tables)
|
|
59
|
-
* [Refresh](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Semantic%20Model%20Refresh.ipynb), [clear cache](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.clear_cache), [backup](https://semantic-link-labs
|
|
62
|
+
* [Refresh](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Semantic%20Model%20Refresh.ipynb), [clear cache](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.clear_cache), [backup](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#backup-a-semantic-model), [restore](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#restore-a-semantic-model), [copy backup files](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.copy_semantic_model_backup_file), [move/deploy across workspaces](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.deploy_semantic_model)
|
|
60
63
|
* [Run DAX queries which impersonate a user](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.evaluate_dax_impersonation)
|
|
61
64
|
* [Manage Query Scale Out](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Query%20Scale%20Out.ipynb)
|
|
62
|
-
* [Auto-generate descriptions for any/all measures in bulk](https://semantic-link-labs
|
|
63
|
-
* [Warm the cache of a Direct Lake semantic model after a refresh (using columns currently in memory)](https://semantic-link-labs
|
|
64
|
-
* [Warm the cache of a Direct Lake semantic model (via perspective)](https://semantic-link-labs
|
|
65
|
-
* [Visualize a refresh](https://github.com/microsoft/semantic-link-labs/
|
|
65
|
+
* [Auto-generate descriptions for any/all measures in bulk](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#auto-generate-measure-descriptions)
|
|
66
|
+
* [Warm the cache of a Direct Lake semantic model after a refresh (using columns currently in memory)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#warm-cache-the-cache-of-a-direct-lake-semantic-model)
|
|
67
|
+
* [Warm the cache of a Direct Lake semantic model (via perspective)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#warm-cache-the-cache-of-a-direct-lake-semantic-model)
|
|
68
|
+
* [Visualize a refresh](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#refresh-a-semantic-model)
|
|
66
69
|
* [Update the connection of a Direct Lake semantic model](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.directlake.html#sempy_labs.directlake.update_direct_lake_model_connection)
|
|
67
70
|
* [Dynamically generate a Direct Lake semantic model](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.directlake.html#sempy_labs.directlake.generate_direct_lake_semantic_model)
|
|
68
71
|
* [Check why a Direct Lake semantic model would fallback to DirectQuery](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.directlake.html#sempy_labs.directlake.check_fallback_reason)
|
|
69
72
|
* [View a measure dependency tree](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.measure_dependency_tree)
|
|
70
73
|
* [View unique columns touched in a single (or multiple) DAX query(ies)](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.get_dax_query_dependencies)
|
|
71
74
|
* [Analyze delta tables for Direct Lake semantic models using Delta Analyzer](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Delta%20Analyzer.ipynb)
|
|
72
|
-
* [View synonyms from the linguistic schema](https://semantic-link-labs
|
|
75
|
+
* [View synonyms from the linguistic schema](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#list-the-synonyms-in-the-linguistic-metadata)
|
|
73
76
|
* [Add](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html#sempy_labs.tom.TOMWrapper.add_incremental_refresh_policy), [update](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html#sempy_labs.tom.TOMWrapper.update_incremental_refresh_policy) and [view](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.tom.html#sempy_labs.tom.TOMWrapper.show_incremental_refresh_policy) an incremental refresh policy.
|
|
74
77
|
* Reports
|
|
75
|
-
* [Report Best Practice Analyzer (BPA)](https://semantic-link-labs
|
|
76
|
-
* [View report metadata](https://github.com/microsoft/semantic-link-labs/
|
|
77
|
-
* [View semantic model objects most frequently used in Power BI reports](https://semantic-link-labs
|
|
78
|
-
* [View broken reports](https://semantic-link-labs
|
|
79
|
-
* [Set a report theme](https://semantic-link-labs
|
|
80
|
-
* [Migrate report-level measures to the semantic model](https://semantic-link-labs
|
|
81
|
-
* [Rebind reports](https://semantic-link-labs
|
|
78
|
+
* [Report Best Practice Analyzer (BPA)](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#report-best-practice-analyzer)
|
|
79
|
+
* [View report metadata](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#view-report-metadata)
|
|
80
|
+
* [View semantic model objects most frequently used in Power BI reports](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#show-the-frequency-of-semantic-model-object-used-within-reports)
|
|
81
|
+
* [View broken reports](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#find-broken-visuals-in-a-power-bi-report)
|
|
82
|
+
* [Set a report theme](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#set-the-theme-of-a-report)
|
|
83
|
+
* [Migrate report-level measures to the semantic model](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#migrate-report-level-measures-to-the-semantic-model)
|
|
84
|
+
* [Rebind reports](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#rebind-a-report-to-a-different-semantic-model)
|
|
85
|
+
* [Save a report as a .pbip](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#save-a-report-as-a-pbip-file)
|
|
82
86
|
* Capacities
|
|
83
87
|
* [Migrating a Power BI Premium capacity (P sku) to a Fabric capacity (F sku)](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Capacity%20Migration.ipynb)
|
|
84
88
|
* [Migrating a Fabric Trial capacity (FT sku) to a Fabric capacity (F sku)](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Capacity%20Migration.ipynb)
|
|
85
89
|
* [Create](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.create_fabric_capacity)/[update](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.update_fabric_capacity)/[suspend](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.suspend_fabric_capacity)/[resume](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.resume_fabric_capacity) Fabric capacities
|
|
86
90
|
* Lakehouses
|
|
87
|
-
* [Optimize lakehouse tables](https://semantic-link-labs
|
|
88
|
-
* [Vacuum lakehouse tables](https://semantic-link-labs
|
|
89
|
-
* [Create](https://semantic-link-labs
|
|
91
|
+
* [Optimize lakehouse tables](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#optimize-lakehouse-tables)
|
|
92
|
+
* [Vacuum lakehouse tables](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#vacuum-lakehouse-tables)
|
|
93
|
+
* [Create](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#create-a-onelake-shortcut), [delete](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.lakehouse.html#sempy_labs.lakehouse.delete_shortcut), and [view shortcuts](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.list_shortcuts)
|
|
90
94
|
* [Analyze delta tables for Direct Lake semantic models using Delta Analyzer](https://github.com/microsoft/semantic-link-labs/blob/main/notebooks/Delta%20Analyzer.ipynb)
|
|
95
|
+
* [Recover a soft-deleted lakehouse table/file/folder](https://github.com/microsoft/semantic-link-labs/wiki/Code-Examples#recover-a-lakehouse-object)
|
|
91
96
|
* Notebooks
|
|
92
97
|
* [Import a notebook from the web](https://semantic-link-labs.readthedocs.io/en/stable/sempy_labs.html#sempy_labs.import_notebook_from_web)
|
|
93
98
|
* APIs
|
|
@@ -149,6 +154,9 @@ An even better way to ensure the semantic-link-labs library is available in your
|
|
|
149
154
|
2. Select your newly created environment within the 'Environment' drop down in the navigation bar at the top of the notebook
|
|
150
155
|
|
|
151
156
|
## Version History
|
|
157
|
+
* [0.9.11](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.11) (May 22, 2025)
|
|
158
|
+
* [0.9.10](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.10) (April 24, 2025)
|
|
159
|
+
* [0.9.9](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.9) (April 7, 2025)
|
|
152
160
|
* [0.9.8](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.8) (April 3, 2025)
|
|
153
161
|
* [0.9.7](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.7) (April 1, 2025)
|
|
154
162
|
* [0.9.6](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.6) (March 12, 2025)
|
{semantic_link_labs-0.9.9 → semantic_link_labs-0.9.11}/src/semantic_link_labs.egg-info/SOURCES.txt
RENAMED
|
@@ -1,36 +1,6 @@
|
|
|
1
|
-
.gitignore
|
|
2
|
-
.readthedocs.yaml
|
|
3
|
-
CODE_OF_CONDUCT.md
|
|
4
1
|
LICENSE
|
|
5
2
|
README.md
|
|
6
|
-
SECURITY.md
|
|
7
|
-
SUPPORT.md
|
|
8
|
-
environment.yml
|
|
9
3
|
pyproject.toml
|
|
10
|
-
.github/ISSUE_TEMPLATE/bug_report.md
|
|
11
|
-
.github/ISSUE_TEMPLATE/feature_request.md
|
|
12
|
-
.github/ISSUE_TEMPLATE/issue--question---advice-needed.md
|
|
13
|
-
.github/workflows/build.yaml
|
|
14
|
-
.github/workflows/codeql.yaml
|
|
15
|
-
.vscode/settings.json
|
|
16
|
-
docs/Makefile
|
|
17
|
-
docs/make.bat
|
|
18
|
-
docs/requirements.txt
|
|
19
|
-
docs/source/conf.py
|
|
20
|
-
docs/source/index.rst
|
|
21
|
-
docs/source/modules.rst
|
|
22
|
-
notebooks/Best Practice Analyzer Report.ipynb
|
|
23
|
-
notebooks/Capacity Migration.ipynb
|
|
24
|
-
notebooks/Delta Analyzer.ipynb
|
|
25
|
-
notebooks/Migration to Direct Lake.ipynb
|
|
26
|
-
notebooks/Model Optimization.ipynb
|
|
27
|
-
notebooks/Query Scale Out.ipynb
|
|
28
|
-
notebooks/Report Analysis.ipynb
|
|
29
|
-
notebooks/SQL.ipynb
|
|
30
|
-
notebooks/Semantic Model Management.ipynb
|
|
31
|
-
notebooks/Semantic Model Refresh.ipynb
|
|
32
|
-
notebooks/Service Principal.ipynb
|
|
33
|
-
notebooks/Tabular Object Model.ipynb
|
|
34
4
|
src/semantic_link_labs.egg-info/PKG-INFO
|
|
35
5
|
src/semantic_link_labs.egg-info/SOURCES.txt
|
|
36
6
|
src/semantic_link_labs.egg-info/dependency_links.txt
|
|
@@ -65,6 +35,7 @@ src/sempy_labs/_icons.py
|
|
|
65
35
|
src/sempy_labs/_job_scheduler.py
|
|
66
36
|
src/sempy_labs/_kql_databases.py
|
|
67
37
|
src/sempy_labs/_kql_querysets.py
|
|
38
|
+
src/sempy_labs/_kusto.py
|
|
68
39
|
src/sempy_labs/_list_functions.py
|
|
69
40
|
src/sempy_labs/_managed_private_endpoints.py
|
|
70
41
|
src/sempy_labs/_mirrored_databases.py
|
|
@@ -85,9 +56,12 @@ src/sempy_labs/_semantic_models.py
|
|
|
85
56
|
src/sempy_labs/_spark.py
|
|
86
57
|
src/sempy_labs/_sql.py
|
|
87
58
|
src/sempy_labs/_sqldatabase.py
|
|
59
|
+
src/sempy_labs/_tags.py
|
|
88
60
|
src/sempy_labs/_translations.py
|
|
89
61
|
src/sempy_labs/_utils.py
|
|
62
|
+
src/sempy_labs/_variable_libraries.py
|
|
90
63
|
src/sempy_labs/_vertipaq.py
|
|
64
|
+
src/sempy_labs/_vpax.py
|
|
91
65
|
src/sempy_labs/_warehouses.py
|
|
92
66
|
src/sempy_labs/_workloads.py
|
|
93
67
|
src/sempy_labs/_workspace_identity.py
|
|
@@ -136,6 +110,7 @@ src/sempy_labs/admin/_apps.py
|
|
|
136
110
|
src/sempy_labs/admin/_artifacts.py
|
|
137
111
|
src/sempy_labs/admin/_basic_functions.py
|
|
138
112
|
src/sempy_labs/admin/_capacities.py
|
|
113
|
+
src/sempy_labs/admin/_dataflows.py
|
|
139
114
|
src/sempy_labs/admin/_datasets.py
|
|
140
115
|
src/sempy_labs/admin/_domains.py
|
|
141
116
|
src/sempy_labs/admin/_external_data_share.py
|
|
@@ -144,6 +119,7 @@ src/sempy_labs/admin/_items.py
|
|
|
144
119
|
src/sempy_labs/admin/_reports.py
|
|
145
120
|
src/sempy_labs/admin/_scanner.py
|
|
146
121
|
src/sempy_labs/admin/_shared.py
|
|
122
|
+
src/sempy_labs/admin/_tags.py
|
|
147
123
|
src/sempy_labs/admin/_tenant.py
|
|
148
124
|
src/sempy_labs/admin/_users.py
|
|
149
125
|
src/sempy_labs/admin/_workspaces.py
|
|
@@ -160,6 +136,7 @@ src/sempy_labs/directlake/_show_unsupported_directlake_objects.py
|
|
|
160
136
|
src/sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py
|
|
161
137
|
src/sempy_labs/directlake/_update_directlake_partition_entity.py
|
|
162
138
|
src/sempy_labs/directlake/_warm_cache.py
|
|
139
|
+
src/sempy_labs/dotnet_lib/dotnet.runtime.config.json
|
|
163
140
|
src/sempy_labs/graph/__init__.py
|
|
164
141
|
src/sempy_labs/graph/_groups.py
|
|
165
142
|
src/sempy_labs/graph/_teams.py
|
|
@@ -168,7 +145,9 @@ src/sempy_labs/lakehouse/__init__.py
|
|
|
168
145
|
src/sempy_labs/lakehouse/_blobs.py
|
|
169
146
|
src/sempy_labs/lakehouse/_get_lakehouse_columns.py
|
|
170
147
|
src/sempy_labs/lakehouse/_get_lakehouse_tables.py
|
|
148
|
+
src/sempy_labs/lakehouse/_helper.py
|
|
171
149
|
src/sempy_labs/lakehouse/_lakehouse.py
|
|
150
|
+
src/sempy_labs/lakehouse/_livy_sessions.py
|
|
172
151
|
src/sempy_labs/lakehouse/_shortcuts.py
|
|
173
152
|
src/sempy_labs/migration/__init__.py
|
|
174
153
|
src/sempy_labs/migration/_create_pqt_file.py
|
|
@@ -193,9 +172,7 @@ src/sempy_labs/report/_report_list_functions.py
|
|
|
193
172
|
src/sempy_labs/report/_report_rebind.py
|
|
194
173
|
src/sempy_labs/report/_reportwrapper.py
|
|
195
174
|
src/sempy_labs/report/_save_report.py
|
|
196
|
-
src/sempy_labs/report/_bpareporttemplate/.platform
|
|
197
175
|
src/sempy_labs/report/_bpareporttemplate/definition.pbir
|
|
198
|
-
src/sempy_labs/report/_bpareporttemplate/.pbi/localSettings.json
|
|
199
176
|
src/sempy_labs/report/_bpareporttemplate/StaticResources/SharedResources/BaseThemes/CY24SU06.json
|
|
200
177
|
src/sempy_labs/report/_bpareporttemplate/definition/report.json
|
|
201
178
|
src/sempy_labs/report/_bpareporttemplate/definition/version.json
|
|
@@ -224,5 +201,4 @@ src/sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/p
|
|
|
224
201
|
src/sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/visuals/ce8532a7e25020271077/visual.json
|
|
225
202
|
src/sempy_labs/tom/__init__.py
|
|
226
203
|
src/sempy_labs/tom/_model.py
|
|
227
|
-
tests/__init__.py
|
|
228
204
|
tests/test_friendly_case.py
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
from sempy_labs._variable_libraries import (
|
|
2
|
+
list_variable_libraries,
|
|
3
|
+
delete_variable_library,
|
|
4
|
+
)
|
|
5
|
+
from sempy_labs._kusto import (
|
|
6
|
+
query_kusto,
|
|
7
|
+
query_workspace_monitoring,
|
|
8
|
+
)
|
|
9
|
+
from sempy_labs._vpax import (
|
|
10
|
+
create_vpax,
|
|
11
|
+
)
|
|
1
12
|
from sempy_labs._delta_analyzer_history import (
|
|
2
13
|
delta_analyzer_history,
|
|
3
14
|
)
|
|
@@ -9,11 +20,16 @@ from sempy_labs._mounted_data_factories import (
|
|
|
9
20
|
get_mounted_data_factory_definition,
|
|
10
21
|
delete_mounted_data_factory,
|
|
11
22
|
)
|
|
12
|
-
|
|
23
|
+
from sempy_labs._tags import (
|
|
24
|
+
list_tags,
|
|
25
|
+
apply_tags,
|
|
26
|
+
unapply_tags,
|
|
27
|
+
)
|
|
13
28
|
from sempy_labs._semantic_models import (
|
|
14
29
|
get_semantic_model_refresh_schedule,
|
|
15
30
|
enable_semantic_model_scheduled_refresh,
|
|
16
31
|
delete_semantic_model,
|
|
32
|
+
update_semantic_model_refresh_schedule,
|
|
17
33
|
)
|
|
18
34
|
from sempy_labs._graphQL import (
|
|
19
35
|
list_graphql_apis,
|
|
@@ -120,6 +136,7 @@ from sempy_labs._environments import (
|
|
|
120
136
|
create_environment,
|
|
121
137
|
delete_environment,
|
|
122
138
|
publish_environment,
|
|
139
|
+
list_environments,
|
|
123
140
|
)
|
|
124
141
|
from sempy_labs._clear_cache import (
|
|
125
142
|
clear_cache,
|
|
@@ -558,4 +575,14 @@ __all__ = [
|
|
|
558
575
|
"delete_sql_database",
|
|
559
576
|
"list_sql_databases",
|
|
560
577
|
"delta_analyzer_history",
|
|
578
|
+
"query_kusto",
|
|
579
|
+
"query_workspace_monitoring",
|
|
580
|
+
"list_environments",
|
|
581
|
+
"list_tags",
|
|
582
|
+
"list_variable_libraries",
|
|
583
|
+
"delete_variable_library",
|
|
584
|
+
"create_vpax",
|
|
585
|
+
"update_semantic_model_refresh_schedule",
|
|
586
|
+
"apply_tags",
|
|
587
|
+
"unapply_tags",
|
|
561
588
|
]
|
|
@@ -59,6 +59,7 @@ def backup_semantic_model(
|
|
|
59
59
|
allow_overwrite: bool = True,
|
|
60
60
|
apply_compression: bool = True,
|
|
61
61
|
workspace: Optional[str | UUID] = None,
|
|
62
|
+
password: Optional[str] = None,
|
|
62
63
|
):
|
|
63
64
|
"""
|
|
64
65
|
`Backs up <https://learn.microsoft.com/azure/analysis-services/analysis-services-backup>`_ a semantic model to the ADLS Gen2 storage account connected to the workspace.
|
|
@@ -72,6 +73,8 @@ def backup_semantic_model(
|
|
|
72
73
|
Must end in '.abf'.
|
|
73
74
|
Example 1: file_path = 'MyModel.abf'
|
|
74
75
|
Example 2: file_path = 'MyFolder/MyModel.abf'
|
|
76
|
+
password : Optional[str], default=None
|
|
77
|
+
Password to encrypt the backup file. If None, no password is used.
|
|
75
78
|
allow_overwrite : bool, default=True
|
|
76
79
|
If True, overwrites backup files of the same name. If False, the file you are saving cannot have the same name as a file that already exists in the same location.
|
|
77
80
|
apply_compression : bool, default=True
|
|
@@ -99,6 +102,9 @@ def backup_semantic_model(
|
|
|
99
102
|
}
|
|
100
103
|
}
|
|
101
104
|
|
|
105
|
+
if password:
|
|
106
|
+
tmsl["backup"]["password"] = password # Add password only if provided
|
|
107
|
+
|
|
102
108
|
fabric.execute_tmsl(script=tmsl, workspace=workspace_id)
|
|
103
109
|
print(
|
|
104
110
|
f"{icons.green_dot} The '{dataset_name}' semantic model within the '{workspace_name}' workspace has been backed up to the '{file_path}' location."
|
|
@@ -113,6 +119,7 @@ def restore_semantic_model(
|
|
|
113
119
|
ignore_incompatibilities: bool = True,
|
|
114
120
|
force_restore: bool = False,
|
|
115
121
|
workspace: Optional[str | UUID] = None,
|
|
122
|
+
password: Optional[str] = None,
|
|
116
123
|
):
|
|
117
124
|
"""
|
|
118
125
|
`Restores <https://learn.microsoft.com/power-bi/enterprise/service-premium-backup-restore-dataset>`_ a semantic model based on a backup (.abf) file
|
|
@@ -126,6 +133,8 @@ def restore_semantic_model(
|
|
|
126
133
|
The location in which to backup the semantic model. Must end in '.abf'.
|
|
127
134
|
Example 1: file_path = 'MyModel.abf'
|
|
128
135
|
Example 2: file_path = 'MyFolder/MyModel.abf'
|
|
136
|
+
password : Optional[str], default=None
|
|
137
|
+
Password to decrypt the backup file. If None, no password is used.
|
|
129
138
|
allow_overwrite : bool, default=True
|
|
130
139
|
If True, overwrites backup files of the same name. If False, the file you are saving cannot have the same name as a file that already exists in the same location.
|
|
131
140
|
ignore_incompatibilities : bool, default=True
|
|
@@ -155,6 +164,9 @@ def restore_semantic_model(
|
|
|
155
164
|
}
|
|
156
165
|
}
|
|
157
166
|
|
|
167
|
+
if password:
|
|
168
|
+
tmsl["restore"]["password"] = password
|
|
169
|
+
|
|
158
170
|
if force_restore:
|
|
159
171
|
tmsl["restore"]["forceRestore"] = force_restore
|
|
160
172
|
|