pyegeria 5.4.0.dev6__py3-none-any.whl → 5.4.0.dev8__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.
- commands/cat/debug_log +4773 -0
- commands/cat/dr_egeria_command_help.py +273 -0
- commands/cat/dr_egeria_md.py +2 -2
- md_processing/data/commands.json +3752 -1297
- md_processing/md_commands/data_designer_commands.py +27 -126
- md_processing/md_processing_utils/debug_log +0 -0
- md_processing/md_processing_utils/generate_dr_help.py +150 -0
- md_processing/md_processing_utils/generate_md_templates.py +92 -0
- md_processing/md_processing_utils/generated_help_terms.md +842 -0
- pyegeria/data_designer_omvs.py +2 -2
- pyegeria/output_formatter.py +8 -3
- {pyegeria-5.4.0.dev6.dist-info → pyegeria-5.4.0.dev8.dist-info}/METADATA +1 -1
- {pyegeria-5.4.0.dev6.dist-info → pyegeria-5.4.0.dev8.dist-info}/RECORD +16 -10
- {pyegeria-5.4.0.dev6.dist-info → pyegeria-5.4.0.dev8.dist-info}/entry_points.txt +1 -0
- {pyegeria-5.4.0.dev6.dist-info → pyegeria-5.4.0.dev8.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.0.dev6.dist-info → pyegeria-5.4.0.dev8.dist-info}/WHEEL +0 -0
pyegeria/data_designer_omvs.py
CHANGED
@@ -2588,8 +2588,8 @@ r replace_all_properties: bool, default = False
|
|
2588
2588
|
}
|
2589
2589
|
|
2590
2590
|
"""
|
2591
|
-
if filter == "*":
|
2592
|
-
filter = None
|
2591
|
+
if body['filter'] == "*":
|
2592
|
+
body['filter'] = None
|
2593
2593
|
starts_with_s = str(starts_with).lower()
|
2594
2594
|
ends_with_s = str(ends_with).lower()
|
2595
2595
|
ignore_case_s = str(ignore_case).lower()
|
pyegeria/output_formatter.py
CHANGED
@@ -183,8 +183,10 @@ def generate_entity_md_table(elements: List[Dict],
|
|
183
183
|
# Handle pluralization - if entity_type ends with 'y', use 'ies' instead of 's'
|
184
184
|
entity_type_plural = f"{entity_type[:-1]}ies" if entity_type.endswith('y') else f"{entity_type}s"
|
185
185
|
|
186
|
-
elements_md =
|
187
|
-
|
186
|
+
elements_md = ""
|
187
|
+
if output_format == "LIST":
|
188
|
+
elements_md = f"# {entity_type_plural} Table\n\n"
|
189
|
+
elements_md += f"{entity_type_plural} found from the search string: `{search_string}`\n\n"
|
188
190
|
|
189
191
|
# Add column headers
|
190
192
|
header_row = "| "
|
@@ -198,7 +200,10 @@ def generate_entity_md_table(elements: List[Dict],
|
|
198
200
|
|
199
201
|
# Add rows
|
200
202
|
for element in elements:
|
201
|
-
|
203
|
+
if output_format == "help":
|
204
|
+
props = element
|
205
|
+
else:
|
206
|
+
props = extract_properties_func(element)
|
202
207
|
|
203
208
|
# Get additional properties if function is provided
|
204
209
|
additional_props = {}
|
@@ -1,8 +1,10 @@
|
|
1
1
|
commands/cat/Dr-Egeria_md-orig.py,sha256=ZX20BvRo0fIFisvy5Z-VJDLVyKbQoud89-CUV2S66tU,7336
|
2
2
|
commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
|
3
3
|
commands/cat/__init__.py,sha256=Ps4MxYlYN-ZX1qaSTFwnqgDZTaqUkN35JTOpZ1TBD1Q,451
|
4
|
+
commands/cat/debug_log,sha256=ni_MzIEWIIV4ao6O1DrM7Wd-h6PuMffqHd2gJADkl9U,279822
|
5
|
+
commands/cat/dr_egeria_command_help.py,sha256=RIxLNIva3_8ofWG_q-tvuIwHY8OZzoOxu6T8CdYZDdU,11101
|
4
6
|
commands/cat/dr_egeria_jupyter.py,sha256=rfLVV_84Q8Pqcq1flmijKvZ7sEZFy7JAcAP_NAbb46Y,5656
|
5
|
-
commands/cat/dr_egeria_md.py,sha256=
|
7
|
+
commands/cat/dr_egeria_md.py,sha256=HHICgFJV4CWnOMx6OTADBVMC7yaXRiJtiKovPMDx7WA,16707
|
6
8
|
commands/cat/exp_list_glossaries.py,sha256=dC6Bnfm3YSMTKPP146qeslIFRiZnGu5b7iDYE07p4iU,5817
|
7
9
|
commands/cat/get_asset_graph.py,sha256=xnXJfpDTVH1TJ2TwE3dtjaXU36Di6-N6JAyhothzz2o,12461
|
8
10
|
commands/cat/get_collection.py,sha256=kXPcP8u-SMWfrVyyBhNoxG8mcgB7EV_5i9N9w_IBU7o,5379
|
@@ -94,17 +96,21 @@ commands/tech/list_valid_metadata_values.py,sha256=_zgOdq2N6s7GjLd8iEc5xVfplKfOn
|
|
94
96
|
commands/tech/table_tech_templates.py,sha256=jI1c9YKa3KirArMNXeCRKeaiVdwQSN-ztPqkag6jdZs,9500
|
95
97
|
commands/tech/x_list_related_elements.py,sha256=ynaw792VnbMZ9IXBi5mmG7xBfC0kn0esKiFTsjvLGzc,5900
|
96
98
|
md_processing/__init__.py,sha256=k9qozzeNFsjgMMcNpM1ibPqOVJCfy-3DEmi2dmSzGqM,5384
|
97
|
-
md_processing/data/commands.json,sha256=
|
99
|
+
md_processing/data/commands.json,sha256=p_Deuw1vS5cxunzACi2zKOrunBTp4aJ9g2LCyP-YbsI,322163
|
98
100
|
md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb,sha256=dbzNu90fCKNohOWVSRBOB1GLyd95x8Qw51I5AkaPtso,11552
|
99
101
|
md_processing/md_commands/__init__.py,sha256=ssEojzFlSYtY2bHqqOoKo8PFaANZ_kq_gIbtlXnuc2s,93
|
100
|
-
md_processing/md_commands/data_designer_commands.py,sha256=
|
102
|
+
md_processing/md_commands/data_designer_commands.py,sha256=dRMZZbCxzg1wZY6bJfmo5LgG5z42fFpK-CbmEvGcMh0,87249
|
101
103
|
md_processing/md_commands/glossary_commands.py,sha256=QqcWSk2pXB6VWiqy75Hvzme79U10scbwm1i4sX4-9jg,53376
|
102
104
|
md_processing/md_commands/project_commands.py,sha256=d4kF-ldz6vqZy50ajxWLoupZs4wJvBShJScDqfH8O4U,8050
|
103
105
|
md_processing/md_commands/solution_architect_commands.py,sha256=XOLmlySS3cuqV8r2AcTuuPrt5kctKQrR-1sfspqx0yY,51000
|
104
106
|
md_processing/md_processing_utils/__init__.py,sha256=LxAmxlcji26ziKV4gGar01d95gL9vgToRIeJW8N-Ifs,80
|
105
107
|
md_processing/md_processing_utils/common_md_proc_utils.py,sha256=ZBATa8Ni_q3WJs755SaOttSoTN9epJ5pgvEjWXG7_MI,42295
|
106
108
|
md_processing/md_processing_utils/common_md_utils.py,sha256=GQ4FKJ3n_NckFgoGwE7FIlmYqaWClaFJ-1aK3PxiPy8,5850
|
109
|
+
md_processing/md_processing_utils/debug_log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
110
|
md_processing/md_processing_utils/extraction_utils.py,sha256=780oJsXvW50kX2d64FQIwJQTigQuNiLVRitAEzComQM,20066
|
111
|
+
md_processing/md_processing_utils/generate_dr_help.py,sha256=0FP8hJ5hKGi0L9HaQlQGN1NNBJVpqRHV_5p3YUbR_lk,5802
|
112
|
+
md_processing/md_processing_utils/generate_md_templates.py,sha256=DMnMQ7_LbmQCS8aG-ppHGTu25obOSn4ZzSg7V21k9jo,3547
|
113
|
+
md_processing/md_processing_utils/generated_help_terms.md,sha256=9-Qt2_reHLXMb6H1VHtPPQME4_riEgr0CL1yYYwNSFc,35503
|
108
114
|
md_processing/md_processing_utils/md_processing_constants.py,sha256=SAgipsb93iQ387Kl8E4bERBfIYhAF2nDwV2ui2gPUBs,6854
|
109
115
|
md_processing/md_processing_utils/message_constants.py,sha256=UBf18obM83umM6zplR7ychre4xLRbBnTzidHDZ2gNvM,548
|
110
116
|
pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
|
@@ -120,7 +126,7 @@ pyegeria/classification_manager_omvs.py,sha256=EBWjdx_C999bRu2-INL8RZxZ-wz92mzVq
|
|
120
126
|
pyegeria/collection_manager_omvs.py,sha256=GCiItk_zO206gaR5Dj3Q-5zJ5corymZhjNjEaUFzIB4,130729
|
121
127
|
pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
|
122
128
|
pyegeria/create_tech_guid_lists.py,sha256=hf5q8Xrdsz-bqeIW3yTORZ1XB6_BrKzLDWWwC_bNG2g,4811
|
123
|
-
pyegeria/data_designer_omvs.py,sha256=
|
129
|
+
pyegeria/data_designer_omvs.py,sha256=ularpYC7X133UXSyeVrE972io9M9yssJRf1aTflsQTY,202535
|
124
130
|
pyegeria/dr.egeria spec.md,sha256=QC_z3EqJ0WW18NYQFW_AtqO4SMWH5MJNVmM--54VzX4,959
|
125
131
|
pyegeria/egeria_cat_client.py,sha256=d8dQNPLzL4efi99OJfH1T-Rt1N0k9Rf9LX8LpuhiFls,2179
|
126
132
|
pyegeria/egeria_client.py,sha256=egGv41eb94P_lWIQ54I_90WT_IukJ_J6ZLOYCHpx2js,4676
|
@@ -139,7 +145,7 @@ pyegeria/md_processing_utils_orig.py,sha256=SToZtXQiysi2_vmIY4-T2NIELRirzQ1zjkho
|
|
139
145
|
pyegeria/mermaid_utilities.py,sha256=Zcn8JRrqtf62oHoxuvP9tQ5G-BFxOGMNfr7-peuykgY,54290
|
140
146
|
pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
|
141
147
|
pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
|
142
|
-
pyegeria/output_formatter.py,sha256=
|
148
|
+
pyegeria/output_formatter.py,sha256=8cGBu2d9MpSF8nEoPUPbVtvoF-gk0uLnA6p8G8RdH6o,16284
|
143
149
|
pyegeria/platform_services.py,sha256=YEpZsGGsbSdesN8ceyFhV0OMzKG6znTZrREMTRimLps,41701
|
144
150
|
pyegeria/project_manager_omvs.py,sha256=612rYbu2eLR8Sgv9nBzjkFJ2PuxIBd_b-zwcnpVbXhc,70665
|
145
151
|
pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
|
@@ -150,8 +156,8 @@ pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDT
|
|
150
156
|
pyegeria/utils.py,sha256=fhSN5yOb3-Yelwt9WpBkWRmP5u7I9Jr-M27H0dD-G14,5871
|
151
157
|
pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
|
152
158
|
pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
|
153
|
-
pyegeria-5.4.0.
|
154
|
-
pyegeria-5.4.0.
|
155
|
-
pyegeria-5.4.0.
|
156
|
-
pyegeria-5.4.0.
|
157
|
-
pyegeria-5.4.0.
|
159
|
+
pyegeria-5.4.0.dev8.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
160
|
+
pyegeria-5.4.0.dev8.dist-info/METADATA,sha256=ihOV7do3UMiDTO9GQ38Hf_ozX76jpysQXZOrSjuiHEI,2799
|
161
|
+
pyegeria-5.4.0.dev8.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
162
|
+
pyegeria-5.4.0.dev8.dist-info/entry_points.txt,sha256=mrQADxAkv37zeCb6z2XEX0AXjJaXirTJWfDn0BWYwPg,6303
|
163
|
+
pyegeria-5.4.0.dev8.dist-info/RECORD,,
|
@@ -10,6 +10,7 @@ delete_element=commands.tech.generic_actions:delete_element
|
|
10
10
|
delete_glossary=commands.cat.glossary_actions:delete_glossary
|
11
11
|
delete_term=commands.cat.glossary_actions:delete_term
|
12
12
|
delete_todo=commands.my.todo_actions:delete_todo
|
13
|
+
dr_egeria_help=commands.cat.dr_egeria_command_help:main
|
13
14
|
dr_egeria_jupyter=commands.cat.dr_egeria_jupyter:process_jupyter_notebook
|
14
15
|
dr_egeria_md=commands.cat.dr_egeria_md:process_markdown_file
|
15
16
|
egeria_login=commands.cli.egeria_login_tui:login
|
File without changes
|
File without changes
|