pyegeria 5.2.0.13__py3-none-any.whl → 5.2.0.20__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/collection_manager_omvs.py +9 -6
- pyegeria/commands/cat/get_collection.py +1 -1
- pyegeria/commands/cat/list_assets.py +8 -17
- pyegeria/commands/cli/egeria.py +15 -25
- pyegeria/commands/cli/egeria_login_tui.py +11 -3
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/collection-graph 2024-12-12 at 11.33.18@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/get-Collection 2024-12-12 at 09.29.25.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-collections 2024-12-10 at 14.25.51@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-todos 2024-12-12 at 11.46.30@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-user-ids 2024-12-12 at 11.51.09@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/tech-types 2024-12-12 at 11.37.20@2x.png +0 -0
- pyegeria/commands/ops/monitor_integ_daemon_status.py +1 -1
- pyegeria/metadata_explorer_omvs.py +3 -3
- {pyegeria-5.2.0.13.dist-info → pyegeria-5.2.0.20.dist-info}/METADATA +1 -1
- {pyegeria-5.2.0.13.dist-info → pyegeria-5.2.0.20.dist-info}/RECORD +18 -23
- {pyegeria-5.2.0.13.dist-info → pyegeria-5.2.0.20.dist-info}/entry_points.txt +1 -1
- pyegeria/commands/doc/Visual Command Reference/cat/show/assets/deployed-catalogs 2024-11-20 at 16.17.43@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.30.02@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.31.47@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.32.11@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.34.19@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.36.42@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.36.55@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.37.07@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-12-06 at 08.46.30@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-12-06 at 11.27.56@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/catalogs 2024-11-25 at 16.28.53@2x.png +0 -0
- {pyegeria-5.2.0.13.dist-info → pyegeria-5.2.0.20.dist-info}/LICENSE +0 -0
- {pyegeria-5.2.0.13.dist-info → pyegeria-5.2.0.20.dist-info}/WHEEL +0 -0
@@ -2646,8 +2646,8 @@ class CollectionManager(Client):
|
|
2646
2646
|
|
2647
2647
|
Returns
|
2648
2648
|
-------
|
2649
|
-
list |
|
2650
|
-
The list of member information if successful, otherwise
|
2649
|
+
list | str
|
2650
|
+
The list of member information if successful, otherwise the string "No members found"
|
2651
2651
|
|
2652
2652
|
Raises
|
2653
2653
|
------
|
@@ -2663,14 +2663,17 @@ class CollectionManager(Client):
|
|
2663
2663
|
members = await self._async_get_collection_members(
|
2664
2664
|
collection_guid, collection_name, collection_qname
|
2665
2665
|
)
|
2666
|
-
if type(members) is str:
|
2667
|
-
return
|
2666
|
+
if (type(members) is str) or (len(members) == 0):
|
2667
|
+
return "No members found"
|
2668
2668
|
# finally, construct a list of member information
|
2669
2669
|
for member_rel in members:
|
2670
2670
|
member_guid = member_rel["elementHeader"]["guid"]
|
2671
2671
|
member_resp = await self._async_get_collection(member_guid)
|
2672
|
-
member = member_resp
|
2672
|
+
member = member_resp.get("element", None)
|
2673
|
+
if member is None:
|
2674
|
+
continue
|
2673
2675
|
# print(json.dumps(member, indent = 4))
|
2676
|
+
|
2674
2677
|
member_instance = {
|
2675
2678
|
"name": member["properties"]["name"],
|
2676
2679
|
"qualifiedName": member["properties"]["qualifiedName"],
|
@@ -2680,7 +2683,7 @@ class CollectionManager(Client):
|
|
2680
2683
|
}
|
2681
2684
|
member_list.append(member_instance)
|
2682
2685
|
|
2683
|
-
return member_list
|
2686
|
+
return member_list if len(member_list) > 0 else "No members found"
|
2684
2687
|
|
2685
2688
|
def get_member_list(
|
2686
2689
|
self,
|
@@ -96,7 +96,7 @@ def collection_viewer(
|
|
96
96
|
walk_collection_hierarchy(branch, collection_client, member["guid"])
|
97
97
|
else:
|
98
98
|
tt = tree.add(
|
99
|
-
f"[bold magenta on black]No collections
|
99
|
+
f"[bold magenta on black]No collections found in {root_collection_name}"
|
100
100
|
)
|
101
101
|
|
102
102
|
try:
|
@@ -3,10 +3,8 @@
|
|
3
3
|
SPDX-License-Identifier: Apache-2.0
|
4
4
|
Copyright Contributors to the ODPi Egeria project.
|
5
5
|
|
6
|
-
|
6
|
+
List assets
|
7
7
|
|
8
|
-
|
9
|
-
A simple display for glossary terms
|
10
8
|
"""
|
11
9
|
import argparse
|
12
10
|
import os
|
@@ -18,6 +16,7 @@ from rich.console import Console
|
|
18
16
|
from rich.prompt import Prompt
|
19
17
|
from rich.markdown import Markdown
|
20
18
|
from rich.table import Table
|
19
|
+
from rich.text import Text
|
21
20
|
|
22
21
|
from pyegeria import (
|
23
22
|
InvalidParameterException,
|
@@ -78,9 +77,8 @@ def display_assets(
|
|
78
77
|
caption=f"View Server '{server}' @ Platform - {url}",
|
79
78
|
expand=True,
|
80
79
|
)
|
81
|
-
table.add_column("Display Name",
|
80
|
+
table.add_column("Display Name / Qualified Name / GUID", width=36)
|
82
81
|
table.add_column("Type Name")
|
83
|
-
table.add_column("GUID", no_wrap=True)
|
84
82
|
table.add_column("Technology Type")
|
85
83
|
# table.add_column("Qualified Name",max_width=15)
|
86
84
|
table.add_column("Matching Elements")
|
@@ -100,23 +98,16 @@ def display_assets(
|
|
100
98
|
properties = element["properties"]
|
101
99
|
header = element["elementHeader"]
|
102
100
|
nested = element.get("matchingElements", "---")
|
101
|
+
qualified_name = properties["qualifiedName"]
|
102
|
+
display_name = Text(f"{properties.get("displayName", "---")}\n\n{qualified_name}\n\n"
|
103
|
+
f"{header['guid']}", justify="center")
|
103
104
|
|
104
|
-
display_name = properties.get("displayName", "---")
|
105
|
-
# qualified_name = properties["qualifiedName"] # we decided that qualified name wasn't useful
|
106
105
|
type_name = header["type"]["typeName"]
|
107
106
|
tech_type = properties.get("deployedImplementationType", "---")
|
108
|
-
guid = header["guid"]
|
109
|
-
#### We decided that path wasn't useful
|
110
|
-
# path_name = element.get("extendedProperties", None)
|
111
|
-
# if path_name:
|
112
|
-
# path = path_name.get("pathName"," ")
|
113
|
-
# else:
|
114
|
-
# path = " "
|
115
|
-
match_md = ""
|
116
107
|
|
117
108
|
match_tab = Table(expand=True)
|
118
109
|
match_tab.add_column("Type Name")
|
119
|
-
match_tab.add_column("GUID",
|
110
|
+
match_tab.add_column("GUID", width=36)
|
120
111
|
match_tab.add_column("Properties")
|
121
112
|
|
122
113
|
for match_t in nested:
|
@@ -130,7 +121,7 @@ def display_assets(
|
|
130
121
|
match_details_out = Markdown(match_details_md)
|
131
122
|
match_tab.add_row(match_type_name, matching_guid, match_details_out)
|
132
123
|
|
133
|
-
table.add_row(display_name, type_name,
|
124
|
+
table.add_row(display_name, type_name, tech_type, match_tab)
|
134
125
|
|
135
126
|
g_client.close_session()
|
136
127
|
return table
|
pyegeria/commands/cli/egeria.py
CHANGED
@@ -235,9 +235,16 @@ def cli(
|
|
235
235
|
ctx.ensure_object(Config)
|
236
236
|
|
237
237
|
|
238
|
-
|
239
|
-
|
240
|
-
|
238
|
+
# cli.add_command(login)
|
239
|
+
@cli.command("login")
|
240
|
+
@click.pass_context
|
241
|
+
def egeria_login(ctx):
|
242
|
+
"""Login to Egeria platform"""
|
243
|
+
user = login(
|
244
|
+
ctx.obj.userid, ctx.obj.password, ctx.obj.view_server, ctx.obj.view_server_url
|
245
|
+
)
|
246
|
+
ctx.obj.userid = user
|
247
|
+
click.echo(f" user is {ctx.obj.userid}")
|
241
248
|
|
242
249
|
|
243
250
|
#
|
@@ -1318,27 +1325,6 @@ def show_tech_type_elements(ctx, tech_type):
|
|
1318
1325
|
tech_viewer(tech_type, c.view_server, c.view_server_url, c.userid, c.password)
|
1319
1326
|
|
1320
1327
|
|
1321
|
-
@show_cat_info.command("collection")
|
1322
|
-
@click.option(
|
1323
|
-
"--root-collection",
|
1324
|
-
default="Coco Pharmaceuticals Governance Domains",
|
1325
|
-
help="View of tree of collections from a given root",
|
1326
|
-
)
|
1327
|
-
@click.pass_context
|
1328
|
-
def show_collection(ctx, root_collection):
|
1329
|
-
"""Display information about a collection"""
|
1330
|
-
c = ctx.obj
|
1331
|
-
collection_viewer(
|
1332
|
-
root_collection,
|
1333
|
-
c.view_server,
|
1334
|
-
c.view_server_url,
|
1335
|
-
c.userid,
|
1336
|
-
c.password,
|
1337
|
-
c.jupyter,
|
1338
|
-
c.width,
|
1339
|
-
)
|
1340
|
-
|
1341
|
-
|
1342
1328
|
@show_project_group.command("projects")
|
1343
1329
|
@click.option("--search-string", default="*", help="List Projects by Search String")
|
1344
1330
|
@click.pass_context
|
@@ -1836,4 +1822,8 @@ def repository(ctx):
|
|
1836
1822
|
repository.add_command(load_archive)
|
1837
1823
|
|
1838
1824
|
if __name__ == "__main__":
|
1839
|
-
|
1825
|
+
while True:
|
1826
|
+
try:
|
1827
|
+
cli()
|
1828
|
+
except Exception as e:
|
1829
|
+
click.echo(f"Error: {e}")
|
@@ -9,7 +9,7 @@ Peter Coldicott
|
|
9
9
|
|
10
10
|
import os
|
11
11
|
from os import system
|
12
|
-
|
12
|
+
import click
|
13
13
|
from textual.reactive import Reactive
|
14
14
|
|
15
15
|
from textual.app import App, ComposeResult
|
@@ -36,6 +36,7 @@ from textual.widgets import (
|
|
36
36
|
|
37
37
|
from typing import Any
|
38
38
|
|
39
|
+
|
39
40
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
40
41
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
41
42
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
@@ -294,10 +295,17 @@ class Egeria_login(App):
|
|
294
295
|
)
|
295
296
|
|
296
297
|
|
297
|
-
|
298
|
+
# @click.command("egeria-login")
|
299
|
+
# @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use.")
|
300
|
+
# @click.option(
|
301
|
+
# "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
|
302
|
+
# )
|
303
|
+
# @click.option("--userid", default=EGERIA_USER, help="Egeria user")
|
304
|
+
# @click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
|
305
|
+
def login(userid: str, password: str, server: str, url: str) -> None:
|
298
306
|
app = Egeria_login()
|
299
307
|
app.run()
|
300
|
-
return
|
308
|
+
return "peterprofile"
|
301
309
|
|
302
310
|
|
303
311
|
if __name__ == "__main__":
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -197,7 +197,7 @@ def display_integration_daemon_status(
|
|
197
197
|
|
198
198
|
try:
|
199
199
|
if paging is True:
|
200
|
-
console = Console(width=width, force_terminal=not jupyter)
|
200
|
+
console = Console(width=width) # main_pagig, force_terminal=not jupyter)
|
201
201
|
with console.pager():
|
202
202
|
console.print(generate_table(search_list))
|
203
203
|
else:
|
@@ -1742,7 +1742,7 @@ class MetadataExplorer(Client):
|
|
1742
1742
|
)
|
1743
1743
|
|
1744
1744
|
url = (
|
1745
|
-
f"{base_path(self, self.view_server)}/metadata-elements/by-search-
|
1745
|
+
f"{base_path(self, self.view_server)}/metadata-elements/by-search-conditions"
|
1746
1746
|
f"{possible_query_params}"
|
1747
1747
|
)
|
1748
1748
|
|
@@ -1951,7 +1951,7 @@ class MetadataExplorer(Client):
|
|
1951
1951
|
)
|
1952
1952
|
|
1953
1953
|
url = (
|
1954
|
-
f"{base_path(self, self.view_server)}/relationships/by-search-
|
1954
|
+
f"{base_path(self, self.view_server)}/relationships/by-search-conditions"
|
1955
1955
|
f"{possible_query_params}"
|
1956
1956
|
)
|
1957
1957
|
|
@@ -1959,7 +1959,7 @@ class MetadataExplorer(Client):
|
|
1959
1959
|
"POST", url, body_slimmer(body), time_out=time_out
|
1960
1960
|
)
|
1961
1961
|
|
1962
|
-
elements = response.json().get("
|
1962
|
+
elements = response.json().get("relationshipList", "No elements found")
|
1963
1963
|
if type(elements) is list:
|
1964
1964
|
if len(elements) == 0:
|
1965
1965
|
return "No elements found"
|
@@ -8,19 +8,19 @@ pyegeria/_validators.py,sha256=rnZelHJnjHaLZ8UhUTDyB59MfIUJifhALtkYoHBaos4,12736
|
|
8
8
|
pyegeria/asset_catalog_omvs.py,sha256=OqZYjf5RBwuTbYvu43CL100VCNqYuXHDog2jc6sOBtA,25580
|
9
9
|
pyegeria/automated_curation_omvs.py,sha256=BwNuF7XQJAV-POvzaWwFh0TS5yRnHZZPhlayvtIMlwY,130243
|
10
10
|
pyegeria/classification_manager_omvs.py,sha256=LglNvCqzaQb83iLDCFhvfmcs5pqc-XtSYRWLriwCo-w,187079
|
11
|
-
pyegeria/collection_manager_omvs.py,sha256=
|
11
|
+
pyegeria/collection_manager_omvs.py,sha256=Zl3clg29bORkfBDunklgna0cIceF278njqzDW9pUJwk,101697
|
12
12
|
pyegeria/commands/README.md,sha256=zNfWZppDxoKqTJeRtcewzku9z1m6_hKacCyQUQw1iq4,1974
|
13
13
|
pyegeria/commands/__init__.py,sha256=IBYAvBbuGneZ06YSFjZsU-Zxx-b-Qo4ZV_Vd4zz4AI0,844
|
14
14
|
pyegeria/commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
|
15
15
|
pyegeria/commands/cat/__init__.py,sha256=3LHTWeyxLdFGDhWVTBzgJ6Y_9b2pM5CO2-kbsUASv4M,300
|
16
16
|
pyegeria/commands/cat/exp_list_glossaries.py,sha256=Gz_4XdwxhblIriuXajjwXueyRRGDwwyTXcfQiFjn1xY,5804
|
17
17
|
pyegeria/commands/cat/get_asset_graph.py,sha256=4AO4KlCgb7vbMihJK7W_GAnrd4J9sKwc4kXxa2ZrRW4,12447
|
18
|
-
pyegeria/commands/cat/get_collection.py,sha256=
|
18
|
+
pyegeria/commands/cat/get_collection.py,sha256=dzgRIlMkQo0su-ZBdWaZ2txkC_J-bvassw-QDPJCzT0,5352
|
19
19
|
pyegeria/commands/cat/get_project_dependencies.py,sha256=B0JaMSUi0hzVgos1sTY2uUPGy1DzKEJMIbbYfMUWvQA,5981
|
20
20
|
pyegeria/commands/cat/get_project_structure.py,sha256=n2GbNd07w1DTo7jTR8b2ewXRyNcat_2BcCBRyDMldwk,5969
|
21
21
|
pyegeria/commands/cat/get_tech_type_elements.py,sha256=-m3Q0BoNqkCtV8h75vMwTcOV-_ymEXmnJcr4Ec7WMAw,6180
|
22
22
|
pyegeria/commands/cat/glossary_actions.py,sha256=U9Pz__GTVU8aKM4XqjWK5cLjaB218d9QSXe0Sr5_uAI,12180
|
23
|
-
pyegeria/commands/cat/list_assets.py,sha256=
|
23
|
+
pyegeria/commands/cat/list_assets.py,sha256=VyMp33T7oGpnIer9g6YaxraYJXtpmbZwn--MIrjRVT4,6270
|
24
24
|
pyegeria/commands/cat/list_cert_types.py,sha256=x3R7ydIgXQmQyObE2Ffvr3187acFlsN1fXD1vuznJrc,7123
|
25
25
|
pyegeria/commands/cat/list_collections.py,sha256=I-0h_zFfbAUzmbnr8T0fGZEzsw9FQsrgozdn3s_hr4Y,5982
|
26
26
|
pyegeria/commands/cat/list_deployed_catalogs.py,sha256=vXmR6FF9s1Utbci3HGJQRY_AaSzBb8prmVGuJGUQTLQ,8201
|
@@ -34,9 +34,9 @@ pyegeria/commands/cat/list_terms.py,sha256=yq3kyfCZ6Hfbqc30L6o-b3Ebp6NpywD99KL4k
|
|
34
34
|
pyegeria/commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
|
35
35
|
pyegeria/commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
|
36
36
|
pyegeria/commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
|
37
|
-
pyegeria/commands/cli/egeria.py,sha256=
|
37
|
+
pyegeria/commands/cli/egeria.py,sha256=L5Pq2lJh_h_JSTAYRVOiUCi5gGbAJln_9cSdFRUGbtM,44992
|
38
38
|
pyegeria/commands/cli/egeria_cat.py,sha256=xsLz1cLvVzh6EV-oz2Ou01KroQ5g3yRKP7FCtvpD5SA,16069
|
39
|
-
pyegeria/commands/cli/egeria_login_tui.py,sha256=
|
39
|
+
pyegeria/commands/cli/egeria_login_tui.py,sha256=m7gUiiPdeu2vxjiyxy-6OhAekSa5kVQnOUur2qyvbUA,9480
|
40
40
|
pyegeria/commands/cli/egeria_my.py,sha256=H7QO9pRjH0nOghsGev4Cu3DCjp-UkRrV6_tl5npwRlI,5851
|
41
41
|
pyegeria/commands/cli/egeria_ops.py,sha256=bHH3pFnw9jc6aSvnbafsM6ch0juI7WSZwREnMKB-I4Q,12241
|
42
42
|
pyegeria/commands/cli/egeria_tech.py,sha256=jntbc-TZqu8qGK-MScQNUbRdRLjV_8J-B-JOaaCu6MU,15015
|
@@ -44,19 +44,8 @@ pyegeria/commands/cli/ops_config.py,sha256=-fTndSzs1zDmWwKk8hu6FMtBwOyXrZKpIemgy
|
|
44
44
|
pyegeria/commands/cli/txt_custom_v2.tcss,sha256=ixkzpFyTZ5i3byFO9EmEAeJgzbEa7nZb_3iTgxNtVPk,232
|
45
45
|
pyegeria/commands/doc/Visual Command Reference/cat/show/assets/Asset-graph 2024-11-20 at 15.56.42.png,sha256=gL7LDmS0OUeDmmmz6ayZL7qbriaos6ryct-2T0D7CIM,769210
|
46
46
|
pyegeria/commands/doc/Visual Command Reference/cat/show/assets/Assets-in-domain 2024-11-20 at 15.49.55@2x.png,sha256=Op6NHsqPfYVvpKX46Z-IX8G_Of8rrVtDK34C1MJIJdw,540605
|
47
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/assets/deployed-catalogs 2024-11-20 at 16.17.43@2x.png,sha256=MUgoH6orUk9qUeCv8yEjuQ6sAao3eZyK3DOF4aXfqkw,525598
|
48
47
|
pyegeria/commands/doc/Visual Command Reference/cat/show/assets/elements-of-type 2024-11-20 at 16.01.35.png,sha256=NCtzoZau5ANXjNh2IH57htfVvWAtMns87_M_5E9DSQ0,627528
|
49
48
|
pyegeria/commands/doc/Visual Command Reference/cat/show/assets/tech-type-elements 2024-11-20 at 16.05.05.png,sha256=-QCu00HYhdkOJqclthiBSVKQuz1qHVothDwng53n_cw,271680
|
50
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.30.02@2x.png,sha256=kxrrFy-hqNTDPQmrUwyByLi_023ZHTlHlL8heNql24s,183908
|
51
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.31.47@2x.png,sha256=PDacdAd3hSRGJA24_2P_phl56vkm-VwOMdYwNwKocZo,108456
|
52
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.32.11@2x.png,sha256=niZtKiQ7ZklOiLrH6lRcAbrLdOE79mMkkwV1g3L6EDk,429483
|
53
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.34.19@2x.png,sha256=KZ2U9b7ZUT193hwyeGzpJt7GQGgWr8sh7hZBqXbFmDQ,424947
|
54
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.36.42@2x.png,sha256=ki-tG_CkXAa-SGajxkfkwHPaOw2uipUKYRf9H86FB_k,27874
|
55
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.36.55@2x.png,sha256=Y3XWP5RB8tY93ChiAHEGU1oc-o5O-3RRoAIs9SnHdLc,98769
|
56
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-11-25 at 20.37.07@2x.png,sha256=pJZ0Yz5bXAadZasEBzUTxFy_VRB216saLD6OkyjnOWQ,455058
|
57
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-12-06 at 08.46.30@2x.png,sha256=IbIpTsOAKt-TyvH-_tTG9_jemENgeVZ5QIoMuVLhHFo,950898
|
58
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/CleanShot 2024-12-06 at 11.27.56@2x.png,sha256=PZKjjJIht9SUouRNu5m5gNmc62mI0BXycnS7GLCbLxA,337971
|
59
|
-
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/catalogs 2024-11-25 at 16.28.53@2x.png,sha256=VXRq9sOKApd5Vm1w5GwABI4RJM1V50R8S_rjQfNV3QI,171649
|
60
49
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs-2024-11-20 at 16.17.43@2x.png,sha256=MUgoH6orUk9qUeCv8yEjuQ6sAao3eZyK3DOF4aXfqkw,525598
|
61
50
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-11-25 at 20.14.50@2x.png,sha256=W6_JDqWKBOqeEMTAteX7JJ_MIPOigc2ttD01UYBxNxg,443831
|
62
51
|
pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-servers 2024-11-25 at 20.21.25@2x.png,sha256=f3SFaK7r_zYVqwFuFkrezU5TjnZX223TLEw8swpgiz8,345658
|
@@ -64,6 +53,12 @@ pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-glossaries
|
|
64
53
|
pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-terms 2024-11-25 at 20.32.11.png,sha256=ZXKfeUjT9b6eLJ4rNZHX90kZnJ2isBY7fYjKWPAySq4,388301
|
65
54
|
pyegeria/commands/doc/Visual Command Reference/cat/show/info/asset-types 2024-11-25 at 20.34.19@2x.png,sha256=VLLZx312kPPKeRExy-5cmTM2bWAiSZXGE5kBcfY48iQ,393665
|
66
55
|
pyegeria/commands/doc/Visual Command Reference/cat/show/info/certification-types 2024-11-25 at 20.37.07.png,sha256=H4MFdNO28zomNaF9a00WDTyq09G86gnZc4MGl5nfWN4,417083
|
56
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/info/collection-graph 2024-12-12 at 11.33.18@2x.png,sha256=8YOzAowFhcbKK4HWWLZPObDvNJfFjRhRP-vOOLQKcHc,354344
|
57
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/info/get-Collection 2024-12-12 at 09.29.25.png,sha256=vShNv0MrjkpM0IT-9gCdar5i8d-K-b_is--QI2-T2cw,346181
|
58
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-collections 2024-12-10 at 14.25.51@2x.png,sha256=DuzrBRGUpJ_11gwFM1AUN9g6hwm2-hy-x_mKccYqOYc,126772
|
59
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-todos 2024-12-12 at 11.46.30@2x.png,sha256=Xiscu_CUv8CRGnbos6s4tmag4m80CcxlTBTvZ2GrbqY,77112
|
60
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-user-ids 2024-12-12 at 11.51.09@2x.png,sha256=BGpUys-GvmaI8oc5G6FR5a19n20KyviyEWU5q_b_6ps,438268
|
61
|
+
pyegeria/commands/doc/Visual Command Reference/cat/show/info/tech-types 2024-12-12 at 11.37.20@2x.png,sha256=MZ-kGkrZ34htqJZQX15MI0Dl9vqFmqLO8jRToTkfnm8,474612
|
67
62
|
pyegeria/commands/doc/command-overview.md,sha256=XTwDAR_fUrW0A4krMWuXYCZr1NDFiaE_3LH42y9rmr0,11059
|
68
63
|
pyegeria/commands/doc/glossary/basic-glossary-tui.md,sha256=2HoFDMCbIZuh4sBA1xRuu7qHQPyGwWS-JNUm5XNZ8JE,5880
|
69
64
|
pyegeria/commands/doc/glossary/images/delete-glossary-step1 2024-11-06 at 15.47.23@2x.png,sha256=rppVqEwN1ZrSMzyXnsYqDl7fnPs0zTlE7PMmX4VUbQI,203332
|
@@ -134,7 +129,7 @@ pyegeria/commands/ops/monitor_asset_events.py,sha256=cjdlVqE0XYnoRW3aorNbsVkjByD
|
|
134
129
|
pyegeria/commands/ops/monitor_engine_activity.py,sha256=8RX-3znYx-4oWsI8nGFwODkWZ5Fc4qPttam_twymcjs,9856
|
135
130
|
pyegeria/commands/ops/monitor_engine_activity_c.py,sha256=eW23z4KJyZFj0OCURlFodZ8qhJwepnZQU_dB6Xggk3I,10747
|
136
131
|
pyegeria/commands/ops/monitor_gov_eng_status.py,sha256=nR0xI_8L8W6gOJm8-jp8BaAeOLf1Gd5ikYP43AbJMxo,9094
|
137
|
-
pyegeria/commands/ops/monitor_integ_daemon_status.py,sha256=
|
132
|
+
pyegeria/commands/ops/monitor_integ_daemon_status.py,sha256=Mt1QYjUVCtFyCTbHUj4hmNTm1f8nOBggnEZ0CNzIGe4,11383
|
138
133
|
pyegeria/commands/ops/monitor_platform_status.py,sha256=Hy0QxdCm3NzAfhwJgTBuSlunLTrGgKtXr2sPpqKmUr8,7164
|
139
134
|
pyegeria/commands/ops/monitor_server_startup.py,sha256=0pwnhv761uuFHGJXVANa5RhQQPPTXFldJ45TfeT7qfk,3901
|
140
135
|
pyegeria/commands/ops/monitor_server_status.py,sha256=O7iixd-6jzaDO7QrK1JuXLdrDF291YvxLbgLUk3BYQs,6870
|
@@ -177,7 +172,7 @@ pyegeria/full_omag_server_config.py,sha256=k3fUfopAFAE3OKkFR7zZPiki_FYj6j2xQ4oD2
|
|
177
172
|
pyegeria/glossary_browser_omvs.py,sha256=NcitYaZJqwVODBO5zBtWpXPNUJJ3DKzEbRaOFSAyUlg,93554
|
178
173
|
pyegeria/glossary_manager_omvs.py,sha256=SWgPGkRag5hOXYM-cpbWI6oW_DXUZBt4ePtmOP7ZYUc,128787
|
179
174
|
pyegeria/mermaid_utilities.py,sha256=GXiS-subb5nJcDqlThZWX2T8WspU1neFfhf4TxRoMh4,8344
|
180
|
-
pyegeria/metadata_explorer_omvs.py,sha256=
|
175
|
+
pyegeria/metadata_explorer_omvs.py,sha256=_rfUP_y2wFiqb9xXRhITfPZZ7QGAhIZetotu0FCl1zU,85614
|
181
176
|
pyegeria/my_profile_omvs.py,sha256=DyECbUFEcgokrIbzdMMNljC3bqfqKGXAF2wZEpzvRYs,34666
|
182
177
|
pyegeria/platform_services.py,sha256=CJIOYIFEbcIGwdWlApAQcXxZTsdrhFtpJcm4O3p7dG0,41646
|
183
178
|
pyegeria/project_manager_omvs.py,sha256=Y7Lyqh4jIujJrr_Ub7feo904FN_uz4R10T4hKhqE1Uw,67499
|
@@ -188,8 +183,8 @@ pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZi
|
|
188
183
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
189
184
|
pyegeria/valid_metadata_omvs.py,sha256=kmcyXBsu99L25r16w9xVXqU_KwADsGuft4yPDZzyUds,65032
|
190
185
|
pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
|
191
|
-
pyegeria-5.2.0.
|
192
|
-
pyegeria-5.2.0.
|
193
|
-
pyegeria-5.2.0.
|
194
|
-
pyegeria-5.2.0.
|
195
|
-
pyegeria-5.2.0.
|
186
|
+
pyegeria-5.2.0.20.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
187
|
+
pyegeria-5.2.0.20.dist-info/METADATA,sha256=06S1Je4kJkBRGzyDMoTOEHafaDo1TaDcAeg0DbmlBww,2880
|
188
|
+
pyegeria-5.2.0.20.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
189
|
+
pyegeria-5.2.0.20.dist-info/entry_points.txt,sha256=DjIDZ5lJ3cM4FjaWPaxT008wjuKUk9dewFiAJuZbqZk,5298
|
190
|
+
pyegeria-5.2.0.20.dist-info/RECORD,,
|
@@ -6,6 +6,7 @@ create_todo=pyegeria.commands.my.todo_actions:create_todo
|
|
6
6
|
delete_glossary=pyegeria.commands.cat.glossary_actions:delete_glossary
|
7
7
|
delete_term=pyegeria.commands.cat.glossary_actions:delete_term
|
8
8
|
delete_todo=pyegeria.commands.my.todo_actions:delete_todo
|
9
|
+
egeria_login=pyegeria.commands.cli.egeria_login_tui:login
|
9
10
|
export_terms_to_file=pyegeria.commands.cat.glossary_actions:export_terms
|
10
11
|
get_asset_graph=pyegeria.commands.cat.get_asset_graph:main
|
11
12
|
get_collection=pyegeria.commands.cat.get_collection:main
|
@@ -57,7 +58,6 @@ list_valid_metadata_values=pyegeria.commands.tech.list_valid_metadata_values:mai
|
|
57
58
|
load_archive=pyegeria.commands.ops.load_archive:load_archive
|
58
59
|
load_archive_tui=pyegeria.commands.ops.load_archive:tui
|
59
60
|
load_terms_from_file=pyegeria.commands.cat.glossary_actions:load_terms
|
60
|
-
login=pyegeria.commands.cli.egeria_login_tui:login
|
61
61
|
mark_todo_complete=pyegeria.commands.my.todo_actions:mark_todo_complete
|
62
62
|
monitor_asset_events=pyegeria.commands.ops.monitor_asset_events:main
|
63
63
|
monitor_coco_status=pyegeria.commands.ops.monitor_coco_status:main
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|