semantic-link-labs 0.8.5__py3-none-any.whl → 0.8.7__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.8.5.dist-info → semantic_link_labs-0.8.7.dist-info}/METADATA +15 -6
- {semantic_link_labs-0.8.5.dist-info → semantic_link_labs-0.8.7.dist-info}/RECORD +36 -30
- {semantic_link_labs-0.8.5.dist-info → semantic_link_labs-0.8.7.dist-info}/WHEEL +1 -1
- sempy_labs/__init__.py +37 -6
- sempy_labs/_authentication.py +108 -0
- sempy_labs/_connections.py +355 -176
- sempy_labs/_dataflows.py +0 -1
- sempy_labs/_gateways.py +439 -0
- sempy_labs/_generate_semantic_model.py +51 -30
- sempy_labs/_git.py +13 -5
- sempy_labs/_helper_functions.py +14 -3
- sempy_labs/_list_functions.py +1 -1
- sempy_labs/_model_auto_build.py +4 -2
- sempy_labs/_model_bpa.py +2 -15
- sempy_labs/_model_bpa_bulk.py +14 -6
- sempy_labs/_model_dependencies.py +3 -1
- sempy_labs/_refresh_semantic_model.py +6 -0
- sempy_labs/admin/__init__.py +19 -9
- sempy_labs/admin/_basic_functions.py +475 -548
- sempy_labs/admin/_external_data_share.py +97 -0
- sempy_labs/admin/_git.py +69 -0
- sempy_labs/admin/_items.py +264 -0
- sempy_labs/admin/_scanner.py +104 -0
- sempy_labs/directlake/_dl_helper.py +6 -2
- sempy_labs/directlake/_get_shared_expression.py +5 -35
- sempy_labs/directlake/_update_directlake_model_lakehouse_connection.py +3 -2
- sempy_labs/migration/_create_pqt_file.py +4 -2
- sempy_labs/migration/_migrate_tables_columns_to_semantic_model.py +4 -2
- sempy_labs/report/_generate_report.py +10 -4
- sempy_labs/report/_report_bpa.py +1 -0
- sempy_labs/report/_report_helper.py +58 -0
- sempy_labs/report/_report_list_functions.py +2 -0
- sempy_labs/report/_reportwrapper.py +358 -175
- sempy_labs/tom/_model.py +2 -1
- {semantic_link_labs-0.8.5.dist-info → semantic_link_labs-0.8.7.dist-info}/LICENSE +0 -0
- {semantic_link_labs-0.8.5.dist-info → semantic_link_labs-0.8.7.dist-info}/top_level.txt +0 -0
sempy_labs/tom/_model.py
CHANGED
|
@@ -2278,7 +2278,7 @@ class TOMWrapper:
|
|
|
2278
2278
|
t = self.model.Tables[table_name]
|
|
2279
2279
|
|
|
2280
2280
|
return (
|
|
2281
|
-
self.
|
|
2281
|
+
self.is_calculated_table(table_name=table_name)
|
|
2282
2282
|
and t.Columns.Count == 4
|
|
2283
2283
|
and any(
|
|
2284
2284
|
"NAMEOF(" in p.Source.Expression.replace(" ", "") for p in t.Partitions
|
|
@@ -4369,6 +4369,7 @@ class TOMWrapper:
|
|
|
4369
4369
|
pandas.DataFrame
|
|
4370
4370
|
A pandas dataframe showing the updated measure(s) and their new description(s).
|
|
4371
4371
|
"""
|
|
4372
|
+
icons.sll_tags.append("GenerateMeasureDescriptions")
|
|
4372
4373
|
|
|
4373
4374
|
df = pd.DataFrame(
|
|
4374
4375
|
columns=["Table Name", "Measure Name", "Expression", "Description"]
|
|
File without changes
|
|
File without changes
|