pyegeria 5.3.3.9__py3-none-any.whl → 5.3.3.10.dev2__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.
- pyegeria/__init__.py +1 -1
- pyegeria/commands/cat/list_terms.py +1 -1
- pyegeria/commands/ops/monitor_server_status.py +2 -2
- pyegeria/mermaid_utilities.py +3 -3
- {pyegeria-5.3.3.9.dist-info → pyegeria-5.3.3.10.dev2.dist-info}/METADATA +1 -1
- {pyegeria-5.3.3.9.dist-info → pyegeria-5.3.3.10.dev2.dist-info}/RECORD +9 -9
- {pyegeria-5.3.3.9.dist-info → pyegeria-5.3.3.10.dev2.dist-info}/LICENSE +0 -0
- {pyegeria-5.3.3.9.dist-info → pyegeria-5.3.3.10.dev2.dist-info}/WHEEL +0 -0
- {pyegeria-5.3.3.9.dist-info → pyegeria-5.3.3.10.dev2.dist-info}/entry_points.txt +0 -0
pyegeria/__init__.py
CHANGED
@@ -68,7 +68,7 @@ from .create_tech_guid_lists import build_global_guid_lists
|
|
68
68
|
from .classification_manager_omvs import ClassificationManager
|
69
69
|
from .feedback_manager_omvs import FeedbackManager
|
70
70
|
from .metadata_explorer_omvs import MetadataExplorer
|
71
|
-
from .mermaid_utilities import load_mermaid, render_mermaid, generate_process_graph
|
71
|
+
from .mermaid_utilities import load_mermaid, render_mermaid, generate_process_graph, check_mermaid_version
|
72
72
|
from .egeria_my_client import EgeriaMy
|
73
73
|
from .egeria_cat_client import EgeriaCat
|
74
74
|
from .egeria_tech_client import EgeriaTech
|
@@ -90,7 +90,7 @@ def display_glossary_terms(
|
|
90
90
|
style="bold bright_white on black", width=width, force_terminal=not jupyter
|
91
91
|
)
|
92
92
|
g_client = EgeriaTech(view_server, view_url, user_id, user_pass)
|
93
|
-
token = g_client.create_egeria_bearer_token()
|
93
|
+
token = g_client.create_egeria_bearer_token(user_id, user_pass)
|
94
94
|
if (glossary_name is not None) and (glossary_name != "*"):
|
95
95
|
glossary_guid = g_client.get_guid_for_name(glossary_name)
|
96
96
|
if glossary_guid == "No elements found":
|
@@ -81,7 +81,7 @@ def display_status(
|
|
81
81
|
table.add_column("Description")
|
82
82
|
table.add_column("Server Type")
|
83
83
|
table.add_column("Last Started")
|
84
|
-
|
84
|
+
token = p_client.create_egeria_bearer_token()
|
85
85
|
platform_list = p_client.get_platforms_by_type()
|
86
86
|
if type(platform_list) is str:
|
87
87
|
print("No OMAG Server Platforms found?")
|
@@ -145,7 +145,7 @@ def display_status(
|
|
145
145
|
try:
|
146
146
|
with Live(generate_table(), refresh_per_second=4, screen=True) as live:
|
147
147
|
while True:
|
148
|
-
time.sleep(
|
148
|
+
time.sleep(5)
|
149
149
|
live.update(generate_table())
|
150
150
|
|
151
151
|
except (
|
pyegeria/mermaid_utilities.py
CHANGED
@@ -77,9 +77,9 @@ def load_mermaid():
|
|
77
77
|
mermaid_js = """
|
78
78
|
<script src="https://unpkg.com/mermaid@11.4.1/dist/mermaid.min.js"></script>
|
79
79
|
<script>
|
80
|
-
document.addEventListener('DOMContentLoaded', function() {
|
81
|
-
mermaid.initialize({
|
82
|
-
}
|
80
|
+
document.addEventListener('DOMContentLoaded', function() {
|
81
|
+
mermaid.initialize({startOnLoad: true});
|
82
|
+
});
|
83
83
|
</script>
|
84
84
|
|
85
85
|
"""
|
@@ -1,5 +1,5 @@
|
|
1
1
|
pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
|
2
|
-
pyegeria/__init__.py,sha256=
|
2
|
+
pyegeria/__init__.py,sha256=tz1P5kqvvPpSUDWTTP6aFdi8jLc5lV5yWvlxjHddXtU,21970
|
3
3
|
pyegeria/_client.py,sha256=9yZfSyLJqq5ORlM7NzeaozXjPX0i9YsfD2Ue3mN9Y9Q,30811
|
4
4
|
pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
|
5
5
|
pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
|
@@ -31,7 +31,7 @@ pyegeria/commands/cat/list_projects.py,sha256=2DViol2HcXP6S6eZzu8YGP-XAujOYLVfkJ
|
|
31
31
|
pyegeria/commands/cat/list_servers_deployed_imp.py,sha256=tl5Zcai7lL69HaCr_KAUH_r1Nv5jOWPntXclUxUWQy0,5712
|
32
32
|
pyegeria/commands/cat/list_tech_type_elements.py,sha256=obBkibs7VuEbBU34vUlfqF-Ef3bsVHY0dAdal8bmhQw,6866
|
33
33
|
pyegeria/commands/cat/list_tech_types.py,sha256=mMssYETcdDYvtWzVpQjTPTtxTqq6Bhw2u76xAvRVmL8,4646
|
34
|
-
pyegeria/commands/cat/list_terms.py,sha256=
|
34
|
+
pyegeria/commands/cat/list_terms.py,sha256=wt70WKv5Hq3Lkvjqd2psj3UsyJVemt-SFY-dpuoDRDQ,9577
|
35
35
|
pyegeria/commands/cat/list_todos.py,sha256=I1b8kJJnekWEm3NpwiLStxr50no7KTUfDrI6pBExzA8,6549
|
36
36
|
pyegeria/commands/cat/list_user_ids.py,sha256=7TmksDy7rV0HTpn2nFKwLKf4Hq3s80GoR3_SmPhL_Hc,5100
|
37
37
|
pyegeria/commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
|
@@ -174,7 +174,7 @@ pyegeria/commands/ops/monitor_gov_eng_status.py,sha256=nSPZscEFnlljaA4AMNQqhY2Sy
|
|
174
174
|
pyegeria/commands/ops/monitor_integ_daemon_status.py,sha256=1HPJHIrBIohJPPw0wHae2rvGgLSmgMgucRujcug5Qwk,11768
|
175
175
|
pyegeria/commands/ops/monitor_platform_status.py,sha256=J_DdUDWv2FtY9DeJamdnWJmFK6Ua9L1GU_yFvb-zcTc,7180
|
176
176
|
pyegeria/commands/ops/monitor_server_startup.py,sha256=bvLqxoRiw9tJzNtChZ70a5w_23UyJLlrlmbMnmZ5QN4,3908
|
177
|
-
pyegeria/commands/ops/monitor_server_status.py,sha256=
|
177
|
+
pyegeria/commands/ops/monitor_server_status.py,sha256=ZEi4HUSXVgN0z25dvfIRiY6V6kARsaz7daz9uG0RKbA,7005
|
178
178
|
pyegeria/commands/ops/orig_monitor_server_list.py,sha256=tHGigEuUVZ8OA4ut5UscYK9HHeQevQ_MlIkE4XHYER8,4644
|
179
179
|
pyegeria/commands/ops/orig_monitor_server_status.py,sha256=povaYQ-Y8QJvwaFuWp_BLUThjjTTbmu-21h7zi8NlWk,4026
|
180
180
|
pyegeria/commands/ops/refresh_integration_daemon.py,sha256=aOIy7xsYfNwuiZ-8aXcd2RoRaBkakYQF5JPIWz1dlxE,2969
|
@@ -217,7 +217,7 @@ pyegeria/feedback_manager_omvs.py,sha256=B66e3ZCaC_dirb0mcb2Nz3PYh2ZKsoMAYNOb3eu
|
|
217
217
|
pyegeria/full_omag_server_config.py,sha256=k3fUfopAFAE3OKkFR7zZPiki_FYj6j2xQ4oD2SVaefQ,47350
|
218
218
|
pyegeria/glossary_browser_omvs.py,sha256=NcitYaZJqwVODBO5zBtWpXPNUJJ3DKzEbRaOFSAyUlg,93554
|
219
219
|
pyegeria/glossary_manager_omvs.py,sha256=tBjoHrrHJLasXoeQSpW-KpF3vEQdN_GR3jfcceTjt_c,132444
|
220
|
-
pyegeria/mermaid_utilities.py,sha256=
|
220
|
+
pyegeria/mermaid_utilities.py,sha256=iHsLYJ4VBER71HnVn1K4FRDyZRGnlwwyAdZXphpnjC4,9898
|
221
221
|
pyegeria/metadata_explorer_omvs.py,sha256=WwkFvAnDzJTw8dPos7j3wCG6gpQ0BjcMmYXl-ckjn28,88723
|
222
222
|
pyegeria/my_profile_omvs.py,sha256=DyECbUFEcgokrIbzdMMNljC3bqfqKGXAF2wZEpzvRYs,34666
|
223
223
|
pyegeria/platform_services.py,sha256=CJIOYIFEbcIGwdWlApAQcXxZTsdrhFtpJcm4O3p7dG0,41646
|
@@ -229,8 +229,8 @@ pyegeria/template_manager_omvs.py,sha256=Sw5xsQAhy7a48xFCg59mg9_nqyhawoS9v4WyF-P
|
|
229
229
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
230
230
|
pyegeria/valid_metadata_omvs.py,sha256=cCt5CCLv6BdzCu90n68r_PkG_PEQJjrtwCxio7K6yko,65034
|
231
231
|
pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
|
232
|
-
pyegeria-5.3.3.
|
233
|
-
pyegeria-5.3.3.
|
234
|
-
pyegeria-5.3.3.
|
235
|
-
pyegeria-5.3.3.
|
236
|
-
pyegeria-5.3.3.
|
232
|
+
pyegeria-5.3.3.10.dev2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
233
|
+
pyegeria-5.3.3.10.dev2.dist-info/METADATA,sha256=9Z4xBGOIlQkOHw9gkEUpIAW3I77DPdB-Xb2xJx0cxiU,2741
|
234
|
+
pyegeria-5.3.3.10.dev2.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
235
|
+
pyegeria-5.3.3.10.dev2.dist-info/entry_points.txt,sha256=sqVSCsr2oVnXtKTgRs5_F9OjbtexhmaXE330sO8V9bk,5873
|
236
|
+
pyegeria-5.3.3.10.dev2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|