semantic-link-labs 0.11.1__py3-none-any.whl → 0.11.3__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.

Files changed (137) hide show
  1. {semantic_link_labs-0.11.1.dist-info → semantic_link_labs-0.11.3.dist-info}/METADATA +7 -6
  2. semantic_link_labs-0.11.3.dist-info/RECORD +212 -0
  3. sempy_labs/__init__.py +65 -71
  4. sempy_labs/_a_lib_info.py +1 -1
  5. sempy_labs/_ai.py +1 -1
  6. sempy_labs/_capacities.py +2 -2
  7. sempy_labs/_capacity_migration.py +5 -5
  8. sempy_labs/_clear_cache.py +1 -1
  9. sempy_labs/_connections.py +2 -2
  10. sempy_labs/_dashboards.py +16 -16
  11. sempy_labs/_data_pipelines.py +1 -1
  12. sempy_labs/_dataflows.py +101 -26
  13. sempy_labs/_dax.py +3 -3
  14. sempy_labs/_delta_analyzer.py +4 -4
  15. sempy_labs/_delta_analyzer_history.py +1 -1
  16. sempy_labs/_deployment_pipelines.py +1 -1
  17. sempy_labs/_environments.py +22 -21
  18. sempy_labs/_eventhouses.py +12 -11
  19. sempy_labs/_eventstreams.py +12 -11
  20. sempy_labs/_external_data_shares.py +78 -23
  21. sempy_labs/_gateways.py +47 -45
  22. sempy_labs/_generate_semantic_model.py +3 -3
  23. sempy_labs/_git.py +1 -1
  24. sempy_labs/_graphQL.py +12 -11
  25. sempy_labs/_helper_functions.py +169 -5
  26. sempy_labs/_job_scheduler.py +56 -54
  27. sempy_labs/_kql_databases.py +16 -17
  28. sempy_labs/_kql_querysets.py +12 -11
  29. sempy_labs/_kusto.py +2 -2
  30. sempy_labs/_labels.py +126 -0
  31. sempy_labs/_list_functions.py +2 -2
  32. sempy_labs/_managed_private_endpoints.py +18 -15
  33. sempy_labs/_mirrored_databases.py +16 -15
  34. sempy_labs/_mirrored_warehouses.py +12 -11
  35. sempy_labs/_ml_experiments.py +11 -10
  36. sempy_labs/_model_auto_build.py +3 -3
  37. sempy_labs/_model_bpa.py +5 -5
  38. sempy_labs/_model_bpa_bulk.py +3 -3
  39. sempy_labs/_model_dependencies.py +1 -1
  40. sempy_labs/_mounted_data_factories.py +12 -12
  41. sempy_labs/_notebooks.py +151 -2
  42. sempy_labs/_one_lake_integration.py +1 -1
  43. sempy_labs/_query_scale_out.py +1 -1
  44. sempy_labs/_refresh_semantic_model.py +1 -1
  45. sempy_labs/_semantic_models.py +30 -28
  46. sempy_labs/_spark.py +1 -1
  47. sempy_labs/_sql.py +1 -1
  48. sempy_labs/_sql_endpoints.py +12 -11
  49. sempy_labs/_sqldatabase.py +15 -15
  50. sempy_labs/_tags.py +11 -10
  51. sempy_labs/_translations.py +1 -1
  52. sempy_labs/_user_delegation_key.py +2 -2
  53. sempy_labs/_vertipaq.py +3 -3
  54. sempy_labs/_vpax.py +1 -1
  55. sempy_labs/_warehouses.py +15 -14
  56. sempy_labs/_workloads.py +1 -1
  57. sempy_labs/_workspace_identity.py +1 -1
  58. sempy_labs/_workspaces.py +14 -13
  59. sempy_labs/admin/__init__.py +18 -18
  60. sempy_labs/admin/_activities.py +46 -46
  61. sempy_labs/admin/_apps.py +28 -26
  62. sempy_labs/admin/_artifacts.py +15 -15
  63. sempy_labs/admin/_basic_functions.py +1 -2
  64. sempy_labs/admin/_capacities.py +84 -82
  65. sempy_labs/admin/_dataflows.py +2 -2
  66. sempy_labs/admin/_datasets.py +50 -48
  67. sempy_labs/admin/_domains.py +25 -19
  68. sempy_labs/admin/_external_data_share.py +24 -22
  69. sempy_labs/admin/_git.py +17 -17
  70. sempy_labs/admin/_items.py +47 -45
  71. sempy_labs/admin/_reports.py +61 -58
  72. sempy_labs/admin/_scanner.py +2 -2
  73. sempy_labs/admin/_shared.py +18 -18
  74. sempy_labs/admin/_tags.py +2 -2
  75. sempy_labs/admin/_tenant.py +57 -51
  76. sempy_labs/admin/_users.py +16 -15
  77. sempy_labs/admin/_workspaces.py +2 -2
  78. sempy_labs/directlake/__init__.py +12 -12
  79. sempy_labs/directlake/_directlake_schema_compare.py +3 -3
  80. sempy_labs/directlake/_directlake_schema_sync.py +9 -7
  81. sempy_labs/directlake/_dl_helper.py +5 -2
  82. sempy_labs/directlake/_generate_shared_expression.py +1 -1
  83. sempy_labs/directlake/_get_directlake_lakehouse.py +1 -1
  84. sempy_labs/directlake/_guardrails.py +1 -1
  85. sempy_labs/directlake/_list_directlake_model_calc_tables.py +3 -3
  86. sempy_labs/directlake/_show_unsupported_directlake_objects.py +1 -1
  87. sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py +3 -3
  88. sempy_labs/directlake/_update_directlake_partition_entity.py +4 -4
  89. sempy_labs/directlake/_warm_cache.py +3 -3
  90. sempy_labs/graph/__init__.py +3 -3
  91. sempy_labs/graph/_groups.py +81 -78
  92. sempy_labs/graph/_teams.py +21 -21
  93. sempy_labs/graph/_users.py +109 -10
  94. sempy_labs/lakehouse/__init__.py +7 -7
  95. sempy_labs/lakehouse/_blobs.py +30 -30
  96. sempy_labs/lakehouse/_get_lakehouse_columns.py +2 -2
  97. sempy_labs/lakehouse/_get_lakehouse_tables.py +29 -27
  98. sempy_labs/lakehouse/_helper.py +38 -1
  99. sempy_labs/lakehouse/_lakehouse.py +16 -7
  100. sempy_labs/lakehouse/_livy_sessions.py +47 -42
  101. sempy_labs/lakehouse/_shortcuts.py +22 -21
  102. sempy_labs/migration/__init__.py +8 -8
  103. sempy_labs/migration/_create_pqt_file.py +2 -2
  104. sempy_labs/migration/_migrate_calctables_to_lakehouse.py +35 -44
  105. sempy_labs/migration/_migrate_calctables_to_semantic_model.py +9 -20
  106. sempy_labs/migration/_migrate_model_objects_to_semantic_model.py +5 -9
  107. sempy_labs/migration/_migrate_tables_columns_to_semantic_model.py +11 -20
  108. sempy_labs/migration/_migration_validation.py +1 -2
  109. sempy_labs/migration/_refresh_calc_tables.py +2 -2
  110. sempy_labs/mirrored_azure_databricks_catalog/__init__.py +2 -2
  111. sempy_labs/mirrored_azure_databricks_catalog/_discover.py +40 -40
  112. sempy_labs/mirrored_azure_databricks_catalog/_refresh_catalog_metadata.py +1 -1
  113. sempy_labs/ml_model/__init__.py +23 -0
  114. sempy_labs/ml_model/_functions.py +427 -0
  115. sempy_labs/report/__init__.py +10 -10
  116. sempy_labs/report/_download_report.py +2 -2
  117. sempy_labs/report/_export_report.py +2 -2
  118. sempy_labs/report/_generate_report.py +1 -1
  119. sempy_labs/report/_paginated.py +1 -1
  120. sempy_labs/report/_report_bpa.py +4 -3
  121. sempy_labs/report/_report_functions.py +3 -3
  122. sempy_labs/report/_report_list_functions.py +3 -3
  123. sempy_labs/report/_report_rebind.py +1 -1
  124. sempy_labs/report/_reportwrapper.py +248 -250
  125. sempy_labs/report/_save_report.py +3 -3
  126. sempy_labs/theme/_org_themes.py +19 -6
  127. sempy_labs/tom/__init__.py +1 -1
  128. sempy_labs/tom/_model.py +13 -8
  129. sempy_labs/variable_library/__init__.py +19 -0
  130. sempy_labs/variable_library/_functions.py +403 -0
  131. semantic_link_labs-0.11.1.dist-info/RECORD +0 -210
  132. sempy_labs/_dax_query_view.py +0 -57
  133. sempy_labs/_ml_models.py +0 -110
  134. sempy_labs/_variable_libraries.py +0 -91
  135. {semantic_link_labs-0.11.1.dist-info → semantic_link_labs-0.11.3.dist-info}/WHEEL +0 -0
  136. {semantic_link_labs-0.11.1.dist-info → semantic_link_labs-0.11.3.dist-info}/licenses/LICENSE +0 -0
  137. {semantic_link_labs-0.11.1.dist-info → semantic_link_labs-0.11.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: semantic-link-labs
3
- Version: 0.11.1
3
+ Version: 0.11.3
4
4
  Summary: Semantic Link Labs for Microsoft Fabric
5
5
  Author: Microsoft Corporation
6
6
  License: MIT License
@@ -15,9 +15,8 @@ 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.11.0
18
+ Requires-Dist: semantic-link-sempy>=0.11.1
19
19
  Requires-Dist: anytree
20
- Requires-Dist: powerbiclient
21
20
  Requires-Dist: polib
22
21
  Requires-Dist: jsonpath_ng
23
22
  Provides-Extra: test
@@ -27,7 +26,7 @@ Dynamic: license-file
27
26
  # Semantic Link Labs
28
27
 
29
28
  [![PyPI version](https://badge.fury.io/py/semantic-link-labs.svg)](https://badge.fury.io/py/semantic-link-labs)
30
- [![Read The Docs](https://readthedocs.org/projects/semantic-link-labs/badge/?version=0.11.1&style=flat)](https://readthedocs.org/projects/semantic-link-labs/)
29
+ [![Read The Docs](https://readthedocs.org/projects/semantic-link-labs/badge/?version=0.11.3&style=flat)](https://readthedocs.org/projects/semantic-link-labs/)
31
30
  [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
32
31
  [![Downloads](https://static.pepy.tech/badge/semantic-link-labs)](https://pepy.tech/project/semantic-link-labs)
33
32
 
@@ -129,7 +128,7 @@ for file_name, file_url in notebook_files.items():
129
128
  import sempy_labs as labs
130
129
  import sempy_labs.lakehouse as lake
131
130
  import sempy_labs.report as rep
132
- from sempy_labs import migration, directlake, admin, graph, theme, mirrored_azure_databricks_catalog
131
+ from sempy_labs import migration, directlake, admin, graph, theme, mirrored_azure_databricks_catalog, ml_model, variable_library
133
132
  from sempy_labs.tom import connect_semantic_model
134
133
  from sempy_labs.report import connect_report
135
134
  ```
@@ -155,7 +154,9 @@ An even better way to ensure the semantic-link-labs library is available in your
155
154
  2. Select your newly created environment within the 'Environment' drop down in the navigation bar at the top of the notebook
156
155
 
157
156
  ## Version History
158
- * [0.11.1](https://github.com/microsoft/semantic-link-labs/releases/tag/0.11.1) (June 23, 2025)
157
+ * [0.11.3](https://github.com/microsoft/semantic-link-labs/releases/tag/0.11.3) (August 6, 2025)
158
+ * [0.11.2](https://github.com/microsoft/semantic-link-labs/releases/tag/0.11.2) (July 8, 2025)
159
+ * [0.11.1](https://github.com/microsoft/semantic-link-labs/releases/tag/0.11.1) (June 24, 2025)
159
160
  * [0.11.0](https://github.com/microsoft/semantic-link-labs/releases/tag/0.11.0) (June 23, 2025)
160
161
  * [0.10.1](https://github.com/microsoft/semantic-link-labs/releases/tag/0.10.1) (June 10, 2025)
161
162
  * [0.10.0](https://github.com/microsoft/semantic-link-labs/releases/tag/0.10.0) (May 30, 2025)
@@ -0,0 +1,212 @@
1
+ semantic_link_labs-0.11.3.dist-info/licenses/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
2
+ sempy_labs/__init__.py,sha256=1XV5tHtRTI45Jwmn4YDI2PTwc36c46bdtCZl1oEwymw,15940
3
+ sempy_labs/_a_lib_info.py,sha256=JoUvoiyW1DCzOuvpwzUxE9orjhsXBfeQMKvbWDpcdgM,53
4
+ sempy_labs/_ai.py,sha256=fiI3RCadJ2jG15vZIWD9rKVhvmGWoD9uth9-PlSPBNs,16196
5
+ sempy_labs/_authentication.py,sha256=GjtN5XqIyWXbR5Ni4hfYiUNwgFa-ySX8e-BrqE1vgGc,6903
6
+ sempy_labs/_capacities.py,sha256=KSm7OKkv8AvkGeH1e_U22hit7LRTCdWf00MdtY9J6f8,40416
7
+ sempy_labs/_capacity_migration.py,sha256=gPPcRb8UE5lgAkseSZl2mv0JMyS4cQciGIcgh9MMFk4,24787
8
+ sempy_labs/_clear_cache.py,sha256=PyDESIeMzqGG3Vac9blZzt00bR1aNt2gPLxIWb0JMqY,13191
9
+ sempy_labs/_connections.py,sha256=IZOgwsKvdx8FwvwEXCQddvxWzTK2iZYVVzdufd6cjIo,18722
10
+ sempy_labs/_dashboards.py,sha256=_4_3c22F2u652NwxhQ3eJayVkslYu4-RWMwIIp0DRYs,1942
11
+ sempy_labs/_data_pipelines.py,sha256=ZskrozWywbb-KHuf7Ku3DR1X_LVfgvkKPr_SiLF6KL8,4861
12
+ sempy_labs/_dataflows.py,sha256=cJtvWFMj3hFKdIVHOK-EREo3DjQGDI9mWZ3fX1ChlyA,20368
13
+ sempy_labs/_dax.py,sha256=Nlm88FpXMJapBcyUQBBwLxBdRzEHGqI3xMZnSqWAEb4,17189
14
+ sempy_labs/_daxformatter.py,sha256=A2jTg9kSAye_LuIsCYmaYq5EbInAMfbDylHrERGB3Cs,3037
15
+ sempy_labs/_delta_analyzer.py,sha256=TxfSxdOw7PYLWIBPkdvsIDJO61nNtcpYmtvtrr83sDA,17241
16
+ sempy_labs/_delta_analyzer_history.py,sha256=wwA9UNzFVsIpsUUy9zD50AaarA-wBY_hnpC3-Db4VTU,10883
17
+ sempy_labs/_deployment_pipelines.py,sha256=SnQw-kPMAxt1VxvsnbO148iwjVhbj5kazWVFWDLzjmc,6293
18
+ sempy_labs/_dictionary_diffs.py,sha256=DCXuASmt45gshsBO1FgSZDqxm68DnojuDcO-H35EH7Q,9003
19
+ sempy_labs/_documentation.py,sha256=_TzhSYzGBVZYPaHm34T8dtTCbc_t4Mx45EzQKwD048g,5051
20
+ sempy_labs/_environments.py,sha256=35-uxuKL2NqOgBRJ_l5_Eat_lNZJSR8fqryliiH7-G0,5974
21
+ sempy_labs/_eventhouses.py,sha256=8jhTKNX6BFJEkeupvwA9RhH9KdQij3-kdBMCS1Bp64M,5397
22
+ sempy_labs/_eventstreams.py,sha256=XaGlWzWKJVPhrQ1xUNsuPyJOQFJyrcvJTXbEtQddGfk,3546
23
+ sempy_labs/_external_data_shares.py,sha256=xoP9zKpIBIe_m2TYawuwRFIji-DVBMn9pbmjUTuo2Sc,8935
24
+ sempy_labs/_gateways.py,sha256=j0xgOukiv-_ARF413-38lGy4mD8t9DTPAcrLpBk340I,17814
25
+ sempy_labs/_generate_semantic_model.py,sha256=brw0nahfWLPGxk2G7osVGeSzMObdI2UoHJreQmlx0Bc,18399
26
+ sempy_labs/_git.py,sha256=3ip_tWHrJgnr0o_odfG5tlnIKeHJF4F1iLgS3fCyj6w,17893
27
+ sempy_labs/_graphQL.py,sha256=rkYvNXYgg94EZbIHyOY4Z1lOOSQP8g7sdubA11RngeI,2739
28
+ sempy_labs/_helper_functions.py,sha256=oR8FiOnwIvzB6IsX1EdLd_e5I6FqZAcI6E0OAb_Digo,80937
29
+ sempy_labs/_icons.py,sha256=SB9EQeoFCfD4bO6fcYuJOoPRSYenSrW0rI9G5RFsH28,3579
30
+ sempy_labs/_job_scheduler.py,sha256=uUsxxPujJQdoHDB122DxCkEuHmQAlkYG7-LPM1pm0vY,17198
31
+ sempy_labs/_kql_databases.py,sha256=UDUSM7NELKPUcbL43YhOW6D9cQVg2Ko9TT-_DBvyZDE,4786
32
+ sempy_labs/_kql_querysets.py,sha256=FmtWRxtuw65Pu5h1qE3S-JqvWEQfCSUsQvH2VOIt8P0,3556
33
+ sempy_labs/_kusto.py,sha256=p8zIlpdDoUWrLeq0fpoqreEsXKD3c0fklz1G3dnJRnU,4524
34
+ sempy_labs/_labels.py,sha256=UfGUSicESu5uhBzRsrIRiKtZoVH3lPo_rlbYClKP8X0,3770
35
+ sempy_labs/_list_functions.py,sha256=Dm8sZjXnbUOF-zQanCTGimVdATo2GWttXNJSyen9sCk,59814
36
+ sempy_labs/_managed_private_endpoints.py,sha256=1IVbrvo51qRaTAHyl7NwBX0kDEWD4hygF78oA6KGs8k,7058
37
+ sempy_labs/_mirrored_databases.py,sha256=dpn2NWQI9FcJNPLxOOuOHTpGco4mTiHiDPz69D6ANK0,13269
38
+ sempy_labs/_mirrored_warehouses.py,sha256=uW0s-pUA0btvSsFfBkAjv2pbCQJKBkTGq2czMJrMN8g,1783
39
+ sempy_labs/_ml_experiments.py,sha256=KXjqJ3hBXw6vvMLNHvhH2Y44Co2CapNsTbP9A6TExGE,3429
40
+ sempy_labs/_model_auto_build.py,sha256=LpeRDY-L3b8LxvxmbUXZGDfzlqcs84rAPePf9XgJ0yE,5075
41
+ sempy_labs/_model_bpa.py,sha256=BTet6zRYehlDLYlt-wvfT-2J_cvhNZen5IKIsM5bcJo,21982
42
+ sempy_labs/_model_bpa_bulk.py,sha256=N13FsCqDu3PrY1Jd7GnBM5mesoEwAohB0vhXnePIKZ4,15815
43
+ sempy_labs/_model_bpa_rules.py,sha256=SZKUHEsWzvivpNQK28zkmaJ1Z16o6_XdQPcpwxznPTg,46299
44
+ sempy_labs/_model_dependencies.py,sha256=MYig8VyWZRVn36teWcNrKFNfMnwIIB-W2drVKYaiHAg,13152
45
+ sempy_labs/_mounted_data_factories.py,sha256=8-Rzvjv7DO3W0VkiL1__cRCgO3bk62Ui1QH34QNd7i0,3912
46
+ sempy_labs/_notebooks.py,sha256=M-GDK802I_RgmRyHfmxssXJHfpOgyXmPt2oNU0k6wmE,14389
47
+ sempy_labs/_one_lake_integration.py,sha256=aThg8Fcei9qTFUTzg2Qwsn-3deTk0ICTCXx53Y23oso,6293
48
+ sempy_labs/_query_scale_out.py,sha256=1VDwf-W47RXXxxf45FTzH7bjZvY8XPbMj-ONtd2j2MQ,15342
49
+ sempy_labs/_refresh_semantic_model.py,sha256=PiWPRlWqkXCBiaNLBbh2163zvMbXJzJClCTUMIIVkLM,17355
50
+ sempy_labs/_semantic_models.py,sha256=FljaFmtPP4AG6jJVxpFWr4Zk22VKXWlOEBJLNn4FyKg,11666
51
+ sempy_labs/_spark.py,sha256=MyVTPsTMVM-_4A8NyTtHF1-y65zWJR2slDtluP_WyCg,19394
52
+ sempy_labs/_sql.py,sha256=e-dg7xyYMu79Xpx0EKb-JptT03UvdKaWytWCkMcPKlY,8271
53
+ sempy_labs/_sql_endpoints.py,sha256=Pu29rPV-t5WnOI34KFut7faskAn0QCI_aTUsfxxdUu4,6581
54
+ sempy_labs/_sqldatabase.py,sha256=DiRQL_h9TQmTGKnWhvtlLsz68rmXkL7J-9ly1Rcx9Us,6548
55
+ sempy_labs/_tags.py,sha256=0Rw9lzLD2zhl-gJFAoGL-8tDaPKjOnIs0UIP4gs2ng8,5712
56
+ sempy_labs/_translations.py,sha256=incxaW8U3jDYO6rCgASlgtScRN1wGwh14nW2Rmanl48,16158
57
+ sempy_labs/_user_delegation_key.py,sha256=Jw8I8KNWlcKHo-mWkGPdM2QY37nsgjzgp-yhPH2yz8U,1433
58
+ sempy_labs/_utils.py,sha256=aKGnUiXSLLRQRXXv8TH_XhGcOtDsnrs0RHmQ6YZMn3o,1786
59
+ sempy_labs/_vertipaq.py,sha256=3Qg9sSBq_jxeoYv01T_V0m7bncJeCQi3-s5TZSuRODo,38506
60
+ sempy_labs/_vpax.py,sha256=7kP0VExTpx5PKiqA0lHr3ud-TmXUk_Li1hXDyNKTlE8,15461
61
+ sempy_labs/_warehouses.py,sha256=8irFySpXN0MDcEHnUQodIvQUfZLRmcKzcRHqbvZSUzs,7400
62
+ sempy_labs/_workloads.py,sha256=G85SI7htzYWgvJjdPkRAvUHacsEyhbnM4v_Jl8d3JJY,4721
63
+ sempy_labs/_workspace_identity.py,sha256=RUSkL3bxIUCuPJ5HoGfKsjKZEUVO23-F-nFq-lzaJGc,2595
64
+ sempy_labs/_workspaces.py,sha256=nFpFVCw1FmI75M6Vva2_2LiwJLR202m7QX5958D4YdY,13213
65
+ sempy_labs/_bpa_translation/_model/_translations_am-ET.po,sha256=zQVjJ-t0vtgIYan-HaXtUVJLB_PJvB53Nf5BNoOReU4,39199
66
+ sempy_labs/_bpa_translation/_model/_translations_ar-AE.po,sha256=QP1PjDLFccLDs9zq456crdAST57wrcWVk5rRiqqoCws,36959
67
+ sempy_labs/_bpa_translation/_model/_translations_bg-BG.po,sha256=sqezjpS3wfk09WD7x27bHoCBtgmqeHtyHNKTwG7-bkI,44132
68
+ sempy_labs/_bpa_translation/_model/_translations_ca-ES.po,sha256=nDqyYrt6vn8jhSNZqP-9PxVqOZ4PEiUUmU1YeuJ4WWM,31715
69
+ sempy_labs/_bpa_translation/_model/_translations_cs-CZ.po,sha256=XPXlZl6n3wBvci0q-vcToymkAC5TQs07pt_2Ab_ewz8,31486
70
+ sempy_labs/_bpa_translation/_model/_translations_da-DK.po,sha256=z3Xh3AqqhZa9bHXRlgY8CXx38f-6_7F5uDk-TLhTJRY,30457
71
+ sempy_labs/_bpa_translation/_model/_translations_de-DE.po,sha256=2EKZNJtgkkHG1LiO0po0RHWvHyvBtQy0ez1S8fFdomU,32938
72
+ sempy_labs/_bpa_translation/_model/_translations_el-GR.po,sha256=NicANPu_UyMQF9DO3DJ5-3q6iXEGW2vrWOUV3RxAWOE,46360
73
+ sempy_labs/_bpa_translation/_model/_translations_es-ES.po,sha256=1sj2DImOaRhFNkim6eHG1rOkgDKH4B6LSZrpLGdveh0,31990
74
+ sempy_labs/_bpa_translation/_model/_translations_fa-IR.po,sha256=5cniRIIvvXX1aFkOj5oA2Qz1vhzjFSPtRjw84HElPlg,38965
75
+ sempy_labs/_bpa_translation/_model/_translations_fi-FI.po,sha256=1-sPLQ4IfqsMuS7VSgEYV2ZJ7Un01C8eBMDijHd7tkA,30972
76
+ sempy_labs/_bpa_translation/_model/_translations_fr-FR.po,sha256=s4EWtTFfs1G1pdM1NIllJTZT5aVa-NklwEtd8j88Ql8,33622
77
+ sempy_labs/_bpa_translation/_model/_translations_ga-IE.po,sha256=BNNWV2bRNCxPXDznNVxbC7et7AOPsLMv-0DnH8hUNoc,32745
78
+ sempy_labs/_bpa_translation/_model/_translations_he-IL.po,sha256=laHvv5j-fCBnaK_iO90V2jnzA3TtktRJG-ZjV2QoS40,35601
79
+ sempy_labs/_bpa_translation/_model/_translations_hi-IN.po,sha256=0OCI1-EEVTarKxInIpLL7MhqCeUff2MkF4Ay23GA_N0,52583
80
+ sempy_labs/_bpa_translation/_model/_translations_hu-HU.po,sha256=UKSx3RCxpKX44sKUPepy2SXkN6K2CdNYfs35vtot5a0,32892
81
+ sempy_labs/_bpa_translation/_model/_translations_id-ID.po,sha256=U_rAOHQRug6VoBeQMdPtQHvC1Aw9ZQ3Lm0lx8hMLWhI,30373
82
+ sempy_labs/_bpa_translation/_model/_translations_is-IS.po,sha256=bg8alqxzg7CCu-bKh1U9L37rpgq5bsQdNs4bdkWNCuo,30850
83
+ sempy_labs/_bpa_translation/_model/_translations_it-IT.po,sha256=AIX6etBfKeuViAm07lp5zCaa307PYQEABtwtRgMEob8,32714
84
+ sempy_labs/_bpa_translation/_model/_translations_ja-JP.po,sha256=gmp1GMJiWBh8uMjsI6ssFO2Z0tfRYZKOjkRISsl2_oU,35515
85
+ sempy_labs/_bpa_translation/_model/_translations_ko-KR.po,sha256=mriTo9wTVUYXKPvyUlEOQXjEyk8WvTrGpn-giG0K8RU,31536
86
+ sempy_labs/_bpa_translation/_model/_translations_mt-MT.po,sha256=evcU-RWda5eEDPCx03vDga4XK-RgQ7kGslpwpibCsA8,32404
87
+ sempy_labs/_bpa_translation/_model/_translations_nl-NL.po,sha256=TRl73cUvRsS_rU3YlYazNdqqp6cXN4oLpGy179PB5sc,32114
88
+ sempy_labs/_bpa_translation/_model/_translations_pl-PL.po,sha256=9F8gQRSQJ2LqBqWrEtS9owTzk6cQQ2t4Y9YSq5js_H4,32365
89
+ sempy_labs/_bpa_translation/_model/_translations_pt-BR.po,sha256=i4_NEdBEl-KkGtD0S_XSJ1RTK83raBOoJEVFNoLUOHI,31547
90
+ sempy_labs/_bpa_translation/_model/_translations_pt-PT.po,sha256=R62JMSclCp4LTxt9gnkHW35OVxfdIahkjjbypkVALSc,31478
91
+ sempy_labs/_bpa_translation/_model/_translations_ro-RO.po,sha256=N0wx6LFI96YARRx9cBFHUfM4jat6W0gGTaUkTsHDGeY,32504
92
+ sempy_labs/_bpa_translation/_model/_translations_ru-RU.po,sha256=Qg6rf8uXJceQzbbEDIPVkd2sYkV1I3C29ewIrp5AOk8,44205
93
+ sempy_labs/_bpa_translation/_model/_translations_sk-SK.po,sha256=wn7cMTW0CmdembIO3vbEk_MC2p96ZGA2OL7giYGudvo,31465
94
+ sempy_labs/_bpa_translation/_model/_translations_sl-SL.po,sha256=Oz4vo_J--RaYHy-Vgu8LYxU0jsM0LnXLyuctMSzeCu0,30646
95
+ sempy_labs/_bpa_translation/_model/_translations_sv-SE.po,sha256=430zBBJW9WpvSYxHbBIReJXh8mqZRK7Sx56KVm5h9Zs,30742
96
+ sempy_labs/_bpa_translation/_model/_translations_ta-IN.po,sha256=jHJ8GDDtMUihkL0AJSeHpQKWPN6v7hc4z3qnv48JGZg,59930
97
+ sempy_labs/_bpa_translation/_model/_translations_te-IN.po,sha256=eA4fCPLJTVOX8nYJIm0RB6TUJ-LwV8Y7Umj2FWfdmo8,54810
98
+ sempy_labs/_bpa_translation/_model/_translations_th-TH.po,sha256=kZeMgGHn0J454eZJz9oQ0Yxi68Ziej7gbbu5-T_5mko,50906
99
+ sempy_labs/_bpa_translation/_model/_translations_tr-TR.po,sha256=NdW-X4E0QmeLKM0WH-qiHje3YEBrYPKCM0uFXOTsTOA,31759
100
+ sempy_labs/_bpa_translation/_model/_translations_uk-UA.po,sha256=3NsFN8hoor_5L6738FjpJ8o4spwp8FNFGbVItHD-_ec,43500
101
+ sempy_labs/_bpa_translation/_model/_translations_zh-CN.po,sha256=ipMbnet7ZI5mZoC8KonYKVwGmFLHFB_9KIDOoBgSNfo,26815
102
+ sempy_labs/_bpa_translation/_model/_translations_zu-ZA.po,sha256=5v6tVKGruqneAeMoa6F3tyg_JBL8qOpqOJofWpq2W3U,31518
103
+ sempy_labs/admin/__init__.py,sha256=vSmsOfolndUvGSlciKkAwdUXBougosHYgowxIcEvyyQ,3790
104
+ sempy_labs/admin/_activities.py,sha256=SN-uAEWvFO5nKuw4Yi483niixzxShDGMXRv0SV4s4Bk,6833
105
+ sempy_labs/admin/_apps.py,sha256=4R-VZqo9SGIrwqcQfnFGXIWueBhr4mSI7H8SUlLVl8s,4131
106
+ sempy_labs/admin/_artifacts.py,sha256=IQ1BOVKMK8Qy_5HpREUso6_NWXbftIodWekByvVvJ5k,2315
107
+ sempy_labs/admin/_basic_functions.py,sha256=HfJhdh8tVskRaaypU3qD_EE6IaDDR3MKJyt9Bl-56LE,16306
108
+ sempy_labs/admin/_capacities.py,sha256=KZ-5tKu2Ozc6AcSJxlPHpDLxMhqX2r2yWKALUVVqbt4,15846
109
+ sempy_labs/admin/_dataflows.py,sha256=So7kzRdDZ2henr-gmPw-ahEBQTm_xGhZrjkW-gALLQk,1432
110
+ sempy_labs/admin/_datasets.py,sha256=scGbRZpR32u62HDsvKaUYtpX85n4RGx4eYjxClFIT5U,6277
111
+ sempy_labs/admin/_domains.py,sha256=siLhIi5UqVM9kf_Xqq-kzvwZKouyqf-wWpPhJ7D-VMk,15238
112
+ sempy_labs/admin/_external_data_share.py,sha256=HMwKAjSE7Y-499Fo_weaY2SnKIU8_ohTBN3qjJtuJDs,3506
113
+ sempy_labs/admin/_git.py,sha256=mx2B7RcU4Fi4x6HEeXEotYk0jvcbHYG9_RPjo6UowcA,2379
114
+ sempy_labs/admin/_items.py,sha256=FY4WWmEy5R5H3H_hKXqicWXdvVJV0N0tecmA9Yy4Ysw,9036
115
+ sempy_labs/admin/_reports.py,sha256=JrmooHhiS4ViZsVinUz5T_9oZ7bdn1fIeW_wI8L1BnY,7908
116
+ sempy_labs/admin/_scanner.py,sha256=0dNfl9W25RTxIQj1rMGhQrH1ioGWpf3-CiZOxHLZ5hQ,4345
117
+ sempy_labs/admin/_shared.py,sha256=axTqVqp1V1tDtq2YTuSD6M0ST4lAjXqcIfRHwkZqyOQ,3115
118
+ sempy_labs/admin/_tags.py,sha256=emIA626JoC9Cp_vesVNFwahUdDLAK48APNsdG5ki1Xo,3788
119
+ sempy_labs/admin/_tenant.py,sha256=8mewLN79Lf3a-HUKG6Cl8Oimb2kv3r7XWAJKzvEHBMc,19581
120
+ sempy_labs/admin/_users.py,sha256=fYeUez98Dx_g6dC15S-0vttCZRUWWCrNPWNMGVtoiVE,4685
121
+ sempy_labs/admin/_workspaces.py,sha256=jOs2IwFWtCAoWJ4GMYLtAjAfaDlJ-i-urNUYGukpZS4,7650
122
+ sempy_labs/directlake/__init__.py,sha256=xDH3Y4Hxdnp1s7Whdkn6DCrS_cExcJURxkvuz-qv_HI,1879
123
+ sempy_labs/directlake/_directlake_schema_compare.py,sha256=8KJEdcHHP-6IuEoipDbIOQeqLUtpPt0x4ZXL54MPp0U,5047
124
+ sempy_labs/directlake/_directlake_schema_sync.py,sha256=hL3QwP9SN46CBqT39lkeLnJ9lLNDl5kLQryzamHUufM,6601
125
+ sempy_labs/directlake/_dl_helper.py,sha256=3lsCrz85NocEFmN3Ma4oQ0rrEcWus2FmInKzqeKMkBs,10389
126
+ sempy_labs/directlake/_generate_shared_expression.py,sha256=JgyDR-E-4eAvcGkAZ0zRjNtAw_ZULzHmABwwOy9FOq0,3591
127
+ sempy_labs/directlake/_get_directlake_lakehouse.py,sha256=9IxO4FuvScQig4aubpfhvu6AxASdrAP9hdW8YBKZ6xU,2292
128
+ sempy_labs/directlake/_get_shared_expression.py,sha256=t5aZkyCci3Anxle6NQBhjbT_pEAJcIeNZW54GCQRlHA,1172
129
+ sempy_labs/directlake/_guardrails.py,sha256=k6MFKEViVSD3mVfHK7IMUM9ws1-goMKjLqt-gNAgs4w,2779
130
+ sempy_labs/directlake/_list_directlake_model_calc_tables.py,sha256=08c6YomMCmOrglO1bRT42beZCss71NDOT_dCwEy10r0,2482
131
+ sempy_labs/directlake/_show_unsupported_directlake_objects.py,sha256=KlMcIByts2GT_zVD4vMN4V8vySqEiRDr9WE_9xFlaK0,3495
132
+ sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py,sha256=dXeEnqrZ4kXns2n7YgQupObA9Se76uf2X5eSqDcZLOg,9201
133
+ sempy_labs/directlake/_update_directlake_partition_entity.py,sha256=EQpePqgTsetDG5JJrL5pfYjibmsuzrYk6x2mj0PDfEY,8984
134
+ sempy_labs/directlake/_warm_cache.py,sha256=ks_rX2WOUk77rLsvwsCYyQOx-5U-pts27_guLYgMw6w,9236
135
+ sempy_labs/dotnet_lib/dotnet.runtime.config.json,sha256=syhDFQv6cEmZnE1WtFjNe3NwhsIsnd-CFULv-vEWOFI,167
136
+ sempy_labs/graph/__init__.py,sha256=fIx2ks5EhOiZ-8orZ7jq7txfwmfhlJ-4BdLWowm4YmE,572
137
+ sempy_labs/graph/_groups.py,sha256=YRFrsJbHGCraUBlqRaL2VEN4BoGGmS2PoLjHcA6D8ME,12935
138
+ sempy_labs/graph/_teams.py,sha256=UH5ETsReD0pzmdgqQFkcX_95o1aUAv2lAajRJc0RIZY,3175
139
+ sempy_labs/graph/_users.py,sha256=cVd-FrEIsQ43c1GG5eCiZ3-xIYciQKrPcfj2fn7x5nY,9929
140
+ sempy_labs/lakehouse/__init__.py,sha256=Nvn2idufLanbNuNWVYQeXyrTbJo-aiLBiXcg2OR248g,1127
141
+ sempy_labs/lakehouse/_blobs.py,sha256=peVPDCw97sB1x9a4KMKOqUB2Igu82-gb4CsvGdbubrU,8557
142
+ sempy_labs/lakehouse/_get_lakehouse_columns.py,sha256=QVxejuu4WFGkG-c2i9B_H6dZsb1m_FRSTraS9GahnT4,3681
143
+ sempy_labs/lakehouse/_get_lakehouse_tables.py,sha256=4p43Sa2mjJT4heUDp_EpF0vgZff5oNqCxjbat7IZxwk,11940
144
+ sempy_labs/lakehouse/_helper.py,sha256=q-z6DTO3-Iy5hM9zXpZhXRD1OPp7JAzGhcyJ_VheDcM,8644
145
+ sempy_labs/lakehouse/_lakehouse.py,sha256=tJFeXG1U_GcEW1EVMQKIQpz6kqh_aatAGo208cDCE0Y,10262
146
+ sempy_labs/lakehouse/_livy_sessions.py,sha256=XwEA0QkcFCbCGxSO6MJ5GZ-j9kjNIBiQhIkWG_Znm0E,6034
147
+ sempy_labs/lakehouse/_shortcuts.py,sha256=6WVqr-QvPvXQiB572BkcN8q-nA4JLCEEBT_eQNCoS-Q,16676
148
+ sempy_labs/migration/__init__.py,sha256=aA8r2g2mN_elPG8qptXlRiIcyQ9Z5hjKJo23fSNm1RY,1015
149
+ sempy_labs/migration/_create_pqt_file.py,sha256=IztG7XKAg98zZiWW0oUMtO7WnuqvcmE96gOAwe3UiKg,9659
150
+ sempy_labs/migration/_direct_lake_to_import.py,sha256=XBGQUTHp3uVgOcRk85aPtMlfdaXhrdh9AkaA0AglfSc,3987
151
+ sempy_labs/migration/_migrate_calctables_to_lakehouse.py,sha256=d_0IlH5eXWonOkzryZC2qS0Qt3Jw5uDJaCuQX_GUOeI,17742
152
+ sempy_labs/migration/_migrate_calctables_to_semantic_model.py,sha256=Q4x5SQj1VRUIMH6aZY-nOk0XfFJK1D7gu-2ZqGNx_Oo,5991
153
+ sempy_labs/migration/_migrate_model_objects_to_semantic_model.py,sha256=W0fPbTCUmSwNO8MMajOHMspUhET9Xl-5wa6VxaaPvFw,22885
154
+ sempy_labs/migration/_migrate_tables_columns_to_semantic_model.py,sha256=InhuLmtRIHumNp-p5gXNqPYZAbX2KPeeUuH6Ml1cgJk,6865
155
+ sempy_labs/migration/_migration_validation.py,sha256=5XLIgpzSb9ZMfYZfKHLC1gFX9gkENJdKXvCjh_qE6d4,2611
156
+ sempy_labs/migration/_refresh_calc_tables.py,sha256=AVffeVKPsB1XYs-3SAu04eSt6Gg-QRX9THI9vCRJwKo,5425
157
+ sempy_labs/mirrored_azure_databricks_catalog/__init__.py,sha256=c3eHgHWg-OB7HCrh_u2e1H0A_dyhGaGiT95N2u9NaVo,285
158
+ sempy_labs/mirrored_azure_databricks_catalog/_discover.py,sha256=tWuLMlXEyQE0fGTWqTUsubHnxqv6E3zjCDNLeK24IGM,7058
159
+ sempy_labs/mirrored_azure_databricks_catalog/_refresh_catalog_metadata.py,sha256=B9NqU-FCoBBosbRPr65TOQjyYcsGPtsfgdz9rYlEWrM,1634
160
+ sempy_labs/ml_model/__init__.py,sha256=2rHXo_C-70NO4t5_McN6lxGwN2M3IBB6VuQMTE0Vnk4,649
161
+ sempy_labs/ml_model/_functions.py,sha256=b_TzmVorVXdn8k0JD0SF3kXYu9fduizN6BKSq_5Ot7w,15282
162
+ sempy_labs/report/_BPAReportTemplate.json,sha256=9Uh-7E6d2ooxQ7j5JRayv_ayEULc7Gzg42kZGKdOqH8,63920
163
+ sempy_labs/report/__init__.py,sha256=bMX55Py9iJZqLYC1G-M1AgSwLfu4EHRhQGqym4K2Nzc,1264
164
+ sempy_labs/report/_download_report.py,sha256=Q1ho8EJybAKV8BlqN4Hq2yznH8DtUtLbSYtGUvG-toY,2695
165
+ sempy_labs/report/_export_report.py,sha256=RMV-ng_dgQ1ssQVfKkawUYIuFUHXMTE4j-7q3CedVFo,10950
166
+ sempy_labs/report/_generate_report.py,sha256=dYIhFzTT3NOU_t9dpZ_qkYp0r-LXRpHPAUsfSmuqtEA,13911
167
+ sempy_labs/report/_paginated.py,sha256=9zW-TXNDT7j6TCiPPxIbn7BI69HLKCAfe-Xys25IZt0,2186
168
+ sempy_labs/report/_report_bpa.py,sha256=9BNJmxDiZlldYoQvUKcWYc47eycyv_mo0-pocNub7Qk,13419
169
+ sempy_labs/report/_report_bpa_rules.py,sha256=kPPE1UZ_78GePULcIRUarRfdqR7s4CQ46MMS8VUyJnk,4998
170
+ sempy_labs/report/_report_functions.py,sha256=QVxM77PosaQvGu9s_UAiBMcuvgTAenP8mk2Kjqkt45w,19709
171
+ sempy_labs/report/_report_helper.py,sha256=L9wU0N0rvTUMglZHTxcowywrBDuZvZTv3DA4JrX84Os,7207
172
+ sempy_labs/report/_report_list_functions.py,sha256=m_Wf1YeZmNtOfCwIILpKUuVR7V2CnwnfhDjz1DDTxOI,3945
173
+ sempy_labs/report/_report_rebind.py,sha256=J6DkNX5JF2NdC1Az-f3fkEfRQJ1LmpAMhftoz9WHoEI,5081
174
+ sempy_labs/report/_reportwrapper.py,sha256=GI38yGY_mXlFhE-WD8-0oHlL6kmU-M_kBcPp1qozgt0,110493
175
+ sempy_labs/report/_save_report.py,sha256=0P1WwIBtSgwrhnjWWvf9xf-e7ifka3DWVF0HM5zeXps,5998
176
+ sempy_labs/report/_bpareporttemplate/definition.pbir,sha256=bttyHZYKqjA8OBb_cezGlX4H82cDvGZVCl1QB3fij4E,343
177
+ sempy_labs/report/_bpareporttemplate/StaticResources/SharedResources/BaseThemes/CY24SU06.json,sha256=4N6sT5nLlYBobGmZ1Xb68uOMVVCBEyheR535js_et28,13467
178
+ sempy_labs/report/_bpareporttemplate/definition/report.json,sha256=-8BK5blTE-nc0Y4-M0pTHD8Znt3pHZ-u2veRppxPDBQ,3975
179
+ sempy_labs/report/_bpareporttemplate/definition/version.json,sha256=yL3ZZqhfHqq0MS0glrbXtQgkPk17xaTSWvPPyxBWpOc,152
180
+ sempy_labs/report/_bpareporttemplate/definition/pages/pages.json,sha256=jBLscHaA4wAQwusHXA3oYFaTsk3LL6S--k6wvvehJhk,311
181
+ sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/page.json,sha256=5qfUCQXMdeDAKtfdLxQZt06-e111OTSP07gsmG1dfpY,313
182
+ sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/1b08bce3bebabb0a27a8/visual.json,sha256=wyB8w15elLuJorCx3lnQYD7OOXqNsoVgqNaDdukO4G8,4455
183
+ sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/2f22ddb70c301693c165/visual.json,sha256=v-DCEtln1r6EVG7-KlfWBCbxnWzk9LyjycHjAmowObs,10977
184
+ sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/3b1182230aa6c600b43a/visual.json,sha256=3cg4bTS_7OAMuWYKtPFqZeBbZoNczLg59zQClNqgAw8,2858
185
+ sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/58577ba6380c69891500/visual.json,sha256=ynOggnusTsTBxaXh9Q1n3zmsixHNhIohwku2y40Z-Js,14453
186
+ sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/a2a8fa5028b3b776c96c/visual.json,sha256=DU_t1cr5eczWFy9EI0R1v7S-cbNIdSyll0az5jKJRf4,5090
187
+ sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/adfd47ef30652707b987/visual.json,sha256=0HnplDEjDGa3htdufUksOxzC7iZGERNxgf3k81_kJ7E,12829
188
+ sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/b6a80ee459e716e170b1/visual.json,sha256=kl45g9-GF8wNrQRM2PrsS-Rf0cYhP5b3-lqAeXJfmN8,2866
189
+ sempy_labs/report/_bpareporttemplate/definition/pages/01d72098bda5055bd500/visuals/ce3130a721c020cc3d81/visual.json,sha256=id6U55GALhCx5BwtM_aCFjMkiVkhSvR79o2pbrMwNyA,12981
190
+ sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/page.json,sha256=7pk03j28AwlE2HIwxei08Pz5VseRPO8eziOC6dgEJfs,249
191
+ sempy_labs/report/_bpareporttemplate/definition/pages/92735ae19b31712208ad/visuals/66e60dfb526437cd78d1/visual.json,sha256=7ZqozO6t9Ossms8Y20xGea3tdSAESSkxkejqTDRW15E,2982
192
+ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/page.json,sha256=dNExLBlxFRHASVCz8DUZ2Voq_ZCCuGu1YZmw2HdwCww,314
193
+ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/07deb8bce824e1be37d7/visual.json,sha256=nZaj33KCp6bqxG0_nplUyi8-AGavN1iOp2lVkI0gLvw,12928
194
+ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0b1c68838818b32ad03b/visual.json,sha256=xaykDc6T5qwe8qENlAaAd-Ivw8oF1dderfrhSbUKGW4,10102
195
+ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0c171de9d2683d10b930/visual.json,sha256=Fk7MWX8LhbftzHe_6KCFkSp2jYzRMYnZSWeElnFWLbw,915
196
+ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/0efa01be0510e40a645e/visual.json,sha256=O4wgVQuf-tAGDjVuzlnoOGi8GLPG2Vxz6y-JubTRQfY,14305
197
+ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/6bf2f0eb830ab53cc668/visual.json,sha256=twzhLrEcCzUikeiKJ5sSEmQZ1otKXxgTtdz0uX4AKes,5445
198
+ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/88d8141cb8500b60030c/visual.json,sha256=3dS2XcsYWMEity0zFs0hxrv_w0Tnwe50iZFYvotfsWY,2856
199
+ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/a753273590beed656a03/visual.json,sha256=Y59BS3bx16gzmZn-3-JqJZ_BRxeqVuoaVlysZvVAZAQ,14451
200
+ sempy_labs/report/_bpareporttemplate/definition/pages/c597da16dc7e63222a82/visuals/b8fdc82cddd61ac447bc/visual.json,sha256=zOVrg0CaoOSxedwwyD8Msm94sqFVM0l-6IXX51EMRZY,2866
201
+ sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/page.json,sha256=wBVuNc8S2NaUA0FC708w6stmR2djNZp8nAsHMqesgsc,293
202
+ sempy_labs/report/_bpareporttemplate/definition/pages/d37dce724a0ccc30044b/visuals/ce8532a7e25020271077/visual.json,sha256=mlY6t9OlSe-Y6_QmXJpS1vggU6Y3FjISUKECL8FVSg8,931
203
+ sempy_labs/theme/__init__.py,sha256=JN0z8w_Hc7VUIchRbpY-rjU6879msrFiSTRtMMlr_5g,185
204
+ sempy_labs/theme/_org_themes.py,sha256=7W9AsDNQ3JaQBovg_EEev-NRD8VEvzpelBspS7vsUTM,3296
205
+ sempy_labs/tom/__init__.py,sha256=ZwSpgYDP5VamZTnYP3a1cYHiaKdktOvlOBSOY1816zY,107
206
+ sempy_labs/tom/_model.py,sha256=vAHPuRr3BK0qzFAXMBpztvuvDjDI9yBfRhdBk1FlIW0,222768
207
+ sempy_labs/variable_library/__init__.py,sha256=qyTw5vNldnwYv-TotQSFupwznKIQfcws1UxGjf1RNNo,437
208
+ sempy_labs/variable_library/_functions.py,sha256=eoB3hUKFGdGMSBNDEsEF9bVoELZp5AnyDxp5BsLGeDc,13733
209
+ semantic_link_labs-0.11.3.dist-info/METADATA,sha256=sbLyEIHvlDZOQ0XWi_bdJ7fsEXCmQzz_swfe_OMafUg,27458
210
+ semantic_link_labs-0.11.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
211
+ semantic_link_labs-0.11.3.dist-info/top_level.txt,sha256=kiQX1y42Dbein1l3Q8jMUYyRulDjdlc2tMepvtrvixQ,11
212
+ semantic_link_labs-0.11.3.dist-info/RECORD,,
sempy_labs/__init__.py CHANGED
@@ -1,57 +1,53 @@
1
- from sempy_labs._sql_endpoints import (
1
+ from ._labels import (
2
+ list_item_labels,
3
+ )
4
+ from ._sql_endpoints import (
2
5
  list_sql_endpoints,
3
6
  refresh_sql_endpoint_metadata,
4
7
  )
5
- from sempy_labs._variable_libraries import (
6
- list_variable_libraries,
7
- delete_variable_library,
8
- )
9
- from sempy_labs._kusto import (
8
+ from ._kusto import (
10
9
  query_kusto,
11
10
  query_workspace_monitoring,
12
11
  )
13
- from sempy_labs._vpax import (
12
+ from ._vpax import (
14
13
  create_vpax,
15
14
  )
16
- from sempy_labs._delta_analyzer_history import (
15
+ from ._delta_analyzer_history import (
17
16
  delta_analyzer_history,
18
17
  )
19
- from sempy_labs._dax_query_view import (
20
- generate_dax_query_view_url,
21
- )
22
- from sempy_labs._mounted_data_factories import (
18
+ from ._mounted_data_factories import (
23
19
  list_mounted_data_factories,
24
20
  get_mounted_data_factory_definition,
25
21
  delete_mounted_data_factory,
26
22
  )
27
- from sempy_labs._tags import (
23
+ from ._tags import (
28
24
  list_tags,
29
25
  apply_tags,
30
26
  unapply_tags,
31
27
  )
32
- from sempy_labs._semantic_models import (
28
+ from ._semantic_models import (
33
29
  get_semantic_model_refresh_schedule,
34
30
  enable_semantic_model_scheduled_refresh,
35
31
  delete_semantic_model,
36
32
  update_semantic_model_refresh_schedule,
37
33
  list_semantic_model_datasources,
38
34
  )
39
- from sempy_labs._graphQL import (
35
+ from ._graphQL import (
40
36
  list_graphql_apis,
41
37
  create_graphql_api,
42
38
  )
43
- from sempy_labs._job_scheduler import (
39
+ from ._job_scheduler import (
44
40
  list_item_job_instances,
45
41
  list_item_schedules,
46
42
  create_item_schedule_cron,
47
43
  create_item_schedule_daily,
48
44
  create_item_schedule_weekly,
49
45
  )
50
- from sempy_labs._delta_analyzer import (
46
+ from ._delta_analyzer import (
51
47
  delta_analyzer,
52
48
  get_delta_table_history,
53
49
  )
54
- from sempy_labs._gateways import (
50
+ from ._gateways import (
55
51
  list_gateway_members,
56
52
  list_gateway_role_assigments,
57
53
  list_gateways,
@@ -63,11 +59,11 @@ from sempy_labs._gateways import (
63
59
  update_on_premises_gateway,
64
60
  bind_semantic_model_to_gateway,
65
61
  )
66
- from sempy_labs._authentication import (
62
+ from ._authentication import (
67
63
  ServicePrincipalTokenProvider,
68
64
  service_principal_authentication,
69
65
  )
70
- from sempy_labs._mirrored_databases import (
66
+ from ._mirrored_databases import (
71
67
  get_mirrored_database_definition,
72
68
  get_mirroring_status,
73
69
  list_mirrored_databases,
@@ -78,72 +74,68 @@ from sempy_labs._mirrored_databases import (
78
74
  update_mirrored_database_definition,
79
75
  get_tables_mirroring_status,
80
76
  )
81
- from sempy_labs._managed_private_endpoints import (
77
+ from ._managed_private_endpoints import (
82
78
  list_managed_private_endpoints,
83
79
  create_managed_private_endpoint,
84
80
  delete_managed_private_endpoint,
85
81
  )
86
- from sempy_labs._workloads import (
82
+ from ._workloads import (
87
83
  list_workloads,
88
84
  patch_workload,
89
85
  )
90
- from sempy_labs._external_data_shares import (
86
+ from ._external_data_shares import (
91
87
  list_external_data_shares_in_item,
92
88
  create_external_data_share,
93
89
  revoke_external_data_share,
90
+ delete_external_data_share,
94
91
  )
95
- from sempy_labs._ml_models import (
96
- list_ml_models,
97
- create_ml_model,
98
- delete_ml_model,
99
- )
100
- from sempy_labs._ml_experiments import (
92
+ from ._ml_experiments import (
101
93
  list_ml_experiments,
102
94
  create_ml_experiment,
103
95
  delete_ml_experiment,
104
96
  )
105
- from sempy_labs._warehouses import (
97
+ from ._warehouses import (
106
98
  create_warehouse,
107
99
  list_warehouses,
108
100
  delete_warehouse,
109
101
  get_warehouse_columns,
110
102
  get_warehouse_tables,
111
103
  )
112
- from sempy_labs._data_pipelines import (
104
+ from ._data_pipelines import (
113
105
  list_data_pipelines,
114
106
  create_data_pipeline,
115
107
  delete_data_pipeline,
116
108
  get_data_pipeline_definition,
117
109
  )
118
- from sempy_labs._eventhouses import (
110
+ from ._eventhouses import (
119
111
  create_eventhouse,
120
112
  list_eventhouses,
121
113
  delete_eventhouse,
122
114
  get_eventhouse_definition,
123
115
  )
124
- from sempy_labs._eventstreams import (
116
+ from ._eventstreams import (
125
117
  list_eventstreams,
126
118
  create_eventstream,
127
119
  delete_eventstream,
128
120
  )
129
- from sempy_labs._kql_querysets import (
121
+ from ._kql_querysets import (
130
122
  list_kql_querysets,
131
123
  create_kql_queryset,
132
124
  delete_kql_queryset,
133
125
  )
134
- from sempy_labs._kql_databases import (
126
+ from ._kql_databases import (
135
127
  list_kql_databases,
136
128
  # create_kql_database,
137
129
  delete_kql_database,
138
130
  )
139
- from sempy_labs._mirrored_warehouses import list_mirrored_warehouses
140
- from sempy_labs._environments import (
131
+ from ._mirrored_warehouses import list_mirrored_warehouses
132
+ from ._environments import (
141
133
  create_environment,
142
134
  delete_environment,
143
135
  publish_environment,
144
136
  list_environments,
145
137
  )
146
- from sempy_labs._clear_cache import (
138
+ from ._clear_cache import (
147
139
  clear_cache,
148
140
  backup_semantic_model,
149
141
  restore_semantic_model,
@@ -151,12 +143,12 @@ from sempy_labs._clear_cache import (
151
143
  list_backups,
152
144
  list_storage_account_files,
153
145
  )
154
- from sempy_labs._capacity_migration import (
146
+ from ._capacity_migration import (
155
147
  migrate_workspaces,
156
148
  migrate_capacities,
157
149
  migrate_fabric_trial_capacity,
158
150
  )
159
- from sempy_labs._capacities import (
151
+ from ._capacities import (
160
152
  create_fabric_capacity,
161
153
  resume_fabric_capacity,
162
154
  suspend_fabric_capacity,
@@ -179,7 +171,7 @@ from sempy_labs._capacities import (
179
171
  get_resource_group,
180
172
  list_capacities,
181
173
  )
182
- from sempy_labs._spark import (
174
+ from ._spark import (
183
175
  get_spark_settings,
184
176
  update_spark_settings,
185
177
  list_custom_pools,
@@ -187,7 +179,7 @@ from sempy_labs._spark import (
187
179
  delete_custom_pool,
188
180
  update_custom_pool,
189
181
  )
190
- from sempy_labs._workspaces import (
182
+ from ._workspaces import (
191
183
  list_workspace_users,
192
184
  update_workspace_user,
193
185
  add_user_to_workspace,
@@ -197,34 +189,36 @@ from sempy_labs._workspaces import (
197
189
  list_workspace_role_assignments,
198
190
  delete_workspace,
199
191
  )
200
- from sempy_labs._notebooks import (
192
+ from ._notebooks import (
201
193
  get_notebook_definition,
202
194
  import_notebook_from_web,
203
195
  update_notebook_definition,
204
196
  create_notebook,
197
+ search_notebooks,
198
+ list_notebooks,
205
199
  )
206
- from sempy_labs._sql import (
200
+ from ._sql import (
207
201
  ConnectWarehouse,
208
202
  ConnectLakehouse,
209
203
  ConnectSQLDatabase,
210
204
  )
211
- from sempy_labs._sqldatabase import (
205
+ from ._sqldatabase import (
212
206
  get_sql_database_columns,
213
207
  get_sql_database_tables,
214
208
  create_sql_database,
215
209
  delete_sql_database,
216
210
  list_sql_databases,
217
211
  )
218
- from sempy_labs._workspace_identity import (
212
+ from ._workspace_identity import (
219
213
  provision_workspace_identity,
220
214
  deprovision_workspace_identity,
221
215
  )
222
- from sempy_labs._deployment_pipelines import (
216
+ from ._deployment_pipelines import (
223
217
  list_deployment_pipeline_stage_items,
224
218
  list_deployment_pipeline_stages,
225
219
  list_deployment_pipelines,
226
220
  )
227
- from sempy_labs._git import (
221
+ from ._git import (
228
222
  get_git_connection,
229
223
  get_git_status,
230
224
  commit_to_git,
@@ -236,7 +230,7 @@ from sempy_labs._git import (
236
230
  get_my_git_credentials,
237
231
  update_my_git_credentials,
238
232
  )
239
- from sempy_labs._dataflows import (
233
+ from ._dataflows import (
240
234
  list_dataflow_storage_accounts,
241
235
  assign_workspace_to_dataflow_storage,
242
236
  list_dataflows,
@@ -244,7 +238,7 @@ from sempy_labs._dataflows import (
244
238
  upgrade_dataflow,
245
239
  get_dataflow_definition,
246
240
  )
247
- from sempy_labs._connections import (
241
+ from ._connections import (
248
242
  list_connections,
249
243
  list_item_connections,
250
244
  list_connection_role_assignments,
@@ -254,14 +248,14 @@ from sempy_labs._connections import (
254
248
  create_on_prem_connection,
255
249
  create_cloud_connection,
256
250
  )
257
- from sempy_labs._dax import (
251
+ from ._dax import (
258
252
  evaluate_dax_impersonation,
259
253
  get_dax_query_dependencies,
260
254
  get_dax_query_memory_size,
261
255
  # dax_perf_test,
262
256
  # dax_perf_test_bulk,
263
257
  )
264
- from sempy_labs._generate_semantic_model import (
258
+ from ._generate_semantic_model import (
265
259
  create_blank_semantic_model,
266
260
  create_semantic_model_from_bim,
267
261
  deploy_semantic_model,
@@ -270,10 +264,10 @@ from sempy_labs._generate_semantic_model import (
270
264
  update_semantic_model_from_bim,
271
265
  get_semantic_model_definition,
272
266
  )
273
- from sempy_labs._dashboards import (
267
+ from ._dashboards import (
274
268
  list_dashboards,
275
269
  )
276
- from sempy_labs._list_functions import (
270
+ from ._list_functions import (
277
271
  list_reports_using_semantic_model,
278
272
  list_semantic_model_object_report_usage,
279
273
  list_report_semantic_model_objects,
@@ -287,7 +281,8 @@ from sempy_labs._list_functions import (
287
281
  list_semantic_model_errors,
288
282
  list_synonyms,
289
283
  )
290
- from sempy_labs._helper_functions import (
284
+ from ._helper_functions import (
285
+ copy_item,
291
286
  convert_to_friendly_case,
292
287
  resolve_environment_id,
293
288
  resolve_capacity_id,
@@ -313,21 +308,21 @@ from sempy_labs._helper_functions import (
313
308
  resolve_capacity_name,
314
309
  get_tenant_id,
315
310
  )
316
- from sempy_labs._model_bpa_bulk import (
311
+ from ._model_bpa_bulk import (
317
312
  run_model_bpa_bulk,
318
313
  create_model_bpa_semantic_model,
319
314
  )
320
- from sempy_labs._model_bpa import run_model_bpa
321
- from sempy_labs._model_bpa_rules import model_bpa_rules
322
- from sempy_labs._model_dependencies import (
315
+ from ._model_bpa import run_model_bpa
316
+ from ._model_bpa_rules import model_bpa_rules
317
+ from ._model_dependencies import (
323
318
  measure_dependency_tree,
324
319
  get_measure_dependencies,
325
320
  get_model_calc_dependencies,
326
321
  )
327
- from sempy_labs._one_lake_integration import (
322
+ from ._one_lake_integration import (
328
323
  export_model_to_onelake,
329
324
  )
330
- from sempy_labs._query_scale_out import (
325
+ from ._query_scale_out import (
331
326
  qso_sync,
332
327
  qso_sync_status,
333
328
  set_qso,
@@ -336,17 +331,17 @@ from sempy_labs._query_scale_out import (
336
331
  set_semantic_model_storage_format,
337
332
  set_workspace_default_storage_format,
338
333
  )
339
- from sempy_labs._refresh_semantic_model import (
334
+ from ._refresh_semantic_model import (
340
335
  refresh_semantic_model,
341
336
  cancel_dataset_refresh,
342
337
  get_semantic_model_refresh_history,
343
338
  )
344
- from sempy_labs._translations import translate_semantic_model
345
- from sempy_labs._vertipaq import (
339
+ from ._translations import translate_semantic_model
340
+ from ._vertipaq import (
346
341
  vertipaq_analyzer,
347
342
  import_vertipaq_analyzer,
348
343
  )
349
- from sempy_labs._user_delegation_key import (
344
+ from ._user_delegation_key import (
350
345
  get_user_delegation_key,
351
346
  )
352
347
 
@@ -486,9 +481,6 @@ __all__ = [
486
481
  "list_kql_querysets",
487
482
  "create_kql_queryset",
488
483
  "delete_kql_queryset",
489
- "list_ml_models",
490
- "create_ml_model",
491
- "delete_ml_model",
492
484
  "list_ml_experiments",
493
485
  "create_ml_experiment",
494
486
  "delete_ml_experiment",
@@ -498,6 +490,7 @@ __all__ = [
498
490
  "list_external_data_shares_in_item",
499
491
  "create_external_data_share",
500
492
  "revoke_external_data_share",
493
+ "delete_external_data_share",
501
494
  "migrate_fabric_trial_capacity",
502
495
  "create_resource_group",
503
496
  "list_workloads",
@@ -577,7 +570,6 @@ __all__ = [
577
570
  "list_mounted_data_factories",
578
571
  "get_mounted_data_factory_definition",
579
572
  "delete_mounted_data_factory",
580
- "generate_dax_query_view_url",
581
573
  "delete_semantic_model",
582
574
  "delete_workspace",
583
575
  "create_sql_database",
@@ -588,8 +580,6 @@ __all__ = [
588
580
  "query_workspace_monitoring",
589
581
  "list_environments",
590
582
  "list_tags",
591
- "list_variable_libraries",
592
- "delete_variable_library",
593
583
  "create_vpax",
594
584
  "update_semantic_model_refresh_schedule",
595
585
  "apply_tags",
@@ -599,4 +589,8 @@ __all__ = [
599
589
  "list_semantic_model_datasources",
600
590
  "upgrade_dataflow",
601
591
  "get_dataflow_definition",
592
+ "list_item_labels",
593
+ "copy_item",
594
+ "search_notebooks",
595
+ "list_notebooks",
602
596
  ]