pyegeria 5.4.3.2__py3-none-any.whl → 5.4.3.4__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.2025-09-01_07-02-58_818650.log.zip +0 -0
- commands/cat/debug_log.2025-09-02_07-44-39_567276.log.zip +0 -0
- commands/cat/debug_log.2025-09-03_07-45-21_986388.log.zip +0 -0
- commands/cat/debug_log.log +5379 -8107
- commands/cat/list_format_set.py +2 -2
- commands/tech/list_information_supply_chains.py +1 -1
- commands/tech/list_solution_blueprints.py +1 -1
- commands/tech/list_solution_components.py +1 -1
- commands/tech/list_solution_roles.py +1 -1
- md_processing/__init__.py +0 -4
- md_processing/data/commands.json +1258 -615
- md_processing/dr_egeria.py +6 -9
- md_processing/dr_egeria_inbox/data_spec_test.md +44 -418
- md_processing/dr_egeria_inbox/gov_def.md +239 -3
- md_processing/dr_egeria_inbox/product.md +13 -5
- md_processing/dr_egeria_outbox/monday/processed-2025-09-01 14:03-product.md +209 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-09-01 14:24-product.md +263 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-09-01 16:03-data_spec_test.md +2374 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-09-01 16:05-data_spec_test.md +2374 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-09-02 08:28-data_spec_test.md +2321 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-09-02 08:37-data_spec_test.md +2304 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-09-02 08:56-data_spec_test.md +2324 -0
- md_processing/dr_egeria_outbox/monday/processed-2025-09-02 09:00-data_spec_test.md +2324 -0
- md_processing/md_commands/data_designer_commands.py +170 -570
- md_processing/md_commands/product_manager_commands.py +1 -1
- md_processing/md_processing_utils/common_md_utils.py +55 -13
- md_processing/md_processing_utils/extraction_utils.py +14 -7
- md_processing/md_processing_utils/md_processing_constants.py +1 -1
- pyegeria/___external_references.py +3255 -0
- pyegeria/__init__.py +1 -1
- pyegeria/_client_new.py +9 -7
- pyegeria/_output_formats.py +124 -3
- pyegeria/collection_manager.py +17 -56
- pyegeria/config.py +10 -1
- pyegeria/data_designer.py +172 -124
- pyegeria/egeria_client.py +1 -1
- pyegeria/egeria_tech_client.py +1 -1
- pyegeria/glossary_manager.py +71 -85
- pyegeria/governance_officer.py +26 -29
- pyegeria/output_formatter.py +127 -1
- pyegeria/project_manager.py +33 -36
- pyegeria/{solution_architect_omvs.py → solution_architect.py} +443 -388
- {pyegeria-5.4.3.2.dist-info → pyegeria-5.4.3.4.dist-info}/METADATA +1 -1
- {pyegeria-5.4.3.2.dist-info → pyegeria-5.4.3.4.dist-info}/RECORD +47 -41
- md_processing/dr_egeria_outbox/friday/processed-2025-08-29 16:30-output_tests.md +0 -103
- md_processing/dr_egeria_outbox/friday/processed-2025-08-29 16:40-output_tests.md +0 -115
- md_processing/dr_egeria_outbox/friday/processed-2025-08-30 21:15-glossary_test1.md +0 -326
- md_processing/dr_egeria_outbox/friday/processed-2025-08-31 13:27-glossary_test1.md +0 -369
- md_processing/dr_egeria_outbox/friday/processed-2025-08-31 13:33-glossary_test1.md +0 -392
- md_processing/dr_egeria_outbox/friday/processed-2025-08-31 20:57-glossary_test1.md +0 -400
- {pyegeria-5.4.3.2.dist-info → pyegeria-5.4.3.4.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.3.2.dist-info → pyegeria-5.4.3.4.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.3.2.dist-info → pyegeria-5.4.3.4.dist-info}/entry_points.txt +0 -0
md_processing/dr_egeria.py
CHANGED
@@ -39,10 +39,6 @@ from md_processing import (extract_command, process_glossary_upsert_command, pro
|
|
39
39
|
PROJECT_COMMANDS, process_link_project_hierarchy_command)
|
40
40
|
from .md_commands.data_designer_commands import (process_data_spec_upsert_command,
|
41
41
|
process_data_dict_upsert_command,
|
42
|
-
process_data_collection_list_command,
|
43
|
-
process_data_structure_list_command,
|
44
|
-
process_data_field_list_command,
|
45
|
-
process_data_class_list_command,
|
46
42
|
process_data_field_upsert_command,
|
47
43
|
process_data_structure_upsert_command,
|
48
44
|
process_data_class_upsert_command)
|
@@ -178,13 +174,14 @@ def process_md_file(input_file: str, output_folder:str, directive: str, server:
|
|
178
174
|
result = process_data_class_upsert_command(client, current_block, directive)
|
179
175
|
elif potential_command in ["View Data Dictionaries", "View Data Dictionary", "View Data Specifications",
|
180
176
|
"View Data Specs"]:
|
181
|
-
result =
|
177
|
+
result = process_output_command(client, current_block, directive)
|
178
|
+
|
182
179
|
elif potential_command in ["View Data Structures", "View Data Structure"]:
|
183
|
-
result =
|
180
|
+
result = process_output_command(client, current_block, directive)
|
184
181
|
elif potential_command in ["View Data Fields", "View Data Field"]:
|
185
|
-
result =
|
182
|
+
result = process_output_command(client, current_block, directive)
|
186
183
|
elif potential_command in ["View Data Classes", "View Data Class"]:
|
187
|
-
result =
|
184
|
+
result = process_output_command(client, current_block, directive)
|
188
185
|
elif potential_command in ["Create Digital Product", "Create Data Product","Update Digital Product", "Update Data Product"]:
|
189
186
|
result = process_digital_product_upsert_command(client, current_block, directive)
|
190
187
|
elif potential_command in ["Create Agreement", "Create Data Sharing Agreement", "Create Digital Subscription",
|
@@ -302,7 +299,7 @@ def process_md_file(input_file: str, output_folder:str, directive: str, server:
|
|
302
299
|
else:
|
303
300
|
if directive != 'display':
|
304
301
|
print("\nNo updates detected. New File not created.")
|
305
|
-
logger.error("===> Unknown Command?
|
302
|
+
logger.error(f"===> Unknown Command? <===")
|
306
303
|
|
307
304
|
except PyegeriaException as e:
|
308
305
|
print_basic_exception(e)
|