pyegeria 5.4.8.3__py3-none-any.whl → 5.4.8.5__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 pyegeria might be problematic. Click here for more details.
- md_processing/dr_egeria.py +1 -1
- md_processing/md_commands/solution_architect_commands.py +8 -3
- pyegeria/_client_new.py +1 -0
- pyegeria/base_report_formats.py +1 -0
- {pyegeria-5.4.8.3.dist-info → pyegeria-5.4.8.5.dist-info}/METADATA +3 -3
- {pyegeria-5.4.8.3.dist-info → pyegeria-5.4.8.5.dist-info}/RECORD +10 -10
- {pyegeria-5.4.8.3.dist-info → pyegeria-5.4.8.5.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.8.3.dist-info → pyegeria-5.4.8.5.dist-info}/entry_points.txt +0 -0
- {pyegeria-5.4.8.3.dist-info → pyegeria-5.4.8.5.dist-info}/licenses/LICENSE +0 -0
- {pyegeria-5.4.8.3.dist-info → pyegeria-5.4.8.5.dist-info}/top_level.txt +0 -0
md_processing/dr_egeria.py
CHANGED
|
@@ -8,7 +8,7 @@ from datetime import datetime
|
|
|
8
8
|
from loguru import logger
|
|
9
9
|
from pydantic import ValidationError
|
|
10
10
|
|
|
11
|
-
from .md_commands.project_commands import process_link_project_dependency_command
|
|
11
|
+
from md_processing.md_commands.project_commands import process_link_project_dependency_command
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
@@ -389,7 +389,7 @@ def process_blueprint_upsert_command(egeria_client: EgeriaTech, txt: str, direct
|
|
|
389
389
|
'guid': guid, 'display_name': display_name
|
|
390
390
|
})
|
|
391
391
|
journal_entry_guid = add_note_in_dr_e(egeria_client, qualified_name, display_name, journal_entry)
|
|
392
|
-
msg = f"
|
|
392
|
+
msg = f"\n\nCreated Element `{display_name}` with GUID {guid}\n\n___"
|
|
393
393
|
print(Markdown(msg))
|
|
394
394
|
logger.success(msg)
|
|
395
395
|
return egeria_client.get_solution_blueprint_by_guid(guid, output_format='MD', report_spec = "Solution-Blueprint-DrE")
|
|
@@ -537,7 +537,9 @@ def process_solution_component_upsert_command(egeria_client: EgeriaTech, txt: st
|
|
|
537
537
|
})
|
|
538
538
|
|
|
539
539
|
egeria_client.update_solution_component(guid, body)
|
|
540
|
-
|
|
540
|
+
msg = f"\n==>Updated {object_type} `{display_name}` with GUID {guid}\n"
|
|
541
|
+
logger.success(msg)
|
|
542
|
+
print(Markdown(msg))
|
|
541
543
|
update_element_dictionary(qualified_name, {
|
|
542
544
|
'guid': guid, 'display_name': display_name
|
|
543
545
|
})
|
|
@@ -602,8 +604,10 @@ def process_solution_component_upsert_command(egeria_client: EgeriaTech, txt: st
|
|
|
602
604
|
update_element_dictionary(qualified_name, {
|
|
603
605
|
'guid': guid, 'display_name': display_name
|
|
604
606
|
})
|
|
605
|
-
msg = f"Created Element `{display_name}` with GUID {guid}\n\n___"
|
|
607
|
+
msg = f"\n\n==> Created Element `{display_name}` with GUID {guid}\n\n___"
|
|
606
608
|
logger.success(msg)
|
|
609
|
+
print(Markdown(msg))
|
|
610
|
+
|
|
607
611
|
if search_keywords:
|
|
608
612
|
add_search_keywords(egeria_client, guid, search_keywords)
|
|
609
613
|
|
|
@@ -632,6 +636,7 @@ def process_solution_component_upsert_command(egeria_client: EgeriaTech, txt: st
|
|
|
632
636
|
logger.trace(msg)
|
|
633
637
|
journal_entry_guid = add_note_in_dr_e(egeria_client, qualified_name, display_name,
|
|
634
638
|
journal_entry)
|
|
639
|
+
|
|
635
640
|
return egeria_client.get_solution_component_by_guid(guid, output_format='MD')
|
|
636
641
|
else:
|
|
637
642
|
msg = f"Failed to create element `{display_name}` with GUID {guid}\n\n___"
|
pyegeria/_client_new.py
CHANGED
|
@@ -4925,6 +4925,7 @@ class Client2(BaseClient):
|
|
|
4925
4925
|
elif isinstance(body, dict):
|
|
4926
4926
|
validated_body = self._get_request_adapter.validate_python(body)
|
|
4927
4927
|
else:
|
|
4928
|
+
_type = _type.replace(" ", "")
|
|
4928
4929
|
body = {
|
|
4929
4930
|
"class": "GetRequestBody",
|
|
4930
4931
|
"metadataElementTypeName": _type
|
pyegeria/base_report_formats.py
CHANGED
|
@@ -2205,6 +2205,7 @@ generated_format_sets = FormatSetDict({
|
|
|
2205
2205
|
Column(name='Qualified Name', key='qualified_name'),
|
|
2206
2206
|
Column(name='Category', key='category'),
|
|
2207
2207
|
Column(name='Description', key='description'),
|
|
2208
|
+
Column(name='URL', key='url'),
|
|
2208
2209
|
Column(name='Status', key='element_status'),
|
|
2209
2210
|
Column(name='Solution Component Type', key='solution_component_type'),
|
|
2210
2211
|
Column(name='Planned Deployed Implementation Type',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyegeria
|
|
3
|
-
Version: 5.4.8.
|
|
3
|
+
Version: 5.4.8.5
|
|
4
4
|
Summary: A python client for Egeria
|
|
5
5
|
Author-email: Dan Wolfson <dan.wolfson@pdr-associates.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -28,8 +28,8 @@ Requires-Dist: pydantic-settings>=2.10.1
|
|
|
28
28
|
Requires-Dist: pydevd-pycharm>=253.27642.35
|
|
29
29
|
Requires-Dist: wcwidth
|
|
30
30
|
Requires-Dist: altair
|
|
31
|
-
Requires-Dist: modelcontextprotocol
|
|
32
|
-
Requires-Dist: mcp>=1
|
|
31
|
+
Requires-Dist: modelcontextprotocol>=0.1
|
|
32
|
+
Requires-Dist: mcp>=0.1
|
|
33
33
|
Requires-Dist: markers>=0.3.0
|
|
34
34
|
Requires-Dist: pytest-asyncio>=1.2.0
|
|
35
35
|
Provides-Extra: test
|
|
@@ -91,7 +91,7 @@ commands/tech/list_valid_metadata_values.py,sha256=_zgOdq2N6s7GjLd8iEc5xVfplKfOn
|
|
|
91
91
|
commands/tech/table_tech_templates.py,sha256=jI1c9YKa3KirArMNXeCRKeaiVdwQSN-ztPqkag6jdZs,9500
|
|
92
92
|
commands/tech/x_list_related_elements.py,sha256=ynaw792VnbMZ9IXBi5mmG7xBfC0kn0esKiFTsjvLGzc,5900
|
|
93
93
|
md_processing/__init__.py,sha256=Tv2JW-jtlYWUSut4bAqGNfHL9LaKlLgSbj_sM98uX6o,7394
|
|
94
|
-
md_processing/dr_egeria.py,sha256=
|
|
94
|
+
md_processing/dr_egeria.py,sha256=WF-3-TtIOUlVpekKcUEJ-LaLwjyyCirsoKJj9dJ_T9E,20824
|
|
95
95
|
md_processing/data/commands-working.json,sha256=uCo_azcuuYqGm7QffJeCGj7PyZuZRGdu7kKf4XWmMoA,1162560
|
|
96
96
|
md_processing/data/commands.json,sha256=AAZepSGa1NF7iSRRhSpUfVO9rv01ylklmI1Z0SfE-6E,1272835
|
|
97
97
|
md_processing/data/generated_format_sets.json,sha256=80Z9yt8ll4x-gODzOQyGIweKoqfSsVIin9esaKUeKsA,98631
|
|
@@ -103,7 +103,7 @@ md_processing/md_commands/glossary_commands.py,sha256=F8BPFL5GlCQ3oSs8svSL5Pipzm
|
|
|
103
103
|
md_processing/md_commands/governance_officer_commands.py,sha256=drq7H-f9J8j1x9Gw2FKi9M92RsF22oX7cu_9JJdzWJ4,26467
|
|
104
104
|
md_processing/md_commands/product_manager_commands.py,sha256=RPfApQQ4z0dLTBF9jUN1AaxnYAk_Vn6axlzvSiOgMk8,57742
|
|
105
105
|
md_processing/md_commands/project_commands.py,sha256=bgMD93Z87zZZn3hxVOXgPFZ4xYhw7yr-NeNzRsj1DOg,17095
|
|
106
|
-
md_processing/md_commands/solution_architect_commands.py,sha256=
|
|
106
|
+
md_processing/md_commands/solution_architect_commands.py,sha256=Oqtz6nIKA-ZoznZCzevq0rCnsp29j1_mwi1uQoiNyL0,55302
|
|
107
107
|
md_processing/md_commands/view_commands.py,sha256=AQsjR6whW_mV-_I_Ihq2xCv3dbEXip6EQEpzB0-UiA0,12042
|
|
108
108
|
md_processing/md_processing_utils/__init__.py,sha256=LxAmxlcji26ziKV4gGar01d95gL9vgToRIeJW8N-Ifs,80
|
|
109
109
|
md_processing/md_processing_utils/common_md_proc_utils.py,sha256=SzzSuXQ6FhUwasKG-u3mXIqD-OW-H_3oiZb_WkWnJnM,59104
|
|
@@ -119,7 +119,7 @@ md_processing/md_processing_utils/message_constants.py,sha256=UBf18obM83umM6zplR
|
|
|
119
119
|
pyegeria/__init__.py,sha256=CRv1k6EjVlE1l0FzASDbIYhZ2GVMr6LR4r8sZASTYg0,4452
|
|
120
120
|
pyegeria/_base_client.py,sha256=w2Cid4GZOTwc4dutipk2vy2cs2qj-faMF21eClitFEI,21525
|
|
121
121
|
pyegeria/_client.py,sha256=hJHn5pD8sbelP_M9dK-M5Z2CYqpRXzXfg1UCgAdQ6dQ,33416
|
|
122
|
-
pyegeria/_client_new.py,sha256=
|
|
122
|
+
pyegeria/_client_new.py,sha256=0tZbk4dq9yrSq0NHP_Ca2DKjhl4oDSGBqWh8djeOkho,196452
|
|
123
123
|
pyegeria/_client_new_backup.py,sha256=Kznc1iHG_y1T4D2UlccbgHpczmcQkPSrTut4Wxqq2Rg,187354
|
|
124
124
|
pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
|
|
125
125
|
pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
|
|
@@ -130,7 +130,7 @@ pyegeria/_output_formats.py,sha256=u8_7zOI5VCWT-hJM5Bc7eCHQZI4kEfOhjzufINivEtg,3
|
|
|
130
130
|
pyegeria/_validators.py,sha256=pNxND0dN2qvyuGE52N74l1Ezfrh2p9Hao2ziR_t1ENI,7425
|
|
131
131
|
pyegeria/asset_catalog_omvs.py,sha256=sBXPgkRe_ZFOunZ-xoZe4qndILf9L0dPRHpQb_95bHw,29030
|
|
132
132
|
pyegeria/automated_curation.py,sha256=DaEg_qB2TfgveKm4Y0aEKppoWwyUeY96VqjumVDCYN4,143103
|
|
133
|
-
pyegeria/base_report_formats.py,sha256=
|
|
133
|
+
pyegeria/base_report_formats.py,sha256=mzEeR1GHdUKto6sRLYH7d4TGZUHhxZeSnn5-1GzGJMc,194321
|
|
134
134
|
pyegeria/classification_manager.py,sha256=HO5UcSb65FjeKWx8COD4kNYKd3zUfeGG05TiHV2CYis,282275
|
|
135
135
|
pyegeria/classification_manager_omvs.py,sha256=CFFEZv9hBPv0UXIwyu5JyGBg_edGlRn5w6MUkPVC4pY,183952
|
|
136
136
|
pyegeria/collection_manager.py,sha256=bfFQQiqOo2cVf5IqkQxFwZJn-SLhBngCGzJdS7KzncY,239812
|
|
@@ -172,9 +172,9 @@ pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDT
|
|
|
172
172
|
pyegeria/utils.py,sha256=xOTxk9PH8ZGZmgIwz_a6rczTVLADLEjucr10ZJTUnY4,9272
|
|
173
173
|
pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
|
|
174
174
|
pyegeria/x_action_author_omvs.py,sha256=XyRsUgN-xnWR-cJayzo5RtY4Xv1uBDML4pwaKHrwC1w,6430
|
|
175
|
-
pyegeria-5.4.8.
|
|
176
|
-
pyegeria-5.4.8.
|
|
177
|
-
pyegeria-5.4.8.
|
|
178
|
-
pyegeria-5.4.8.
|
|
179
|
-
pyegeria-5.4.8.
|
|
180
|
-
pyegeria-5.4.8.
|
|
175
|
+
pyegeria-5.4.8.5.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
176
|
+
pyegeria-5.4.8.5.dist-info/METADATA,sha256=NdGD6uLkrtS4XCOXNdBt6ZH-pw4evhcYVWwS-JjBLDg,7336
|
|
177
|
+
pyegeria-5.4.8.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
178
|
+
pyegeria-5.4.8.5.dist-info/entry_points.txt,sha256=erl7EsY2vrll8DL_wr28FlvoWk7TQ2liioGYej0C2X4,6585
|
|
179
|
+
pyegeria-5.4.8.5.dist-info/top_level.txt,sha256=48Mt-O3p8yO7jiEv6-Y9bUsryqJn9BQsiyV0BqSn8tk,32
|
|
180
|
+
pyegeria-5.4.8.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|