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
commands/cat/list_format_set.py
CHANGED
@@ -300,9 +300,9 @@ def execute_format_set_action(
|
|
300
300
|
return
|
301
301
|
|
302
302
|
# Sort the results by display_name if available
|
303
|
-
if "display_name"
|
303
|
+
if result[0].get("display_name", None):
|
304
304
|
sorted_results = sorted(result, key=lambda k: k.get("display_name", ""))
|
305
|
-
elif "Display Name"
|
305
|
+
elif result[0].get("Display Name", None):
|
306
306
|
sorted_results = sorted(result, key=lambda k: k.get("Display Name", ""))
|
307
307
|
else:
|
308
308
|
sorted_results = result
|
@@ -28,7 +28,7 @@ from pyegeria import (
|
|
28
28
|
save_mermaid_html,
|
29
29
|
)
|
30
30
|
from pyegeria._exceptions import print_exception_response
|
31
|
-
from pyegeria.
|
31
|
+
from pyegeria.solution_architect import SolutionArchitect
|
32
32
|
|
33
33
|
disable_ssl_warnings = True
|
34
34
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
@@ -29,7 +29,7 @@ from pyegeria import (
|
|
29
29
|
)
|
30
30
|
from pyegeria._exceptions import print_exception_response
|
31
31
|
from pyegeria.mermaid_utilities import EGERIA_MERMAID_FOLDER
|
32
|
-
from pyegeria.
|
32
|
+
from pyegeria.solution_architect import SolutionArchitect
|
33
33
|
|
34
34
|
disable_ssl_warnings = True
|
35
35
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
@@ -29,7 +29,7 @@ from pyegeria import (
|
|
29
29
|
)
|
30
30
|
from pyegeria._exceptions import print_exception_response
|
31
31
|
from pyegeria.mermaid_utilities import EGERIA_MERMAID_FOLDER
|
32
|
-
from pyegeria.
|
32
|
+
from pyegeria.solution_architect import SolutionArchitect
|
33
33
|
|
34
34
|
disable_ssl_warnings = True
|
35
35
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
@@ -29,7 +29,7 @@ from pyegeria import (
|
|
29
29
|
)
|
30
30
|
from pyegeria._exceptions import print_exception_response
|
31
31
|
from pyegeria.mermaid_utilities import EGERIA_MERMAID_FOLDER
|
32
|
-
from pyegeria.
|
32
|
+
from pyegeria.solution_architect import SolutionArchitect
|
33
33
|
|
34
34
|
disable_ssl_warnings = True
|
35
35
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
md_processing/__init__.py
CHANGED
@@ -28,10 +28,6 @@ from md_processing.md_commands.solution_architect_commands import (process_bluep
|
|
28
28
|
from md_processing.md_commands.data_designer_commands import (process_data_field_upsert_command,
|
29
29
|
process_data_spec_upsert_command,
|
30
30
|
process_data_dict_upsert_command,
|
31
|
-
process_data_collection_list_command,
|
32
|
-
process_data_structure_list_command,
|
33
|
-
process_data_field_list_command,
|
34
|
-
process_data_class_list_command,
|
35
31
|
process_data_structure_upsert_command)
|
36
32
|
|
37
33
|
from md_processing.md_commands.glossary_commands import (process_glossary_upsert_command,
|