pyegeria 0.3.8__py3-none-any.whl → 0.4.0__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/Xfeedback_manager_omvs.py +238 -0
- pyegeria/Xloaded_resources_omvs.py +91 -0
- pyegeria/__init__.py +15 -12
- pyegeria/_client.py +4 -6
- pyegeria/{gov_engine.py → _deprecated_gov_engine.py} +2 -59
- pyegeria/_exceptions.py +5 -6
- pyegeria/_globals.py +3 -1
- pyegeria/asset_catalog_omvs.py +672 -0
- pyegeria/automated_curation_omvs.py +627 -359
- pyegeria/collection_manager_omvs.py +187 -248
- pyegeria/core_guids.py +128 -0
- pyegeria/core_omag_server_config.py +1 -5
- pyegeria/full_omag_server_config.py +53 -83
- pyegeria/glossary_browser_omvs.py +2208 -0
- pyegeria/glossary_manager_omvs.py +3002 -0
- pyegeria/my_profile_omvs.py +2 -7
- pyegeria/platform_services.py +0 -3
- pyegeria/project_manager_omvs.py +9 -15
- pyegeria/registered_info.py +12 -52
- pyegeria/runtime_manager_omvs.py +967 -0
- pyegeria/server_operations.py +1 -5
- pyegeria/valid_metadata_omvs.py +204 -43
- pyegeria-0.4.0.data/scripts/Create_Collection_Sample.py +292 -0
- pyegeria-0.4.0.data/scripts/Create_Sustainability_Collection_Sample.py +115 -0
- pyegeria-0.4.0.data/scripts/get_guid_info.py +86 -0
- pyegeria-0.3.8.data/scripts/view_my_profile.py → pyegeria-0.4.0.data/scripts/get_my_profile.py +8 -34
- {pyegeria-0.3.8.data → pyegeria-0.4.0.data}/scripts/get_tech_details.py +1 -37
- pyegeria-0.4.0.data/scripts/get_tech_type_elements.py +137 -0
- pyegeria-0.4.0.data/scripts/get_tech_type_template.py +137 -0
- {pyegeria-0.3.8.data → pyegeria-0.4.0.data}/scripts/list_asset_types.py +3 -25
- pyegeria-0.4.0.data/scripts/list_assets.py +138 -0
- pyegeria-0.3.8.data/scripts/project_list_viewer.py → pyegeria-0.4.0.data/scripts/list_projects.py +13 -27
- pyegeria-0.4.0.data/scripts/list_registered_services.py +135 -0
- pyegeria-0.3.8.data/scripts/get_relationship_types.py → pyegeria-0.4.0.data/scripts/list_relationship_types.py +25 -43
- pyegeria-0.4.0.data/scripts/list_tech_templates.py +134 -0
- pyegeria-0.3.8.data/scripts/find_todos.py → pyegeria-0.4.0.data/scripts/list_todos.py +11 -39
- pyegeria-0.4.0.data/scripts/list_valid_metadata_values.py +144 -0
- pyegeria-0.4.0.data/scripts/view_asset_graph.py +236 -0
- pyegeria-0.3.8.data/scripts/multi-server_status.py → pyegeria-0.4.0.data/scripts/view_coco_status.py +17 -39
- pyegeria-0.3.8.data/scripts/collection_viewer.py → pyegeria-0.4.0.data/scripts/view_collection.py +12 -31
- pyegeria-0.3.8.data/scripts/engine_action_status.py → pyegeria-0.4.0.data/scripts/view_eng_action_status.py +17 -31
- pyegeria-0.3.8.data/scripts/glossary_view.py → pyegeria-0.4.0.data/scripts/view_glossary.py +2 -2
- pyegeria-0.3.8.data/scripts/gov_engine_status.py → pyegeria-0.4.0.data/scripts/view_gov_eng_status.py +0 -1
- pyegeria-0.3.8.data/scripts/integration_daemon_status.py → pyegeria-0.4.0.data/scripts/view_integ_daemon_status.py +30 -42
- pyegeria-0.3.8.data/scripts/my_todos.py → pyegeria-0.4.0.data/scripts/view_my_todos.py +1 -1
- pyegeria-0.3.8.data/scripts/open_todos.py → pyegeria-0.4.0.data/scripts/view_open_todos.py +3 -24
- pyegeria-0.4.0.data/scripts/view_platform_status.py +123 -0
- pyegeria-0.3.8.data/scripts/server_status.py → pyegeria-0.4.0.data/scripts/view_server_status.py +1 -20
- {pyegeria-0.3.8.dist-info → pyegeria-0.4.0.dist-info}/METADATA +5 -4
- pyegeria-0.4.0.dist-info/RECORD +58 -0
- {pyegeria-0.3.8.dist-info → pyegeria-0.4.0.dist-info}/WHEEL +1 -1
- pyegeria/glossary_omvs.py +0 -789
- pyegeria/loaded_resources_omvs.py +0 -159
- pyegeria-0.3.8.dist-info/RECORD +0 -42
- /pyegeria/{governance_author.py → action_author_omvs.py} +0 -0
- /pyegeria-0.3.8.data/scripts/get_tech_types.py → /pyegeria-0.4.0.data/scripts/list_tech_types.py +0 -0
- /pyegeria-0.3.8.data/scripts/server_status_widget.py → /pyegeria-0.4.0.data/scripts/view_server_list.py +0 -0
- {pyegeria-0.3.8.dist-info → pyegeria-0.4.0.dist-info}/LICENSE +0 -0
- {pyegeria-0.3.8.dist-info → pyegeria-0.4.0.dist-info}/top_level.txt +0 -0
@@ -10,7 +10,6 @@ A simple status display for Open To Dos
|
|
10
10
|
"""
|
11
11
|
|
12
12
|
import argparse
|
13
|
-
import json
|
14
13
|
import time
|
15
14
|
|
16
15
|
from rich import box
|
@@ -24,39 +23,19 @@ from pyegeria._exceptions import (
|
|
24
23
|
UserNotAuthorizedException,
|
25
24
|
print_exception_response,
|
26
25
|
)
|
27
|
-
|
26
|
+
|
28
27
|
from pyegeria.my_profile_omvs import MyProfile
|
29
28
|
disable_ssl_warnings = True
|
30
29
|
|
31
|
-
good_platform1_url = "https://127.0.0.1:9443"
|
32
|
-
good_platform2_url = "https://egeria.pdr-associates.com:7443"
|
33
|
-
bad_platform1_url = "https://localhost:9443"
|
34
|
-
|
35
|
-
# good_platform1_url = "https://127.0.0.1:30080"
|
36
|
-
# good_platform2_url = "https://127.0.0.1:30081"
|
37
|
-
# bad_platform1_url = "https://localhost:9443"
|
38
|
-
|
39
|
-
good_user_1 = "garygeeke"
|
40
|
-
good_user_2 = "erinoverview"
|
41
|
-
bad_user_1 = "eviledna"
|
42
|
-
bad_user_2 = ""
|
43
|
-
|
44
|
-
good_server_1 = "active-metadata-store"
|
45
|
-
good_server_2 = "simple-metadata-store"
|
46
|
-
good_server_3 = "view-server"
|
47
|
-
good_server_4 = "engine-host"
|
48
|
-
bad_server_1 = "coco"
|
49
|
-
bad_server_2 = ""
|
50
|
-
|
51
30
|
|
52
|
-
def display_todos(server: str
|
31
|
+
def display_todos(server: str , url: str, user: str):
|
53
32
|
m_client = MyProfile(server, url, user_id=user)
|
54
33
|
token = m_client.create_egeria_bearer_token(user, "secret")
|
55
34
|
|
56
35
|
def generate_table(search_string:str = '*') -> Table:
|
57
36
|
"""Make a new table."""
|
58
37
|
table = Table(
|
59
|
-
title=f"Open ToDos for Platform {
|
38
|
+
title=f"Open ToDos for Platform {url} @ {time.asctime()}",
|
60
39
|
# style = "black on grey66",
|
61
40
|
header_style="white on dark_blue",
|
62
41
|
show_lines=True,
|
@@ -0,0 +1,123 @@
|
|
1
|
+
#!python
|
2
|
+
"""
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
4
|
+
Copyright Contributors to the ODPi Egeria project.
|
5
|
+
|
6
|
+
Display the status of cataloged platforms and servers.
|
7
|
+
"""
|
8
|
+
|
9
|
+
import time
|
10
|
+
import argparse
|
11
|
+
|
12
|
+
from pyegeria._exceptions import (
|
13
|
+
InvalidParameterException,
|
14
|
+
PropertyServerException,
|
15
|
+
UserNotAuthorizedException,
|
16
|
+
print_exception_response,
|
17
|
+
)
|
18
|
+
from rich.table import Table
|
19
|
+
from rich.live import Live
|
20
|
+
from rich.console import Console
|
21
|
+
|
22
|
+
from pyegeria import RuntimeManager
|
23
|
+
|
24
|
+
disable_ssl_warnings = True
|
25
|
+
console = Console(width=200)
|
26
|
+
|
27
|
+
def display_status(server: str, url: str, username: str):
|
28
|
+
r_client = RuntimeManager(server, url, username)
|
29
|
+
token = r_client.create_egeria_bearer_token(username, "secret")
|
30
|
+
def generate_table() -> Table:
|
31
|
+
"""Make a new table."""
|
32
|
+
table = Table(
|
33
|
+
title=f"Server Status for Platform - {time.asctime()}",
|
34
|
+
# style = "black on grey66",
|
35
|
+
header_style="white on dark_blue",
|
36
|
+
caption=f"Status of Platforms - '{url}'",
|
37
|
+
show_lines=True,
|
38
|
+
# expand=True
|
39
|
+
)
|
40
|
+
table.add_column("Platform Name")
|
41
|
+
# table.add_column("Platform GUID")
|
42
|
+
table.add_column("Platform URL")
|
43
|
+
table.add_column("Platform Origin")
|
44
|
+
table.add_column("Description")
|
45
|
+
table.add_column("Platform Started")
|
46
|
+
table.add_column("Servers")
|
47
|
+
|
48
|
+
server_types = {
|
49
|
+
"Metadata Access Store": "Store",
|
50
|
+
"View Server" : "View",
|
51
|
+
"Engine Host Server" : "EngineHost",
|
52
|
+
"Integration Daemon" : "Integration"
|
53
|
+
}
|
54
|
+
|
55
|
+
platform_list = r_client.get_platforms_by_type()
|
56
|
+
for platform in platform_list:
|
57
|
+
platform_name = platform['properties']["name"]
|
58
|
+
platform_guid = platform['elementHeader']["guid"]
|
59
|
+
platform_desc = platform['properties']["description"]
|
60
|
+
server_list = ""
|
61
|
+
try:
|
62
|
+
platform_report = r_client.get_platform_report(platform_guid)
|
63
|
+
platform_url = platform_report.get('platformURLRoot'," ")
|
64
|
+
platform_origin = platform_report.get("platformOrigin"," ")
|
65
|
+
platform_started = platform_report.get("platformStartTime"," ")
|
66
|
+
|
67
|
+
servers = platform_report.get("omagservers",None)
|
68
|
+
|
69
|
+
if servers is not None:
|
70
|
+
for server in servers:
|
71
|
+
server_name = server.get("serverName"," ")
|
72
|
+
server_type = server.get("serverType"," ")
|
73
|
+
server_status = server.get("serverActiveStatus","UNKNOWN")
|
74
|
+
if server_status in("RUNNING", "STARTING"):
|
75
|
+
status_flag = "[green]"
|
76
|
+
elif server_status in ("INACTIVE", "STOPPING"):
|
77
|
+
status_flag = "[red]"
|
78
|
+
else:
|
79
|
+
server_status = "UNKNOWN"
|
80
|
+
status_flag = "[yellow]"
|
81
|
+
|
82
|
+
serv = f"{status_flag}{server_types[server_type]}: {server_name}\n"
|
83
|
+
server_list = server_list + serv
|
84
|
+
|
85
|
+
except (Exception) as e:
|
86
|
+
# console.print_exception(e)
|
87
|
+
platform_url = " "
|
88
|
+
platform_origin = " "
|
89
|
+
platform_started = " "
|
90
|
+
|
91
|
+
table.add_row(platform_name, platform_url, platform_origin, platform_desc,
|
92
|
+
platform_started, server_list)
|
93
|
+
|
94
|
+
|
95
|
+
return table
|
96
|
+
|
97
|
+
|
98
|
+
try:
|
99
|
+
with Live(generate_table(), refresh_per_second=4, screen=True) as live:
|
100
|
+
while True:
|
101
|
+
time.sleep(2)
|
102
|
+
live.update(generate_table())
|
103
|
+
|
104
|
+
except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
|
105
|
+
print_exception_response(e)
|
106
|
+
|
107
|
+
|
108
|
+
finally:
|
109
|
+
r_client.close_session()
|
110
|
+
|
111
|
+
|
112
|
+
if __name__ == "__main__":
|
113
|
+
parser = argparse.ArgumentParser()
|
114
|
+
parser.add_argument("--server", help="Name of the server to display status for")
|
115
|
+
parser.add_argument("--url", help="URL Platform to connect to")
|
116
|
+
parser.add_argument("--userid", help="User Id")
|
117
|
+
args = parser.parse_args()
|
118
|
+
|
119
|
+
server = args.server if args.server is not None else "view-server"
|
120
|
+
url = args.url if args.url is not None else "https://localhost:9443"
|
121
|
+
userid = args.userid if args.userid is not None else 'erinoverview'
|
122
|
+
|
123
|
+
display_status(server, url, userid)
|
pyegeria-0.3.8.data/scripts/server_status.py → pyegeria-0.4.0.data/scripts/view_server_status.py
RENAMED
@@ -23,27 +23,8 @@ from rich.live import Live
|
|
23
23
|
|
24
24
|
from pyegeria.server_operations import ServerOps
|
25
25
|
|
26
|
-
disable_ssl_warnings = True
|
27
26
|
|
28
|
-
|
29
|
-
good_platform2_url = "https://egeria.pdr-associates.com:7443"
|
30
|
-
bad_platform1_url = "https://localhost:9443"
|
31
|
-
|
32
|
-
|
33
|
-
good_user_1 = "garygeeke"
|
34
|
-
good_user_2 = "erinoverview"
|
35
|
-
bad_user_1 = "eviledna"
|
36
|
-
bad_user_2 = ""
|
37
|
-
|
38
|
-
good_server_1 = "active-metadata-store"
|
39
|
-
good_server_2 = "simple-metadata-store"
|
40
|
-
good_server_3 = "view-server"
|
41
|
-
good_server_4 = "engine-host"
|
42
|
-
bad_server_1 = "coco"
|
43
|
-
bad_server_2 = ""
|
44
|
-
|
45
|
-
|
46
|
-
def test_display_status(server: str = good_server_1, url: str = good_platform2_url, username: str = good_user_1):
|
27
|
+
def test_display_status(server: str, url: str , username: str ):
|
47
28
|
p_client = ServerOps(server, url, username)
|
48
29
|
|
49
30
|
def generate_table() -> Table:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyegeria
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.4.0
|
4
4
|
Summary: A python client for Egeria
|
5
5
|
Home-page: https://egeria-project.org/egeria-python
|
6
6
|
Author: Dan Wolfson
|
@@ -18,8 +18,6 @@ Requires-Dist: requests ~=2.31.0
|
|
18
18
|
Requires-Dist: validators ~=0.22.0
|
19
19
|
Requires-Dist: pytest ~=7.4.2
|
20
20
|
Requires-Dist: urllib3 ~=1.26.15
|
21
|
-
Requires-Dist: tabulate ~=0.9.0
|
22
|
-
Requires-Dist: pandas ~=2.2.0
|
23
21
|
Requires-Dist: rich ~=13.7.1
|
24
22
|
Requires-Dist: httpx ~=0.26.0
|
25
23
|
Provides-Extra: tests
|
@@ -40,13 +38,16 @@ open metadata environment from python. Details about the
|
|
40
38
|
open source Egeria project can be found at [Egeria Project](https://egeria-project.org).
|
41
39
|
|
42
40
|
This package is in active development. There is initial
|
43
|
-
support for many of Egeria's services including
|
41
|
+
support for many of Egeria's services including configuration and operation. This client depends on
|
44
42
|
Egeria 4.4 Snapshot and above - although most of the functions may work on earlier versions of Egeria as well.
|
45
43
|
|
46
44
|
The code is organized to mimic the existing Egeria Java Client structure.
|
47
45
|
|
48
46
|
A new examples folder holds some useful text widgets that help to visualize the status of an Egeria deployment.
|
49
47
|
|
48
|
+
WARNING: files that start with "X" are in-progress placeholders that are not meant to be used..they will mature and
|
49
|
+
evolve.
|
50
|
+
|
50
51
|
All feedback is welcome. Please engage via our [community](http://egeria-project.org/guides/community/),
|
51
52
|
team calls, or via github issues in this repo. If interested in contributing,
|
52
53
|
you can engage via the community or directly reach out to
|
@@ -0,0 +1,58 @@
|
|
1
|
+
pyegeria/Xfeedback_manager_omvs.py,sha256=uNQMOPG08UyIuLzBfYt4uezDyLWdpBgJ2ZuvqumaWuY,9231
|
2
|
+
pyegeria/Xloaded_resources_omvs.py,sha256=_1RKeIfq3ga6nvtOzZ5dWcDFgxNiUOPJhnyMv1iCm9s,3377
|
3
|
+
pyegeria/__init__.py,sha256=PGHAdooCyZwawxAyDzP2Tlj-yjKjdI4oOPtZmw95Qg8,2007
|
4
|
+
pyegeria/_client.py,sha256=uQqfjf0JPacEWcDvbKpCvCypbDmAmGHaFQf_UTPK7VQ,23524
|
5
|
+
pyegeria/_deprecated_gov_engine.py,sha256=_DAEHsksnTKGqL9-TaaMVrfnNOrvatNACfg7pJ-ZX4w,17600
|
6
|
+
pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
|
7
|
+
pyegeria/_globals.py,sha256=IKk40ogVhdYRagyau2k9pJqcs17UZ43Cx4iOeYRojOk,560
|
8
|
+
pyegeria/_validators.py,sha256=DQuMsATRGxGSBtOrVtXlCgWXGhj6Nh-uqPtCsrUGLxk,12703
|
9
|
+
pyegeria/action_author_omvs.py,sha256=m0wsfmyO-VxRDaPpACeIDw8eVAFu3RVbo45RPCUel9M,6340
|
10
|
+
pyegeria/asset_catalog_omvs.py,sha256=Y-Eh0k-zkJNOChVlLbC2bsTSBVLWhk-0-ewCV4YlyDY,25802
|
11
|
+
pyegeria/automated_curation_omvs.py,sha256=_I_93pWi8d6ya_SRwwoyfhMvqzVmVP-qUVoJh_0yJYI,118272
|
12
|
+
pyegeria/collection_manager_omvs.py,sha256=IyGCbqx2Blm0OwCsC2071EeoNWHXyWGl_6pEtacizAs,112642
|
13
|
+
pyegeria/core_guids.py,sha256=00yTuBk0kdrkNyo-Gb5G8O6jAN0_EyVNLgA3z2f-t1Y,4524
|
14
|
+
pyegeria/core_omag_server_config.py,sha256=A-xec_ivX7YMLZynzIMB7l-aYKNkqQHrUBMznoUuiNU,93098
|
15
|
+
pyegeria/full_omag_server_config.py,sha256=zzIyhCDolbLEJrc9JoBK308Mcq_96swYJopBN7_o4n8,45358
|
16
|
+
pyegeria/glossary_browser_omvs.py,sha256=nUCDSQ8cw8vuYgjfcaj1zLIefVI5j51evxPyXCIc4X8,101716
|
17
|
+
pyegeria/glossary_manager_omvs.py,sha256=AyTNBeOwa7ISOkpjzHHEtpiFzFo0ykcEQ525h_wqfMM,133328
|
18
|
+
pyegeria/my_profile_omvs.py,sha256=w-3aL9s7VlonUGtdKgfMSCeYIbCtJn0zDLTuqUxAYFc,42265
|
19
|
+
pyegeria/platform_services.py,sha256=T2UiAl7tPfOBGL_H2b73XyyHtR0Y36irgbaljZTjD4I,41808
|
20
|
+
pyegeria/project_manager_omvs.py,sha256=_U6m2vquu4eEV7aY8X3hsvfm2zX0EBica1reGWX9amY,77078
|
21
|
+
pyegeria/registered_info.py,sha256=GfMcYz3IO0aNquf8qCrYQ9cA5KplhPx1kNt0_nMMpTM,6475
|
22
|
+
pyegeria/runtime_manager_omvs.py,sha256=WekK7Yeyn6Qu9YmbSDo3m57MN0xOsIm9M8kGHfROZHI,37628
|
23
|
+
pyegeria/server_operations.py,sha256=YBdQJjPOmA1uhrUvzrjUKNGUc5nju9bhvCjF3AbdyWk,16164
|
24
|
+
pyegeria/utils.py,sha256=H0mew9IRcbsEi-pZfaT9HGuPO9CMOwnhOgIltyNvqTY,5240
|
25
|
+
pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
|
26
|
+
pyegeria-0.4.0.data/scripts/Create_Collection_Sample.py,sha256=Peoacgx0RRNwL_ZfMUynRcqttp6fdbSi5LZu38ghpD0,11865
|
27
|
+
pyegeria-0.4.0.data/scripts/Create_Sustainability_Collection_Sample.py,sha256=iLBm1LwRLi42Gayyb-wcWZ5NySQ6sc4kVSmwIAzP2Po,5049
|
28
|
+
pyegeria-0.4.0.data/scripts/get_guid_info.py,sha256=Evs5yt9UYIItWHy1jPpu9QvZjDulBQCXFFpNDBJZP9k,2528
|
29
|
+
pyegeria-0.4.0.data/scripts/get_my_profile.py,sha256=XSUxLgcL4sYSoZshnMrHVoRf42ePlmk08v6_24uVQHo,3705
|
30
|
+
pyegeria-0.4.0.data/scripts/get_tech_details.py,sha256=a9XHZ1kz94v3Y1mEioyctLHivwT0Q9DwuhKC3rhk-LI,4301
|
31
|
+
pyegeria-0.4.0.data/scripts/get_tech_type_elements.py,sha256=hNwQuxFdYOKJ-P_Fm0A0nKNY7BxkpaJKaj4vyLChFsQ,4948
|
32
|
+
pyegeria-0.4.0.data/scripts/get_tech_type_template.py,sha256=b1CfFSXem-BaXdcG-QPsjqfKcPNxJgmY-Fb2ZMbmzoI,4944
|
33
|
+
pyegeria-0.4.0.data/scripts/list_asset_types.py,sha256=CxK2IETXIzDlMQbVUcP1WFMvUpFYiyJrfXDgGZVGCko,2810
|
34
|
+
pyegeria-0.4.0.data/scripts/list_assets.py,sha256=wVp70YbFfBqV0Dbuc9cJOx3RIPpctbZsFEermEndL54,4664
|
35
|
+
pyegeria-0.4.0.data/scripts/list_projects.py,sha256=zhadpaLbTDNGxMRxnyx_SQZXygWGsLeM64EEosDR4VQ,4990
|
36
|
+
pyegeria-0.4.0.data/scripts/list_registered_services.py,sha256=NzlyItgcsoXgvV8vjaB3cMAR9GlVkbd6KcOiJ5rxUvs,5085
|
37
|
+
pyegeria-0.4.0.data/scripts/list_relationship_types.py,sha256=CiQNRC_iA3iTZWesuYmWHZn5xuzUajbnSUivO0kjdzw,4179
|
38
|
+
pyegeria-0.4.0.data/scripts/list_tech_templates.py,sha256=DYGE8nP0_Eb4HNIEwcMqGgyZeFwnGTEOeTYIXZ7_i58,5088
|
39
|
+
pyegeria-0.4.0.data/scripts/list_tech_types.py,sha256=xZoCrnmBXa-_WXDW3tBG6dt6IxH-aeQfg07pXM2IrsA,3924
|
40
|
+
pyegeria-0.4.0.data/scripts/list_todos.py,sha256=Kb1o6Q1Ls9Q-rIhl3aowuYX37PA-qGaG-P5BSef1M8M,4165
|
41
|
+
pyegeria-0.4.0.data/scripts/list_valid_metadata_values.py,sha256=_PdwsQ3Vh_a_nyAkS6cBu4UBm1AZecCmNnjC5vobHQ8,5282
|
42
|
+
pyegeria-0.4.0.data/scripts/view_asset_graph.py,sha256=g8KCGP_DTlAl_pdKi9Bshn3hRHsJsbC2h2WqGO0bhcY,8908
|
43
|
+
pyegeria-0.4.0.data/scripts/view_coco_status.py,sha256=CR0_vwTBrKN7MSf1_OQ9MNi_RfmEcC-JucKLiRUZdqg,3188
|
44
|
+
pyegeria-0.4.0.data/scripts/view_collection.py,sha256=zLeQc5KQa_1Hw7zb46EoWwBbXzc1nzbnrPpuBqsxE6E,3233
|
45
|
+
pyegeria-0.4.0.data/scripts/view_eng_action_status.py,sha256=UR-iHx4BrFgliZL4iGNwSqOQGCMHKqxFTKENSmc546o,4936
|
46
|
+
pyegeria-0.4.0.data/scripts/view_glossary.py,sha256=cEQOo-lfrulbcmvr8zBv0bVBdBzqcqCZWORUzUW1nE0,4614
|
47
|
+
pyegeria-0.4.0.data/scripts/view_gov_eng_status.py,sha256=iPr_rYkczY2yVLCKlLMBvLugUAVJ6kro81Gr4c9fzCM,3961
|
48
|
+
pyegeria-0.4.0.data/scripts/view_integ_daemon_status.py,sha256=0D3NrWktuT51pmzSYgA_r5AYqHerFHDmQoxkMxlp3Xk,4565
|
49
|
+
pyegeria-0.4.0.data/scripts/view_my_todos.py,sha256=MmG8pJATR2mbt1tmuo7VPHkVNe_QmyRNdQKBEp4sz_A,5672
|
50
|
+
pyegeria-0.4.0.data/scripts/view_open_todos.py,sha256=RW_yCnzVdAOHvIW4nAaCD5sxYPPGZQN9KTa54MN3YCE,3957
|
51
|
+
pyegeria-0.4.0.data/scripts/view_platform_status.py,sha256=_a52cZ0lf7pXDK0zrtwUQSc3F1MGCFzjhhZIm2jkxms,4419
|
52
|
+
pyegeria-0.4.0.data/scripts/view_server_list.py,sha256=tyx1I7olr6e5kJF22ou9rqsztrRDdrPCq5uVa3hhPBU,3088
|
53
|
+
pyegeria-0.4.0.data/scripts/view_server_status.py,sha256=YFLRz6qx8WoNRbRGhHyVvokaxXjnNSDeG-cTxo22jO0,2836
|
54
|
+
pyegeria-0.4.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
55
|
+
pyegeria-0.4.0.dist-info/METADATA,sha256=qkRNxI10KedME-3ra6sN5kLxigIFfKLuIvLVvIVyvTg,2456
|
56
|
+
pyegeria-0.4.0.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
57
|
+
pyegeria-0.4.0.dist-info/top_level.txt,sha256=tHowU8jow7WJGmbr4QdIk7gJWdslRgbWBiF2lMeduLQ,9
|
58
|
+
pyegeria-0.4.0.dist-info/RECORD,,
|