pyegeria 0.4.0__py3-none-any.whl → 0.4.1__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/core_omag_server_config.py +1 -1
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/list_assets.py +1 -1
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_asset_graph.py +38 -29
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_coco_status.py +10 -9
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_integ_daemon_status.py +45 -23
- {pyegeria-0.4.0.dist-info → pyegeria-0.4.1.dist-info}/METADATA +1 -1
- {pyegeria-0.4.0.dist-info → pyegeria-0.4.1.dist-info}/RECORD +34 -34
- {pyegeria-0.4.0.dist-info → pyegeria-0.4.1.dist-info}/WHEEL +1 -1
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/Create_Collection_Sample.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/Create_Sustainability_Collection_Sample.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/get_guid_info.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/get_my_profile.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/get_tech_details.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/get_tech_type_elements.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/get_tech_type_template.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/list_asset_types.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/list_projects.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/list_registered_services.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/list_relationship_types.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/list_tech_templates.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/list_tech_types.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/list_todos.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/list_valid_metadata_values.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_collection.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_eng_action_status.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_glossary.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_gov_eng_status.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_my_todos.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_open_todos.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_platform_status.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_server_list.py +0 -0
- {pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/view_server_status.py +0 -0
- {pyegeria-0.4.0.dist-info → pyegeria-0.4.1.dist-info}/LICENSE +0 -0
- {pyegeria-0.4.0.dist-info → pyegeria-0.4.1.dist-info}/top_level.txt +0 -0
@@ -1717,7 +1717,7 @@ class CoreServerConfig(Client):
|
|
1717
1717
|
|
1718
1718
|
return response.json().get("services", "No view services found")
|
1719
1719
|
|
1720
|
-
def
|
1720
|
+
def config_all_view_services(self, mdr_server_name: str,
|
1721
1721
|
mdr_server_platform_root_url: str, server_name: str = None) -> None:
|
1722
1722
|
""" Enable all view services that are registered with this OMAG server platform.
|
1723
1723
|
|
@@ -79,7 +79,7 @@ def display_assets(search_string: str, guid: str=None, server: str = good_server
|
|
79
79
|
table.add_column("Qualified Name")
|
80
80
|
|
81
81
|
|
82
|
-
assets = g_client.find_assets_in_domain(search_string, starts_with=
|
82
|
+
assets = g_client.find_assets_in_domain(search_string, starts_with=True,
|
83
83
|
ends_with=False, ignore_case=True, page_size=10)
|
84
84
|
if type(assets) is str:
|
85
85
|
return table
|
@@ -38,20 +38,21 @@ view_server = "view-server"
|
|
38
38
|
|
39
39
|
guid_list = []
|
40
40
|
|
41
|
-
def asset_viewer(
|
41
|
+
def asset_viewer(asset_guid: str, server_name:str, platform_url:str, user:str):
|
42
42
|
|
43
43
|
def build_classifications(classification: dict) -> Markdown:
|
44
44
|
|
45
|
-
class_md = "
|
45
|
+
class_md = ""
|
46
46
|
for c in classification:
|
47
47
|
c_type = c["classificationName"]
|
48
48
|
if c_type == "Anchors":
|
49
49
|
continue
|
50
50
|
class_md += f"* Classification: {c_type}\n"
|
51
|
-
class_props = c
|
52
|
-
|
53
|
-
|
54
|
-
|
51
|
+
class_props = c.get("classificationProperties","---")
|
52
|
+
if type(class_props) is list:
|
53
|
+
for prop in class_props.keys():
|
54
|
+
class_md += f"\t* {prop}: {class_props[prop]}\n"
|
55
|
+
if class_md == "":
|
55
56
|
output = None
|
56
57
|
else:
|
57
58
|
output = class_md
|
@@ -91,59 +92,67 @@ def asset_viewer(asset_name: str, server_name:str, platform_url:str, user:str):
|
|
91
92
|
user_id=user)
|
92
93
|
|
93
94
|
token = a_client.create_egeria_bearer_token(user, "secret")
|
94
|
-
asset_info = a_client.find_assets_in_domain(asset_name)
|
95
|
-
|
95
|
+
# asset_info = a_client.find_assets_in_domain(asset_name)
|
96
|
+
# if type(asset_info) is str:
|
97
|
+
# print("\n No Assets Found - Exiting\n")
|
98
|
+
# sys.exit(1)
|
99
|
+
#
|
100
|
+
# asset_guid = asset_info[0]['guid']
|
101
|
+
|
96
102
|
guid_list.append(asset_guid)
|
97
103
|
|
98
104
|
asset_graph = a_client.get_asset_graph(asset_guid)
|
99
105
|
if type(asset_graph) is not dict:
|
100
|
-
print(f"\n No Asset found for {
|
106
|
+
print(f"\n No Asset found for {asset_guid}")
|
101
107
|
sys.exit(1)
|
102
108
|
|
103
109
|
# print(f"\n{json.dumps(asset_graph, indent =2)}\n")
|
104
|
-
|
105
|
-
style = ""
|
110
|
+
|
106
111
|
|
107
112
|
asset_name = asset_graph["displayName"]
|
108
113
|
qualified_name = asset_graph["qualifiedName"]
|
109
114
|
resource_name = asset_graph["resourceName"]
|
110
115
|
|
116
|
+
tree = Tree(f"{asset_name} ({asset_guid})", style="bold bright_white", guide_style="bold bright_blue")
|
117
|
+
style = ""
|
118
|
+
|
111
119
|
asset_type = asset_graph["type"]["typeName"]
|
112
120
|
asset_origin = asset_graph["origin"]["homeMetadataCollectionName"]
|
113
121
|
asset_creation = asset_graph["versions"]["createTime"]
|
114
122
|
asset_created_by = asset_graph["versions"]["createdBy"]
|
115
123
|
asset_classifications = asset_graph["classifications"]
|
116
|
-
asset_nested_elements = asset_graph
|
124
|
+
asset_nested_elements = asset_graph.get("anchoredElements","----")
|
117
125
|
asset_relationships = asset_graph["relationships"]
|
118
126
|
asset_class_md = build_classifications(asset_classifications)
|
119
127
|
|
120
128
|
|
121
129
|
asset_properties = asset_graph["extendedProperties"]
|
122
|
-
prop_md = ""
|
130
|
+
prop_md = "\n* Extended Properties:\n"
|
123
131
|
for prop in asset_properties:
|
124
|
-
prop_md = f"{prop_md}* {prop}: {asset_properties[prop]}\n"
|
132
|
+
prop_md = f"{prop_md}\n\t* {prop}: {asset_properties[prop]}\n"
|
125
133
|
|
126
|
-
core_md = (f"**Type: {asset_type}
|
134
|
+
core_md = (f"**Type: {asset_type} Created by: {asset_created_by} on {asset_creation}**\n"
|
127
135
|
f"* Qualified Name: {qualified_name}\n "
|
128
136
|
f"* Resource Name: {resource_name}\n"
|
129
137
|
f"* Display Name: {asset_name}\n"
|
130
|
-
f"* Asset Origin: {asset_origin}\n{prop_md}"
|
138
|
+
f"* Asset Origin: {asset_origin}\n{prop_md}\n"
|
131
139
|
)
|
132
140
|
core_md = Markdown(core_md)
|
133
141
|
p1 = Panel.fit(core_md, style = "bold bright_white")
|
134
142
|
l2 = tree.add(p1)
|
135
143
|
if asset_class_md is not None:
|
136
|
-
p2 = Panel.fit(Markdown(asset_class_md), style = "bold bright_white")
|
144
|
+
p2 = Panel.fit(Markdown(asset_class_md), style = "bold bright_white", title = "Classifications")
|
137
145
|
l2 = tree.add(p2)
|
138
146
|
|
139
147
|
#
|
140
148
|
# Nested Assets
|
141
149
|
#
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
150
|
+
if type(asset_nested_elements) is list:
|
151
|
+
l2 = tree.add("Nested Elements", style = "bold white")
|
152
|
+
for el in asset_nested_elements:
|
153
|
+
asset_ne_md = build_nested_elements(el)
|
154
|
+
p3 = Panel.fit(asset_ne_md, style = "bold bright_white", title="Nested Elements")
|
155
|
+
l2.add(p3)
|
147
156
|
|
148
157
|
#
|
149
158
|
# Now work on the Relationships
|
@@ -168,7 +177,7 @@ def asset_viewer(asset_name: str, server_name:str, platform_url:str, user:str):
|
|
168
177
|
relationship_type = relationship["type"]["typeName"]
|
169
178
|
relationship_created_by = relationship["versions"]["createdBy"]
|
170
179
|
relationship_creation_time = relationship["versions"]["createTime"]
|
171
|
-
relationship_properties = relationship.get("properties"," ")
|
180
|
+
relationship_properties = relationship.get("properties","--- ")
|
172
181
|
relationship_md = (f"Relationship Type {relationship_type}\n"
|
173
182
|
f"* GUID: {relationship_guid}\n* Created by: {relationship_created_by} \n"
|
174
183
|
f"* Creation Time: {relationship_creation_time}\n"
|
@@ -188,24 +197,24 @@ def asset_viewer(asset_name: str, server_name:str, platform_url:str, user:str):
|
|
188
197
|
)
|
189
198
|
|
190
199
|
if rel_end1_class_md is not None:
|
191
|
-
rel_end1_md =
|
200
|
+
rel_end1_md = rel_end1_class_md + rel_end1_md
|
192
201
|
|
193
202
|
rel_end2_md = (
|
194
|
-
f"*
|
203
|
+
f"* End2:\n"
|
195
204
|
f"\t* Type: {rel_end2_type}\n"
|
196
205
|
f"\t* GUID: {rel_end2_guid}\n"
|
197
206
|
f"\t* Unique Name: {rel_end2_unique_name}\n"
|
198
207
|
)
|
199
208
|
|
200
209
|
if rel_end2_class_md is not None:
|
201
|
-
rel_end1_md =
|
210
|
+
rel_end1_md = rel_end2_class_md + rel_end1_md
|
202
211
|
#
|
203
212
|
# for prop in relationship_properties.keys():
|
204
213
|
# relationship_md += f"* {prop}: {relationship_properties[prop]}\n"
|
205
214
|
|
206
215
|
relationship_md += rel_end1_md + rel_end2_md
|
207
216
|
|
208
|
-
relationship_panel = Panel.fit(Markdown(relationship_md), style="bold bright_white")
|
217
|
+
relationship_panel = Panel.fit(Markdown(relationship_md), style="bold bright_white", title = "Asset Relationships")
|
209
218
|
tree.add(relationship_panel)
|
210
219
|
|
211
220
|
|
@@ -232,5 +241,5 @@ if __name__ == "__main__":
|
|
232
241
|
url = args.url if args.url is not None else "https://localhost:9443"
|
233
242
|
userid = args.userid if args.userid is not None else 'erinoverview'
|
234
243
|
|
235
|
-
|
236
|
-
asset_viewer(
|
244
|
+
asset_guid = Prompt.ask("Enter the Asset GUID to view:", default="8e35b39e-6ee7-4d60-aff5-4b09406c5e79")
|
245
|
+
asset_viewer(asset_guid,server, url, userid)
|
@@ -30,11 +30,9 @@ from pyegeria.server_operations import ServerOps
|
|
30
30
|
disable_ssl_warnings = True
|
31
31
|
|
32
32
|
|
33
|
-
def
|
33
|
+
def display_status(server: str, url: str, username: str):
|
34
34
|
layout = Layout()
|
35
|
-
print(layout)
|
36
35
|
|
37
|
-
print(layout)
|
38
36
|
p_client1 = ServerOps("Core Catalog", "https://localhost:9443", username)
|
39
37
|
p_client2 = ServerOps('Datalake Catalog', "https://localhost:9444", username)
|
40
38
|
p_client3 = ServerOps('DevCatalog', "https://localhost:9445", username)
|
@@ -42,19 +40,18 @@ def test_display_status(server: str, url: str, username: str):
|
|
42
40
|
def generate_table(p_client) -> Table:
|
43
41
|
"""Make a new table."""
|
44
42
|
table = Table(
|
45
|
-
title=f"Server Status for
|
43
|
+
title=f"Server Status for {p_client.server_name}- {time.asctime()}",
|
46
44
|
# style = "black on grey66",
|
47
45
|
header_style="white on dark_blue",
|
48
|
-
caption=f"Server Status for Platform - '{
|
46
|
+
caption=f"Server Status for Platform - '{p_client.platform_url}'",
|
49
47
|
# show_lines=True,
|
50
48
|
)
|
51
49
|
|
52
50
|
table.add_column("Known Server")
|
53
51
|
table.add_column("Status")
|
54
|
-
|
55
52
|
known_server_list = p_client.get_known_servers()
|
56
53
|
active_server_list = p_client.get_active_server_list()
|
57
|
-
if
|
54
|
+
if type(known_server_list) is str:
|
58
55
|
return table
|
59
56
|
|
60
57
|
for server in known_server_list:
|
@@ -83,6 +80,10 @@ def test_display_status(server: str, url: str, username: str):
|
|
83
80
|
print_exception_response(e)
|
84
81
|
assert e.related_http_code != "200", "Invalid parameters"
|
85
82
|
|
83
|
+
finally:
|
84
|
+
p_client1.close_session()
|
85
|
+
p_client2.close_session()
|
86
|
+
p_client3.close_session()
|
86
87
|
|
87
88
|
if __name__ == "__main__":
|
88
89
|
parser = argparse.ArgumentParser()
|
@@ -92,7 +93,7 @@ if __name__ == "__main__":
|
|
92
93
|
args = parser.parse_args()
|
93
94
|
|
94
95
|
server = args.server if args.server is not None else "active-metadata-store"
|
95
|
-
url = args.url if args.url is not None else "https://
|
96
|
+
url = args.url if args.url is not None else "https://localhost:9443"
|
96
97
|
userid = args.userid if args.userid is not None else 'garygeeke'
|
97
98
|
|
98
|
-
|
99
|
+
display_status(server, url, userid)
|
@@ -19,6 +19,7 @@ from rich import box
|
|
19
19
|
from rich.live import Live
|
20
20
|
from rich.markdown import Markdown
|
21
21
|
from rich.table import Table
|
22
|
+
from rich.text import Text
|
22
23
|
|
23
24
|
from pyegeria import ServerOps, AutomatedCuration
|
24
25
|
from pyegeria._exceptions import (
|
@@ -31,9 +32,10 @@ from pyegeria._exceptions import (
|
|
31
32
|
disable_ssl_warnings = True
|
32
33
|
|
33
34
|
|
34
|
-
def display_integration_daemon_status(
|
35
|
-
|
36
|
-
|
35
|
+
def display_integration_daemon_status(integ_server: str, integ_url: str,
|
36
|
+
view_server:str, view_url: str, user: str):
|
37
|
+
s_client = ServerOps(integ_server, integ_url, user)
|
38
|
+
a_client = AutomatedCuration(view_server, view_url, user, "secret")
|
37
39
|
token = a_client.create_egeria_bearer_token()
|
38
40
|
|
39
41
|
def generate_table() -> Table:
|
@@ -44,14 +46,14 @@ def display_integration_daemon_status(server: str, url: str, user: str):
|
|
44
46
|
header_style="white on dark_blue",
|
45
47
|
show_lines=True,
|
46
48
|
box=box.ROUNDED,
|
47
|
-
caption=f"Integration Daemon Status for Server '{
|
49
|
+
caption=f"Integration Daemon Status for Server '{integ_server}' @ Platform - {integ_url}",
|
48
50
|
expand=True
|
49
51
|
)
|
50
52
|
table.add_column("Connector Name")
|
51
53
|
table.add_column("Connector Status")
|
52
54
|
|
53
55
|
table.add_column("Last Refresh Time")
|
54
|
-
table.add_column("
|
56
|
+
table.add_column("Min Refresh (min)")
|
55
57
|
table.add_column("Target Element")
|
56
58
|
table.add_column("Exception Message")
|
57
59
|
|
@@ -60,22 +62,35 @@ def display_integration_daemon_status(server: str, url: str, user: str):
|
|
60
62
|
for connector in connector_reports:
|
61
63
|
connector_name = connector.get("connectorName", "---")
|
62
64
|
connector_status = connector.get("connectorStatus", "---")
|
63
|
-
connector_guid = connector
|
65
|
+
connector_guid = connector.get("connectorGUID","---")
|
64
66
|
last_refresh_time = connector.get("lastRefreshTime", "---")
|
65
67
|
refresh_interval = str(connector.get("minMinutesBetweenRefresh", "---"))
|
66
68
|
exception_msg = " "
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
69
|
+
if connector_guid != '---':
|
70
|
+
targets = a_client.get_catalog_targets(connector_guid)
|
71
|
+
tgt_tab = Table()
|
72
|
+
tgt_tab.add_column("Target")
|
73
|
+
tgt_tab.add_column("UniqueName")
|
74
|
+
tgt_tab.add_column("Relationship GUID", no_wrap=True)
|
75
|
+
|
76
|
+
if type(targets) == list:
|
77
|
+
targets_md = True
|
78
|
+
for target in targets:
|
79
|
+
t_name = target["catalogTargetName"]
|
80
|
+
# t_sync = target["permittedSynchronization"]
|
81
|
+
t_unique_name = target["catalogTargetElement"]["uniqueName"]
|
82
|
+
t_rel_guid = target["relationshipGUID"]
|
83
|
+
# targets_m += f"* Target Name: __{t_name}__\n* Sync: {t_sync}\n* Unique Name: {t_unique_name}\n\n"
|
84
|
+
tgt_tab.add_row(t_name,t_unique_name, t_rel_guid)
|
85
|
+
# targets_md = Markdown(targets_m)
|
86
|
+
else:
|
87
|
+
targets_md = False
|
88
|
+
else:
|
89
|
+
targets_md = False
|
90
|
+
if targets_md is False:
|
91
|
+
targets_out = ""
|
77
92
|
else:
|
78
|
-
|
93
|
+
targets_out = tgt_tab
|
79
94
|
|
80
95
|
if connector_status in ("RUNNING", "REFRESHING", "WAITING"):
|
81
96
|
connector_status = f"[green]{connector_status}"
|
@@ -86,7 +101,7 @@ def display_integration_daemon_status(server: str, url: str, user: str):
|
|
86
101
|
|
87
102
|
table.add_row(
|
88
103
|
connector_name, connector_status, last_refresh_time, refresh_interval,
|
89
|
-
|
104
|
+
targets_out, exception_msg
|
90
105
|
)
|
91
106
|
return table
|
92
107
|
|
@@ -103,16 +118,23 @@ def display_integration_daemon_status(server: str, url: str, user: str):
|
|
103
118
|
|
104
119
|
finally:
|
105
120
|
s_client.close_session()
|
121
|
+
a_client.close_session()
|
106
122
|
|
107
123
|
|
108
124
|
if __name__ == "__main__":
|
109
125
|
parser = argparse.ArgumentParser()
|
110
|
-
parser.add_argument("--
|
111
|
-
parser.add_argument("--
|
126
|
+
parser.add_argument("--integ_server", help="Name of the integration server to display status for")
|
127
|
+
parser.add_argument("--integ_url", help="URL Platform to connect to")
|
128
|
+
parser.add_argument("--view_server", help="Name of the integration server to display status for")
|
129
|
+
parser.add_argument("--view_url", help="URL Platform to connect to")
|
112
130
|
parser.add_argument("--userid", help="User Id")
|
113
131
|
args = parser.parse_args()
|
114
132
|
|
115
|
-
|
116
|
-
|
133
|
+
integ_server = args.integ_server if args.integ_server is not None else "integration-daemon"
|
134
|
+
integ_url = args.integ_url if args.integ_url is not None else "https://localhost:9443"
|
135
|
+
view_server = args.view_server if args.view_server is not None else "view-server"
|
136
|
+
view_url = args.view_url if args.view_url is not None else "https://localhost:9443"
|
117
137
|
userid = args.userid if args.userid is not None else 'garygeeke'
|
118
|
-
display_integration_daemon_status(
|
138
|
+
display_integration_daemon_status(integ_server=integ_server, integ_url=integ_url,
|
139
|
+
view_server = view_server, view_url = view_url,
|
140
|
+
user=userid)
|
@@ -11,7 +11,7 @@ pyegeria/asset_catalog_omvs.py,sha256=Y-Eh0k-zkJNOChVlLbC2bsTSBVLWhk-0-ewCV4YlyD
|
|
11
11
|
pyegeria/automated_curation_omvs.py,sha256=_I_93pWi8d6ya_SRwwoyfhMvqzVmVP-qUVoJh_0yJYI,118272
|
12
12
|
pyegeria/collection_manager_omvs.py,sha256=IyGCbqx2Blm0OwCsC2071EeoNWHXyWGl_6pEtacizAs,112642
|
13
13
|
pyegeria/core_guids.py,sha256=00yTuBk0kdrkNyo-Gb5G8O6jAN0_EyVNLgA3z2f-t1Y,4524
|
14
|
-
pyegeria/core_omag_server_config.py,sha256=
|
14
|
+
pyegeria/core_omag_server_config.py,sha256=16ld7aBTgO3gGhvFs-_yzwqPsatdCAiKYi005_2evZU,93096
|
15
15
|
pyegeria/full_omag_server_config.py,sha256=zzIyhCDolbLEJrc9JoBK308Mcq_96swYJopBN7_o4n8,45358
|
16
16
|
pyegeria/glossary_browser_omvs.py,sha256=nUCDSQ8cw8vuYgjfcaj1zLIefVI5j51evxPyXCIc4X8,101716
|
17
17
|
pyegeria/glossary_manager_omvs.py,sha256=AyTNBeOwa7ISOkpjzHHEtpiFzFo0ykcEQ525h_wqfMM,133328
|
@@ -23,36 +23,36 @@ pyegeria/runtime_manager_omvs.py,sha256=WekK7Yeyn6Qu9YmbSDo3m57MN0xOsIm9M8kGHfRO
|
|
23
23
|
pyegeria/server_operations.py,sha256=YBdQJjPOmA1uhrUvzrjUKNGUc5nju9bhvCjF3AbdyWk,16164
|
24
24
|
pyegeria/utils.py,sha256=H0mew9IRcbsEi-pZfaT9HGuPO9CMOwnhOgIltyNvqTY,5240
|
25
25
|
pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
|
26
|
-
pyegeria-0.4.
|
27
|
-
pyegeria-0.4.
|
28
|
-
pyegeria-0.4.
|
29
|
-
pyegeria-0.4.
|
30
|
-
pyegeria-0.4.
|
31
|
-
pyegeria-0.4.
|
32
|
-
pyegeria-0.4.
|
33
|
-
pyegeria-0.4.
|
34
|
-
pyegeria-0.4.
|
35
|
-
pyegeria-0.4.
|
36
|
-
pyegeria-0.4.
|
37
|
-
pyegeria-0.4.
|
38
|
-
pyegeria-0.4.
|
39
|
-
pyegeria-0.4.
|
40
|
-
pyegeria-0.4.
|
41
|
-
pyegeria-0.4.
|
42
|
-
pyegeria-0.4.
|
43
|
-
pyegeria-0.4.
|
44
|
-
pyegeria-0.4.
|
45
|
-
pyegeria-0.4.
|
46
|
-
pyegeria-0.4.
|
47
|
-
pyegeria-0.4.
|
48
|
-
pyegeria-0.4.
|
49
|
-
pyegeria-0.4.
|
50
|
-
pyegeria-0.4.
|
51
|
-
pyegeria-0.4.
|
52
|
-
pyegeria-0.4.
|
53
|
-
pyegeria-0.4.
|
54
|
-
pyegeria-0.4.
|
55
|
-
pyegeria-0.4.
|
56
|
-
pyegeria-0.4.
|
57
|
-
pyegeria-0.4.
|
58
|
-
pyegeria-0.4.
|
26
|
+
pyegeria-0.4.1.data/scripts/Create_Collection_Sample.py,sha256=Peoacgx0RRNwL_ZfMUynRcqttp6fdbSi5LZu38ghpD0,11865
|
27
|
+
pyegeria-0.4.1.data/scripts/Create_Sustainability_Collection_Sample.py,sha256=iLBm1LwRLi42Gayyb-wcWZ5NySQ6sc4kVSmwIAzP2Po,5049
|
28
|
+
pyegeria-0.4.1.data/scripts/get_guid_info.py,sha256=Evs5yt9UYIItWHy1jPpu9QvZjDulBQCXFFpNDBJZP9k,2528
|
29
|
+
pyegeria-0.4.1.data/scripts/get_my_profile.py,sha256=XSUxLgcL4sYSoZshnMrHVoRf42ePlmk08v6_24uVQHo,3705
|
30
|
+
pyegeria-0.4.1.data/scripts/get_tech_details.py,sha256=a9XHZ1kz94v3Y1mEioyctLHivwT0Q9DwuhKC3rhk-LI,4301
|
31
|
+
pyegeria-0.4.1.data/scripts/get_tech_type_elements.py,sha256=hNwQuxFdYOKJ-P_Fm0A0nKNY7BxkpaJKaj4vyLChFsQ,4948
|
32
|
+
pyegeria-0.4.1.data/scripts/get_tech_type_template.py,sha256=b1CfFSXem-BaXdcG-QPsjqfKcPNxJgmY-Fb2ZMbmzoI,4944
|
33
|
+
pyegeria-0.4.1.data/scripts/list_asset_types.py,sha256=CxK2IETXIzDlMQbVUcP1WFMvUpFYiyJrfXDgGZVGCko,2810
|
34
|
+
pyegeria-0.4.1.data/scripts/list_assets.py,sha256=nDM5D-h79pyswc3RDqh4sjWQNvL925z-HNtBvGb8lqA,4663
|
35
|
+
pyegeria-0.4.1.data/scripts/list_projects.py,sha256=zhadpaLbTDNGxMRxnyx_SQZXygWGsLeM64EEosDR4VQ,4990
|
36
|
+
pyegeria-0.4.1.data/scripts/list_registered_services.py,sha256=NzlyItgcsoXgvV8vjaB3cMAR9GlVkbd6KcOiJ5rxUvs,5085
|
37
|
+
pyegeria-0.4.1.data/scripts/list_relationship_types.py,sha256=CiQNRC_iA3iTZWesuYmWHZn5xuzUajbnSUivO0kjdzw,4179
|
38
|
+
pyegeria-0.4.1.data/scripts/list_tech_templates.py,sha256=DYGE8nP0_Eb4HNIEwcMqGgyZeFwnGTEOeTYIXZ7_i58,5088
|
39
|
+
pyegeria-0.4.1.data/scripts/list_tech_types.py,sha256=xZoCrnmBXa-_WXDW3tBG6dt6IxH-aeQfg07pXM2IrsA,3924
|
40
|
+
pyegeria-0.4.1.data/scripts/list_todos.py,sha256=Kb1o6Q1Ls9Q-rIhl3aowuYX37PA-qGaG-P5BSef1M8M,4165
|
41
|
+
pyegeria-0.4.1.data/scripts/list_valid_metadata_values.py,sha256=_PdwsQ3Vh_a_nyAkS6cBu4UBm1AZecCmNnjC5vobHQ8,5282
|
42
|
+
pyegeria-0.4.1.data/scripts/view_asset_graph.py,sha256=TLzn15zI3bw1gdXjbqs2hjmWc_68kHACX_zIhQEipJg,9277
|
43
|
+
pyegeria-0.4.1.data/scripts/view_coco_status.py,sha256=vMY95eDO-dAAMdwrhxtwtqFrnQ2GRr1aR-nmmu3q3v8,3289
|
44
|
+
pyegeria-0.4.1.data/scripts/view_collection.py,sha256=zLeQc5KQa_1Hw7zb46EoWwBbXzc1nzbnrPpuBqsxE6E,3233
|
45
|
+
pyegeria-0.4.1.data/scripts/view_eng_action_status.py,sha256=UR-iHx4BrFgliZL4iGNwSqOQGCMHKqxFTKENSmc546o,4936
|
46
|
+
pyegeria-0.4.1.data/scripts/view_glossary.py,sha256=cEQOo-lfrulbcmvr8zBv0bVBdBzqcqCZWORUzUW1nE0,4614
|
47
|
+
pyegeria-0.4.1.data/scripts/view_gov_eng_status.py,sha256=iPr_rYkczY2yVLCKlLMBvLugUAVJ6kro81Gr4c9fzCM,3961
|
48
|
+
pyegeria-0.4.1.data/scripts/view_integ_daemon_status.py,sha256=FQR4vLWkKiyVUsIaBfzrfnazsmcpKMOYGRjPEvaxrh0,5884
|
49
|
+
pyegeria-0.4.1.data/scripts/view_my_todos.py,sha256=MmG8pJATR2mbt1tmuo7VPHkVNe_QmyRNdQKBEp4sz_A,5672
|
50
|
+
pyegeria-0.4.1.data/scripts/view_open_todos.py,sha256=RW_yCnzVdAOHvIW4nAaCD5sxYPPGZQN9KTa54MN3YCE,3957
|
51
|
+
pyegeria-0.4.1.data/scripts/view_platform_status.py,sha256=_a52cZ0lf7pXDK0zrtwUQSc3F1MGCFzjhhZIm2jkxms,4419
|
52
|
+
pyegeria-0.4.1.data/scripts/view_server_list.py,sha256=tyx1I7olr6e5kJF22ou9rqsztrRDdrPCq5uVa3hhPBU,3088
|
53
|
+
pyegeria-0.4.1.data/scripts/view_server_status.py,sha256=YFLRz6qx8WoNRbRGhHyVvokaxXjnNSDeG-cTxo22jO0,2836
|
54
|
+
pyegeria-0.4.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
55
|
+
pyegeria-0.4.1.dist-info/METADATA,sha256=0gX4ER2W9rzVq4YFIygsIw0ZlYpceicJHkh8UW7MuHA,2456
|
56
|
+
pyegeria-0.4.1.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
|
57
|
+
pyegeria-0.4.1.dist-info/top_level.txt,sha256=tHowU8jow7WJGmbr4QdIk7gJWdslRgbWBiF2lMeduLQ,9
|
58
|
+
pyegeria-0.4.1.dist-info/RECORD,,
|
File without changes
|
{pyegeria-0.4.0.data → pyegeria-0.4.1.data}/scripts/Create_Sustainability_Collection_Sample.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|