semantic-link-labs 0.9.4__py3-none-any.whl → 0.9.6__py3-none-any.whl
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.4.dist-info → semantic_link_labs-0.9.6.dist-info}/METADATA +19 -2
- {semantic_link_labs-0.9.4.dist-info → semantic_link_labs-0.9.6.dist-info}/RECORD +71 -64
- {semantic_link_labs-0.9.4.dist-info → semantic_link_labs-0.9.6.dist-info}/WHEEL +1 -1
- sempy_labs/__init__.py +33 -4
- sempy_labs/_capacities.py +59 -128
- sempy_labs/_capacity_migration.py +19 -21
- sempy_labs/_connections.py +2 -4
- sempy_labs/_dashboards.py +60 -0
- sempy_labs/_data_pipelines.py +5 -31
- sempy_labs/_dataflows.py +2 -2
- sempy_labs/_dax_query_view.py +55 -0
- sempy_labs/_delta_analyzer.py +16 -14
- sempy_labs/_environments.py +28 -49
- sempy_labs/_eventhouses.py +27 -53
- sempy_labs/_eventstreams.py +16 -34
- sempy_labs/_external_data_shares.py +4 -10
- sempy_labs/_gateways.py +4 -4
- sempy_labs/_generate_semantic_model.py +2 -2
- sempy_labs/_git.py +90 -1
- sempy_labs/_graphQL.py +8 -21
- sempy_labs/_helper_functions.py +440 -91
- sempy_labs/_kql_databases.py +24 -35
- sempy_labs/_kql_querysets.py +15 -32
- sempy_labs/_list_functions.py +17 -192
- sempy_labs/_managed_private_endpoints.py +9 -2
- sempy_labs/_mirrored_databases.py +17 -49
- sempy_labs/_ml_experiments.py +6 -31
- sempy_labs/_ml_models.py +4 -28
- sempy_labs/_model_bpa.py +4 -11
- sempy_labs/_model_bpa_bulk.py +23 -27
- sempy_labs/_mounted_data_factories.py +119 -0
- sempy_labs/_notebooks.py +16 -26
- sempy_labs/_one_lake_integration.py +2 -1
- sempy_labs/_semantic_models.py +20 -0
- sempy_labs/_sql.py +13 -8
- sempy_labs/_sqldatabase.py +61 -100
- sempy_labs/_utils.py +42 -0
- sempy_labs/_vertipaq.py +25 -13
- sempy_labs/_warehouses.py +19 -20
- sempy_labs/_workloads.py +23 -9
- sempy_labs/_workspace_identity.py +6 -0
- sempy_labs/_workspaces.py +55 -7
- sempy_labs/admin/__init__.py +21 -1
- sempy_labs/admin/_apps.py +1 -1
- sempy_labs/admin/_artifacts.py +62 -0
- sempy_labs/admin/_basic_functions.py +3 -54
- sempy_labs/admin/_capacities.py +61 -0
- sempy_labs/admin/_reports.py +74 -0
- sempy_labs/admin/_scanner.py +2 -2
- sempy_labs/admin/_shared.py +4 -2
- sempy_labs/admin/_users.py +133 -0
- sempy_labs/admin/_workspaces.py +148 -0
- sempy_labs/directlake/_directlake_schema_compare.py +2 -1
- sempy_labs/directlake/_directlake_schema_sync.py +65 -19
- sempy_labs/directlake/_dl_helper.py +0 -6
- sempy_labs/directlake/_generate_shared_expression.py +10 -11
- sempy_labs/directlake/_guardrails.py +2 -1
- sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py +12 -25
- sempy_labs/directlake/_update_directlake_partition_entity.py +11 -3
- sempy_labs/lakehouse/__init__.py +2 -0
- sempy_labs/lakehouse/_lakehouse.py +6 -7
- sempy_labs/lakehouse/_shortcuts.py +198 -57
- sempy_labs/migration/_migration_validation.py +0 -4
- sempy_labs/report/_download_report.py +4 -6
- sempy_labs/report/_generate_report.py +15 -23
- sempy_labs/report/_report_bpa.py +12 -19
- sempy_labs/report/_report_functions.py +2 -1
- sempy_labs/report/_report_rebind.py +8 -6
- sempy_labs/tom/_model.py +34 -16
- {semantic_link_labs-0.9.4.dist-info → semantic_link_labs-0.9.6.dist-info}/LICENSE +0 -0
- {semantic_link_labs-0.9.4.dist-info → semantic_link_labs-0.9.6.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: semantic-link-labs
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.6
|
|
4
4
|
Summary: Semantic Link Labs for Microsoft Fabric
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License: MIT License
|
|
@@ -26,7 +26,7 @@ Requires-Dist: pytest>=8.2.1; extra == "test"
|
|
|
26
26
|
# Semantic Link Labs
|
|
27
27
|
|
|
28
28
|
[](https://badge.fury.io/py/semantic-link-labs)
|
|
29
|
-
[](https://readthedocs.org/projects/semantic-link-labs/)
|
|
30
30
|
[](https://github.com/psf/black)
|
|
31
31
|
[](https://pepy.tech/project/semantic-link-labs)
|
|
32
32
|
|
|
@@ -34,6 +34,9 @@ Requires-Dist: pytest>=8.2.1; extra == "test"
|
|
|
34
34
|
[Read the documentation on ReadTheDocs!](https://semantic-link-labs.readthedocs.io/en/stable/)
|
|
35
35
|
---
|
|
36
36
|
|
|
37
|
+
[Read the Wiki!](https://github.com/microsoft/semantic-link-labs/wiki)
|
|
38
|
+
---
|
|
39
|
+
|
|
37
40
|
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.
|
|
38
41
|
|
|
39
42
|
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=).
|
|
@@ -145,6 +148,8 @@ An even better way to ensure the semantic-link-labs library is available in your
|
|
|
145
148
|
2. Select your newly created environment within the 'Environment' drop down in the navigation bar at the top of the notebook
|
|
146
149
|
|
|
147
150
|
## Version History
|
|
151
|
+
* [0.9.6](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.6) (March 12, 2025)
|
|
152
|
+
* [0.9.5](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.5) (March 7, 2025)
|
|
148
153
|
* [0.9.4](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.4) (February 27, 2025)
|
|
149
154
|
* [0.9.3](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.3) (February 13, 2025)
|
|
150
155
|
* [0.9.2](https://github.com/microsoft/semantic-link-labs/releases/tag/0.9.2) (February 5, 2025)
|
|
@@ -299,6 +304,18 @@ python -m build
|
|
|
299
304
|
4. Enter details into the description.
|
|
300
305
|
5. Click 'Create'.
|
|
301
306
|
|
|
307
|
+
#### Code Formatting
|
|
308
|
+
We use [black](github.com/psf/black) formatting as a code formatting standard. Make sure to run 'black' formatting on your code before submitting a pull request.
|
|
309
|
+
|
|
310
|
+
Run this code to install black
|
|
311
|
+
```cli
|
|
312
|
+
pip install black
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
Run this code to format your code using black
|
|
316
|
+
```cli
|
|
317
|
+
python -m black src
|
|
318
|
+
```
|
|
302
319
|
|
|
303
320
|
## Trademarks
|
|
304
321
|
|
|
@@ -1,54 +1,58 @@
|
|
|
1
|
-
sempy_labs/__init__.py,sha256=
|
|
1
|
+
sempy_labs/__init__.py,sha256=FVczkUAO4jdRM325pPRwLZ_GZuhPaaEZfxT902JZ7w8,15500
|
|
2
2
|
sempy_labs/_ai.py,sha256=rhVohfwrU1mvWH0EN_vCTnldb8xJNfGHZGba34k1JVw,16174
|
|
3
3
|
sempy_labs/_authentication.py,sha256=GjtN5XqIyWXbR5Ni4hfYiUNwgFa-ySX8e-BrqE1vgGc,6903
|
|
4
|
-
sempy_labs/_capacities.py,sha256=
|
|
5
|
-
sempy_labs/_capacity_migration.py,sha256=
|
|
4
|
+
sempy_labs/_capacities.py,sha256=hoHRWkZ_Gls0bMc8QGO-ZZj9zTOfH9iGvkEgFVCIm2g,40456
|
|
5
|
+
sempy_labs/_capacity_migration.py,sha256=GGIMrHwc7IEVJ9pDwmikXiF2QHu2nYqNyG235QYbmEw,24837
|
|
6
6
|
sempy_labs/_clear_cache.py,sha256=5z73I4Zdr3C0Bd4zyxrQdcGG2VOzsXWukzB_evm4bRs,12731
|
|
7
|
-
sempy_labs/_connections.py,sha256=
|
|
8
|
-
sempy_labs/
|
|
9
|
-
sempy_labs/
|
|
7
|
+
sempy_labs/_connections.py,sha256=Cc3VpQtXUDVpEyn5CVd9lGeZ13Nrdk_E_XrLu4pGRi8,18658
|
|
8
|
+
sempy_labs/_dashboards.py,sha256=cyFD-pUUFu4scGkbitilrI22GW5dTmTkUZ15ou7Bl-A,1880
|
|
9
|
+
sempy_labs/_data_pipelines.py,sha256=cW_WGmuWD4V9IgLprKL4TqFXgid4eTBXvEL3-IArS0w,4817
|
|
10
|
+
sempy_labs/_dataflows.py,sha256=xv-wRDUq4Bzz-BOs1Jdb4bgS9HbPLpa1GqexfA6H0mg,8053
|
|
10
11
|
sempy_labs/_dax.py,sha256=cFaXJUHuG93lYmjq_4CLG6gStvSTtgvJ8NA43TqeW_g,16871
|
|
11
|
-
sempy_labs/
|
|
12
|
+
sempy_labs/_dax_query_view.py,sha256=owOHoU9_yV8deBnSVtEJk-xi-relyTV3wyLGelYiD_E,1853
|
|
13
|
+
sempy_labs/_delta_analyzer.py,sha256=1H2bfB8j8VovdtIOPLztfTIQYCdbfR54wrMW4qO6R-4,17576
|
|
12
14
|
sempy_labs/_deployment_pipelines.py,sha256=SDQYkCAhOAlxBr58jYxtLFOVySiRXO0_WhfOKGDeYZQ,6254
|
|
13
15
|
sempy_labs/_documentation.py,sha256=yVA8VPEzx_fmljtcvSxtB7-BeupYsfdMXXjp6Fpnyo8,5007
|
|
14
|
-
sempy_labs/_environments.py,sha256=
|
|
15
|
-
sempy_labs/_eventhouses.py,sha256=
|
|
16
|
-
sempy_labs/_eventstreams.py,sha256=
|
|
17
|
-
sempy_labs/_external_data_shares.py,sha256=
|
|
18
|
-
sempy_labs/_gateways.py,sha256=
|
|
19
|
-
sempy_labs/_generate_semantic_model.py,sha256=
|
|
20
|
-
sempy_labs/_git.py,sha256=
|
|
21
|
-
sempy_labs/_graphQL.py,sha256=
|
|
22
|
-
sempy_labs/_helper_functions.py,sha256=
|
|
16
|
+
sempy_labs/_environments.py,sha256=5I5gHU68Crs603R00NgGy3RKdr925-X05V5EPkrHFkY,4995
|
|
17
|
+
sempy_labs/_eventhouses.py,sha256=WEf33difBOTGTZGh1QFmY4gv-e43uwO1V54nrsjGGyY,5376
|
|
18
|
+
sempy_labs/_eventstreams.py,sha256=c8nNdRM8eeDOYXd_AtRp7zYHYaqV9p1bI2V0boUrCuA,3492
|
|
19
|
+
sempy_labs/_external_data_shares.py,sha256=s2okFvtCG5FDMbMJ_q6YSlCkVVFiE9sh2imVxZq1woU,6450
|
|
20
|
+
sempy_labs/_gateways.py,sha256=6JE6VeGFPKF617sf2mMkxXVOz57YHI5jAQLAF-BzRLc,17527
|
|
21
|
+
sempy_labs/_generate_semantic_model.py,sha256=5BRdobiNJ035HShCEpEkMPN-KfqVdqzGFuR0HM346mA,18560
|
|
22
|
+
sempy_labs/_git.py,sha256=RyaT4XzrSi-4NLJZWiWZnnNpMgrKzRNxhyY8b1O2I6c,17819
|
|
23
|
+
sempy_labs/_graphQL.py,sha256=truXeIUPRKLwc4skhs3FZYNcKP9FCGKly9en0YkR4NE,2690
|
|
24
|
+
sempy_labs/_helper_functions.py,sha256=CgRxc1_EH-C2SZtJX5xYR69m3nIuiltRZBBXZFz9tgE,60805
|
|
23
25
|
sempy_labs/_icons.py,sha256=ez2dx_LCti71S_-eB6WYQ-kOMyiBL8ZJN12-ev5dcmA,3579
|
|
24
26
|
sempy_labs/_job_scheduler.py,sha256=_-Pifkttk1oPNxewxwWcQ4QC_Hr24GSi6nmrEXwc0pc,15814
|
|
25
|
-
sempy_labs/_kql_databases.py,sha256=
|
|
26
|
-
sempy_labs/_kql_querysets.py,sha256=
|
|
27
|
-
sempy_labs/_list_functions.py,sha256=
|
|
28
|
-
sempy_labs/_managed_private_endpoints.py,sha256=
|
|
29
|
-
sempy_labs/_mirrored_databases.py,sha256
|
|
27
|
+
sempy_labs/_kql_databases.py,sha256=0WVG9oiWgbjgV_oQc4f96QogqitVkbIeCmF_dVeePQE,4212
|
|
28
|
+
sempy_labs/_kql_querysets.py,sha256=Jjcs4SkjeirnDkG6zfsl0KRUXVzMyWii0Yn0JMWwln8,3502
|
|
29
|
+
sempy_labs/_list_functions.py,sha256=HCCJEwi3Q4VXfBXXAUNnYpvuP-CwGSOkN4uCn92TZZU,61842
|
|
30
|
+
sempy_labs/_managed_private_endpoints.py,sha256=Vqicp_EiGg_m8aA2F__gaJiB9cwjbxQOSOi7hkS6FvQ,6907
|
|
31
|
+
sempy_labs/_mirrored_databases.py,sha256=-9ZV2PdPeIc4lvFNkpPMm_9wkGIY1QLZXspYdSev5oQ,13147
|
|
30
32
|
sempy_labs/_mirrored_warehouses.py,sha256=Q3WlRjUwCLz8KW1eN8MiTPeY0P52Vkuz5kgnv4GvQ3k,1739
|
|
31
|
-
sempy_labs/_ml_experiments.py,sha256
|
|
32
|
-
sempy_labs/_ml_models.py,sha256=
|
|
33
|
+
sempy_labs/_ml_experiments.py,sha256=-DA71k91cvrIhAlT5z5CDAL1ygVRsRUDxyJ-5e6fVJs,3375
|
|
34
|
+
sempy_labs/_ml_models.py,sha256=69i67MHn-_Fsq-5slLxxhCF8N2s0JBYn_CDTa1Hhhs0,3261
|
|
33
35
|
sempy_labs/_model_auto_build.py,sha256=PTQo3dufzLSFcQ5shFkmBWAVSdP7cTJgpUclrcXyNbg,5105
|
|
34
|
-
sempy_labs/_model_bpa.py,sha256=
|
|
35
|
-
sempy_labs/_model_bpa_bulk.py,sha256=
|
|
36
|
+
sempy_labs/_model_bpa.py,sha256=AoHshKqn3z2lNPwu1hKntJuCELYe1bLa_0LUzFXRjgs,22032
|
|
37
|
+
sempy_labs/_model_bpa_bulk.py,sha256=SyiIOunbhKiuV8fNnpoFA_D09OtaAdm7tJHUL_Zi7Bo,15758
|
|
36
38
|
sempy_labs/_model_bpa_rules.py,sha256=L3XaK1SThgz3h0uTZZH92IVkWooG5rhqVus-ddnBIHw,45975
|
|
37
39
|
sempy_labs/_model_dependencies.py,sha256=0xGgubrq76zIvBdEqmEX_Pd6WdizXFVECBW6BPl2DZo,13162
|
|
38
|
-
sempy_labs/
|
|
39
|
-
sempy_labs/
|
|
40
|
+
sempy_labs/_mounted_data_factories.py,sha256=-IBxE5XurYyeeQg7BvpXSSR1MW3rRGmue6UGpqlo96U,3906
|
|
41
|
+
sempy_labs/_notebooks.py,sha256=GbyBDay_c4dnPmS32e8qgRrKVb3evi_omSMzq-Xk9z0,8082
|
|
42
|
+
sempy_labs/_one_lake_integration.py,sha256=9ub75-ueEFqn1iRgRd5y97SYujalsWW6ufs1du4PbDs,6303
|
|
40
43
|
sempy_labs/_query_scale_out.py,sha256=nra1q8s-PKpZTlI_L0lMGO1GmdBk6sqETsBQShF1yPY,15352
|
|
41
44
|
sempy_labs/_refresh_semantic_model.py,sha256=4w_uaYLbaZptmEFY7QHWzOgXcgc2ctGx8HQvt2aguxk,17360
|
|
42
|
-
sempy_labs/_semantic_models.py,sha256=
|
|
45
|
+
sempy_labs/_semantic_models.py,sha256=Yh9SfGZSbA9mRROo3wpy9A8sFvvGZZ1VUHjm_Ux4pqk,4455
|
|
43
46
|
sempy_labs/_spark.py,sha256=SuSTjjmtzj7suDgN8Njk_pNBaStDLgIJB_1yk_e2H1Y,19340
|
|
44
|
-
sempy_labs/_sql.py,sha256=
|
|
45
|
-
sempy_labs/_sqldatabase.py,sha256=
|
|
47
|
+
sempy_labs/_sql.py,sha256=s4VMcs1lIn39sYKRnSp6QsdRR3J-84kT_SPCKdwzAyo,8158
|
|
48
|
+
sempy_labs/_sqldatabase.py,sha256=8HV3UtsLiwexmPSjYnhnYnD6xEvgFpTG13jcOuGheuI,6470
|
|
46
49
|
sempy_labs/_translations.py,sha256=i4K2PFk6-TcmAnUpqz-z_GuDv9XEp1cBs0KY-x6ja1w,16168
|
|
47
|
-
sempy_labs/
|
|
48
|
-
sempy_labs/
|
|
49
|
-
sempy_labs/
|
|
50
|
-
sempy_labs/
|
|
51
|
-
sempy_labs/
|
|
50
|
+
sempy_labs/_utils.py,sha256=aKGnUiXSLLRQRXXv8TH_XhGcOtDsnrs0RHmQ6YZMn3o,1786
|
|
51
|
+
sempy_labs/_vertipaq.py,sha256=7nYpOuya5FpnK_OdtJKTQtLD_9iPCIVxhFnpD9P85-E,38556
|
|
52
|
+
sempy_labs/_warehouses.py,sha256=Lk0U4VCT1sMkO5d4QJ5viarTxnLjlB-DhLhORKdaFmE,7297
|
|
53
|
+
sempy_labs/_workloads.py,sha256=ifQ6Jv0_MDzjfu993bU8V7thOdW5kFyp3MjA082rsrE,4687
|
|
54
|
+
sempy_labs/_workspace_identity.py,sha256=plxgcqt2aBXgLpyn1dpHhzh_5Z-gFkLK8RtId2OIX5s,2561
|
|
55
|
+
sempy_labs/_workspaces.py,sha256=wHBR2e5wOhhWN6PiFefSFzYrwvdgMkG0dg2gEpPcZ4o,13090
|
|
52
56
|
sempy_labs/_bpa_translation/_model/_translations_am-ET.po,sha256=zQVjJ-t0vtgIYan-HaXtUVJLB_PJvB53Nf5BNoOReU4,39199
|
|
53
57
|
sempy_labs/_bpa_translation/_model/_translations_ar-AE.po,sha256=QP1PjDLFccLDs9zq456crdAST57wrcWVk5rRiqqoCws,36959
|
|
54
58
|
sempy_labs/_bpa_translation/_model/_translations_bg-BG.po,sha256=sqezjpS3wfk09WD7x27bHoCBtgmqeHtyHNKTwG7-bkI,44132
|
|
@@ -87,42 +91,45 @@ sempy_labs/_bpa_translation/_model/_translations_tr-TR.po,sha256=NdW-X4E0QmeLKM0
|
|
|
87
91
|
sempy_labs/_bpa_translation/_model/_translations_uk-UA.po,sha256=3NsFN8hoor_5L6738FjpJ8o4spwp8FNFGbVItHD-_ec,43500
|
|
88
92
|
sempy_labs/_bpa_translation/_model/_translations_zh-CN.po,sha256=ipMbnet7ZI5mZoC8KonYKVwGmFLHFB_9KIDOoBgSNfo,26815
|
|
89
93
|
sempy_labs/_bpa_translation/_model/_translations_zu-ZA.po,sha256=5v6tVKGruqneAeMoa6F3tyg_JBL8qOpqOJofWpq2W3U,31518
|
|
90
|
-
sempy_labs/admin/__init__.py,sha256=
|
|
94
|
+
sempy_labs/admin/__init__.py,sha256=MIWuLkSdQ4BsHBgRKWMkPi1atDA-bQeUeRhNPW6_IEs,3741
|
|
91
95
|
sempy_labs/admin/_activities.py,sha256=YfISDzhXro9glEa_yJmoYv-2q2M1DIkoyNzgLl7eWuI,6695
|
|
92
|
-
sempy_labs/admin/_apps.py,sha256=
|
|
93
|
-
sempy_labs/admin/
|
|
94
|
-
sempy_labs/admin/
|
|
96
|
+
sempy_labs/admin/_apps.py,sha256=PUEQlXbzVR9u3ZUQUhpfU3J-hfa8A2nTGFBpCqzMdW0,4085
|
|
97
|
+
sempy_labs/admin/_artifacts.py,sha256=eCiNBdgNSUhOsE3i-Y1lp6p6T3is7RZJPy7ctu36oW4,2246
|
|
98
|
+
sempy_labs/admin/_basic_functions.py,sha256=OvQ1X2KQoKFmqLSwnfy9uiSJTI6IUXXy5d7D89Ij5cw,15419
|
|
99
|
+
sempy_labs/admin/_capacities.py,sha256=O-hqtiWWjZC25hOFLnx_PvnH0-m9Ky_hx3_1ubLUkgI,9863
|
|
95
100
|
sempy_labs/admin/_datasets.py,sha256=kMerpBNro--kKdp2rhEKnVe0JDGjMDsxqgfbbw17K-U,6235
|
|
96
101
|
sempy_labs/admin/_domains.py,sha256=Z0EhIJCcujx1NumeqM4eKAvai18p-9TAw1WJaU-cbbE,15076
|
|
97
102
|
sempy_labs/admin/_external_data_share.py,sha256=q4gw5iYZJDH-9xIM6L0b2CU9ebUIdE-ZVrFsulRHyUU,3364
|
|
98
103
|
sempy_labs/admin/_git.py,sha256=gsbDQKd66knCI_Zh8vHSfHK-uQVJjVmhKKvfMMYKZyA,2264
|
|
99
104
|
sempy_labs/admin/_items.py,sha256=zX-eUDyQWiB8mY8Nojj03-_R728JvVIOlp0iEOisnKE,8750
|
|
100
|
-
sempy_labs/admin/_reports.py,sha256=
|
|
101
|
-
sempy_labs/admin/_scanner.py,sha256=
|
|
102
|
-
sempy_labs/admin/_shared.py,sha256=
|
|
105
|
+
sempy_labs/admin/_reports.py,sha256=qkqV53w6XG-eyCrYWSEUG5xm7WARu4y8H5DzibbSHuE,7858
|
|
106
|
+
sempy_labs/admin/_scanner.py,sha256=qBBY_ga9sShOQhkVR6TMobMBfNjwmNA2sGR1GYYSNFA,4425
|
|
107
|
+
sempy_labs/admin/_shared.py,sha256=srgkqttbMbK5XXjOt4zeAV8rMCvK7zEus55HsGtNUFI,3007
|
|
103
108
|
sempy_labs/admin/_tenant.py,sha256=6CrJ8LBz5epst5kmqxbhoc0AmaU5KHZCJ36Hj6mlaVY,19141
|
|
109
|
+
sempy_labs/admin/_users.py,sha256=eEOkgvny3FwMuUrSIBQ0n3JwrzWV_6_nwGc8_c-eXSM,4571
|
|
110
|
+
sempy_labs/admin/_workspaces.py,sha256=XiiO3vyuJxKkVf9ZrW7261wHSBrnd8r7rbia8HGDFkI,4911
|
|
104
111
|
sempy_labs/directlake/__init__.py,sha256=etaj-3wqe5t93mu74tGYjEOQ6gtHWUogidOygiVvlq8,2131
|
|
105
|
-
sempy_labs/directlake/_directlake_schema_compare.py,sha256=
|
|
106
|
-
sempy_labs/directlake/_directlake_schema_sync.py,sha256=
|
|
107
|
-
sempy_labs/directlake/_dl_helper.py,sha256=
|
|
108
|
-
sempy_labs/directlake/_generate_shared_expression.py,sha256=
|
|
112
|
+
sempy_labs/directlake/_directlake_schema_compare.py,sha256=tVc6hIgDxxA7a8V51e5tlzlp3bzVVTqQ_OKsTNxiWG4,5074
|
|
113
|
+
sempy_labs/directlake/_directlake_schema_sync.py,sha256=ipONLkBaXm4WgcMMChAyD4rVushdqdjAQdexT-fJxcY,6573
|
|
114
|
+
sempy_labs/directlake/_dl_helper.py,sha256=HHFy6tW-tSVZ4YHxSHvt6pXrloh0O6Lx7yNmZE7IAI4,10348
|
|
115
|
+
sempy_labs/directlake/_generate_shared_expression.py,sha256=9GyGWy_IXSLMs-J2UXDgHGYNjYgS9-1G4z2PHFRokOw,2862
|
|
109
116
|
sempy_labs/directlake/_get_directlake_lakehouse.py,sha256=e0WFQm4-daJR4K1aHuVaubu7T26yTeBgfNEMOXk-EzM,2392
|
|
110
117
|
sempy_labs/directlake/_get_shared_expression.py,sha256=qc85kXggkx_7Sz_rAAli_yPnLzrGZpgD8IfVbTfZhQM,1133
|
|
111
|
-
sempy_labs/directlake/_guardrails.py,sha256=
|
|
118
|
+
sempy_labs/directlake/_guardrails.py,sha256=wNVXpeiZckgLTly4cS5DU5DoV9x1S4DMxN5S08qAavE,2749
|
|
112
119
|
sempy_labs/directlake/_list_directlake_model_calc_tables.py,sha256=EYT4ELmOZ3Uklzy6uMQMidc4WtBXm21NQqZu1Q5HTsg,2509
|
|
113
120
|
sempy_labs/directlake/_show_unsupported_directlake_objects.py,sha256=nmrZrtDez7U8Ji76i9fxnnTx1zxMu2LCOZTMz4sFUEc,3504
|
|
114
|
-
sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py,sha256=
|
|
115
|
-
sempy_labs/directlake/_update_directlake_partition_entity.py,sha256=
|
|
121
|
+
sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py,sha256=IQ5Pfv_ffvzIJd4jeoQZ8cGerWTxAjGOyclKqsb8-c8,5746
|
|
122
|
+
sempy_labs/directlake/_update_directlake_partition_entity.py,sha256=VzNYQ_Kiqz7TnKwNp7Nfbs0YYF0x6Crx7MeKFKc3C-Y,8988
|
|
116
123
|
sempy_labs/directlake/_warm_cache.py,sha256=xc7gG_OJY1rJYg79ztgcLATpnXHNqFaw-6CU1HgdlXk,9258
|
|
117
124
|
sempy_labs/graph/__init__.py,sha256=AZ_IpOL06VvXrYmgbcrvQlxCxdDksvwXKf7JAGohCNI,620
|
|
118
125
|
sempy_labs/graph/_groups.py,sha256=2axQ__eHNgJfb0ITOjexysz2Tq4AQ7xSejH4zG-QCFc,12531
|
|
119
126
|
sempy_labs/graph/_teams.py,sha256=KTkIHd9XShsAiv1RsmVQpL2XmUVt4p9QyJFMP5evDj4,3050
|
|
120
127
|
sempy_labs/graph/_users.py,sha256=o3bnpjln-K8JDAJQlcjpfgthAHPTT3CiAYzsx-3n6I4,5898
|
|
121
|
-
sempy_labs/lakehouse/__init__.py,sha256=
|
|
128
|
+
sempy_labs/lakehouse/__init__.py,sha256=htZjFvJs3hCUUtMzRHQKbG6JlyC808QmXa_sVrPj0xg,799
|
|
122
129
|
sempy_labs/lakehouse/_get_lakehouse_columns.py,sha256=FWCyJhqqnZg837eK-S5st0xZpxbhxkcS8aTguazxjjY,2685
|
|
123
130
|
sempy_labs/lakehouse/_get_lakehouse_tables.py,sha256=OmgYLNiegc8HwJP7hEPo5JMWFPyDIPSoqewBxsDkucc,8544
|
|
124
|
-
sempy_labs/lakehouse/_lakehouse.py,sha256=
|
|
125
|
-
sempy_labs/lakehouse/_shortcuts.py,sha256=
|
|
131
|
+
sempy_labs/lakehouse/_lakehouse.py,sha256=dzDhBGN2FizREYFMsDsDzGm9cwLln1__OTAV_JV_GPY,8753
|
|
132
|
+
sempy_labs/lakehouse/_shortcuts.py,sha256=jeecQA5EYj_D7OcfQJ1sgE3lcVNprTYxyijmUA2Q6yk,15469
|
|
126
133
|
sempy_labs/migration/__init__.py,sha256=142n01VAqlcx4E0mGGRtUfVOEwAXVdiHI_XprmUm7As,1175
|
|
127
134
|
sempy_labs/migration/_create_pqt_file.py,sha256=eRK0Jz9ZeV_7jV3kNRze0bTAIqxsAZXLKMGE_loKOaY,9677
|
|
128
135
|
sempy_labs/migration/_direct_lake_to_import.py,sha256=uMqvElwkCHMyraP9t2nGNgstRobiHPFo4AMuS60dXyU,2732
|
|
@@ -130,20 +137,20 @@ sempy_labs/migration/_migrate_calctables_to_lakehouse.py,sha256=XzOPphiUmDIgv1ru
|
|
|
130
137
|
sempy_labs/migration/_migrate_calctables_to_semantic_model.py,sha256=Qt4WfmllCtSl-xkWzWWL5sTzi3lQDaJp43lVEXQisVY,6303
|
|
131
138
|
sempy_labs/migration/_migrate_model_objects_to_semantic_model.py,sha256=RD0ttWcBratAzpPKjFF6jpEnZEd6M7m8OfEUFbkInbA,22950
|
|
132
139
|
sempy_labs/migration/_migrate_tables_columns_to_semantic_model.py,sha256=HYi2vn7yYDsBCTAXFTi6UiB86kdSlhQKPdwAt1nTKEE,7169
|
|
133
|
-
sempy_labs/migration/_migration_validation.py,sha256=
|
|
140
|
+
sempy_labs/migration/_migration_validation.py,sha256=AHURrWofb-U-L2Bdu36mcisVXOuZXi6Smgrrs2kjYBM,2650
|
|
134
141
|
sempy_labs/migration/_refresh_calc_tables.py,sha256=W-lYdUZZcoYyLRIpMdpgaz03PEMM6Zf7E1vzT6MmMAE,5516
|
|
135
142
|
sempy_labs/report/_BPAReportTemplate.json,sha256=9Uh-7E6d2ooxQ7j5JRayv_ayEULc7Gzg42kZGKdOqH8,63920
|
|
136
143
|
sempy_labs/report/__init__.py,sha256=wnmjUX3w521OYnQBV3h9EaJs1eFLkIxmjc59VQOC19I,1293
|
|
137
|
-
sempy_labs/report/_download_report.py,sha256=
|
|
144
|
+
sempy_labs/report/_download_report.py,sha256=hCQ2_fSXSCqSUeaNM2Tf9T3MpRofREnDwp_zrfp7iTA,2703
|
|
138
145
|
sempy_labs/report/_export_report.py,sha256=XCMsZzTBMgvQOe3Ltdod7my7_izpmP-3AVH6W5CExPE,10976
|
|
139
|
-
sempy_labs/report/_generate_report.py,sha256=
|
|
146
|
+
sempy_labs/report/_generate_report.py,sha256=ncFo8brgwPkSNF3urROMkIElqO6pcSy9tM6ymHE_UeQ,13868
|
|
140
147
|
sempy_labs/report/_paginated.py,sha256=rsElE0IQ9qxRDuEp6qNF1EcD5XEgfTc7WsWEQsalsuI,2156
|
|
141
|
-
sempy_labs/report/_report_bpa.py,sha256=
|
|
148
|
+
sempy_labs/report/_report_bpa.py,sha256=ClETB8Q41sY1scCuknhpvalvuBaQ9ZwA4QX7F3sPcjc,13596
|
|
142
149
|
sempy_labs/report/_report_bpa_rules.py,sha256=tPVGA0hmE6QMLlWtig7Va7Ksr2yXWl_Lndq--tWWd6w,4959
|
|
143
|
-
sempy_labs/report/_report_functions.py,sha256=
|
|
150
|
+
sempy_labs/report/_report_functions.py,sha256=Y6MGxi_WVW-k1-JK1UlezlKPYqpfGZHYHeex5Oiit-A,19709
|
|
144
151
|
sempy_labs/report/_report_helper.py,sha256=NcdWgFuh1GjDwVPzy6QWwg3ecaJKoWzZdhbxT6hbbdA,10599
|
|
145
152
|
sempy_labs/report/_report_list_functions.py,sha256=K9tMDQKhIZhelHvfMMW0lsxbVHekJ-5dAQveoD7PUDA,3980
|
|
146
|
-
sempy_labs/report/_report_rebind.py,sha256=
|
|
153
|
+
sempy_labs/report/_report_rebind.py,sha256=svyxUSdqgXJW1UDNcb-urJxU9erO3JM72uzmuJUWIT0,5090
|
|
147
154
|
sempy_labs/report/_reportwrapper.py,sha256=gwilmrE_QqWLQankc1rFlbp1_bexbdR5K5pGyx0N3Go,82945
|
|
148
155
|
sempy_labs/report/_bpareporttemplate/.platform,sha256=kWRa6B_KwSYLsvVFDx372mQriQO8v7dJ_YzQV_cfD-Q,303
|
|
149
156
|
sempy_labs/report/_bpareporttemplate/definition.pbir,sha256=bttyHZYKqjA8OBb_cezGlX4H82cDvGZVCl1QB3fij4E,343
|
|
@@ -175,9 +182,9 @@ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visua
|
|
|
175
182
|
sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/page.json,sha256=wBVuNc8S2NaUA0FC708w6stmR2djNZp8nAsHMqesgsc,293
|
|
176
183
|
sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/visuals/ce8532a7e25020271077/visual.json,sha256=mlY6t9OlSe-Y6_QmXJpS1vggU6Y3FjISUKECL8FVSg8,931
|
|
177
184
|
sempy_labs/tom/__init__.py,sha256=Qbs8leW0fjzvWwOjyWK3Hjeehu7IvpB1beASGsi28bk,121
|
|
178
|
-
sempy_labs/tom/_model.py,sha256=
|
|
179
|
-
semantic_link_labs-0.9.
|
|
180
|
-
semantic_link_labs-0.9.
|
|
181
|
-
semantic_link_labs-0.9.
|
|
182
|
-
semantic_link_labs-0.9.
|
|
183
|
-
semantic_link_labs-0.9.
|
|
185
|
+
sempy_labs/tom/_model.py,sha256=uQXCiaym-00LNxGLVEUMb5VyhBXL2Hd59bIGnWtle08,189080
|
|
186
|
+
semantic_link_labs-0.9.6.dist-info/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
|
|
187
|
+
semantic_link_labs-0.9.6.dist-info/METADATA,sha256=iPChIwMy-nN_f_SXFLSC66d0Ig0tPMtdB5E-ClRT5mk,26076
|
|
188
|
+
semantic_link_labs-0.9.6.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
189
|
+
semantic_link_labs-0.9.6.dist-info/top_level.txt,sha256=kiQX1y42Dbein1l3Q8jMUYyRulDjdlc2tMepvtrvixQ,11
|
|
190
|
+
semantic_link_labs-0.9.6.dist-info/RECORD,,
|
sempy_labs/__init__.py
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
|
+
from sempy_labs._dax_query_view import (
|
|
2
|
+
generate_dax_query_view_url,
|
|
3
|
+
)
|
|
4
|
+
from sempy_labs._mounted_data_factories import (
|
|
5
|
+
list_mounted_data_factories,
|
|
6
|
+
get_mounted_data_factory_definition,
|
|
7
|
+
delete_mounted_data_factory,
|
|
8
|
+
)
|
|
9
|
+
|
|
1
10
|
from sempy_labs._semantic_models import (
|
|
2
11
|
get_semantic_model_refresh_schedule,
|
|
3
12
|
enable_semantic_model_scheduled_refresh,
|
|
13
|
+
delete_semantic_model,
|
|
4
14
|
)
|
|
5
15
|
from sempy_labs._graphQL import (
|
|
6
16
|
list_graphql_apis,
|
|
@@ -99,7 +109,7 @@ from sempy_labs._kql_querysets import (
|
|
|
99
109
|
)
|
|
100
110
|
from sempy_labs._kql_databases import (
|
|
101
111
|
list_kql_databases,
|
|
102
|
-
create_kql_database,
|
|
112
|
+
# create_kql_database,
|
|
103
113
|
delete_kql_database,
|
|
104
114
|
)
|
|
105
115
|
from sempy_labs._mirrored_warehouses import list_mirrored_warehouses
|
|
@@ -142,6 +152,7 @@ from sempy_labs._capacities import (
|
|
|
142
152
|
create_or_update_resource_group,
|
|
143
153
|
list_resource_groups,
|
|
144
154
|
get_resource_group,
|
|
155
|
+
list_capacities,
|
|
145
156
|
)
|
|
146
157
|
from sempy_labs._spark import (
|
|
147
158
|
get_spark_settings,
|
|
@@ -159,6 +170,7 @@ from sempy_labs._workspaces import (
|
|
|
159
170
|
assign_workspace_to_capacity,
|
|
160
171
|
unassign_workspace_from_capacity,
|
|
161
172
|
list_workspace_role_assignments,
|
|
173
|
+
delete_workspace,
|
|
162
174
|
)
|
|
163
175
|
from sempy_labs._notebooks import (
|
|
164
176
|
get_notebook_definition,
|
|
@@ -174,6 +186,9 @@ from sempy_labs._sql import (
|
|
|
174
186
|
from sempy_labs._sqldatabase import (
|
|
175
187
|
get_sql_database_columns,
|
|
176
188
|
get_sql_database_tables,
|
|
189
|
+
create_sql_database,
|
|
190
|
+
delete_sql_database,
|
|
191
|
+
list_sql_databases,
|
|
177
192
|
)
|
|
178
193
|
from sempy_labs._workspace_identity import (
|
|
179
194
|
provision_workspace_identity,
|
|
@@ -193,6 +208,8 @@ from sempy_labs._git import (
|
|
|
193
208
|
connect_workspace_to_azure_dev_ops,
|
|
194
209
|
connect_workspace_to_github,
|
|
195
210
|
disconnect_workspace_from_git,
|
|
211
|
+
get_my_git_credentials,
|
|
212
|
+
update_my_git_credentials,
|
|
196
213
|
)
|
|
197
214
|
from sempy_labs._dataflows import (
|
|
198
215
|
list_dataflow_storage_accounts,
|
|
@@ -226,6 +243,9 @@ from sempy_labs._generate_semantic_model import (
|
|
|
226
243
|
update_semantic_model_from_bim,
|
|
227
244
|
get_semantic_model_definition,
|
|
228
245
|
)
|
|
246
|
+
from sempy_labs._dashboards import (
|
|
247
|
+
list_dashboards,
|
|
248
|
+
)
|
|
229
249
|
from sempy_labs._list_functions import (
|
|
230
250
|
list_reports_using_semantic_model,
|
|
231
251
|
list_semantic_model_object_report_usage,
|
|
@@ -233,8 +253,6 @@ from sempy_labs._list_functions import (
|
|
|
233
253
|
list_semantic_model_objects,
|
|
234
254
|
list_shortcuts,
|
|
235
255
|
get_object_level_security,
|
|
236
|
-
list_capacities,
|
|
237
|
-
list_dashboards,
|
|
238
256
|
list_datamarts,
|
|
239
257
|
list_lakehouses,
|
|
240
258
|
list_sql_endpoints,
|
|
@@ -425,7 +443,7 @@ __all__ = [
|
|
|
425
443
|
"convert_to_friendly_case",
|
|
426
444
|
"list_mirrored_warehouses",
|
|
427
445
|
"list_kql_databases",
|
|
428
|
-
"create_kql_database",
|
|
446
|
+
# "create_kql_database",
|
|
429
447
|
"delete_kql_database",
|
|
430
448
|
"create_eventhouse",
|
|
431
449
|
"list_eventhouses",
|
|
@@ -525,4 +543,15 @@ __all__ = [
|
|
|
525
543
|
"create_item_schedule_cron",
|
|
526
544
|
"create_item_schedule_daily",
|
|
527
545
|
"create_item_schedule_weekly",
|
|
546
|
+
"get_my_git_credentials",
|
|
547
|
+
"update_my_git_credentials",
|
|
548
|
+
"list_mounted_data_factories",
|
|
549
|
+
"get_mounted_data_factory_definition",
|
|
550
|
+
"delete_mounted_data_factory",
|
|
551
|
+
"generate_dax_query_view_url",
|
|
552
|
+
"delete_semantic_model",
|
|
553
|
+
"delete_workspace",
|
|
554
|
+
"create_sql_database",
|
|
555
|
+
"delete_sql_database",
|
|
556
|
+
"list_sql_databases",
|
|
528
557
|
]
|