pyegeria 0.7.16__py3-none-any.whl → 0.7.18__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.
- examples/widgets/cli/egeria.py +17 -9
- examples/widgets/cli/egeria_tech.py +20 -10
- examples/widgets/tech/get_element_info.py +119 -0
- examples/widgets/tech/list_related_specification.py +144 -0
- {pyegeria-0.7.16.dist-info → pyegeria-0.7.18.dist-info}/METADATA +1 -1
- {pyegeria-0.7.16.dist-info → pyegeria-0.7.18.dist-info}/RECORD +10 -8
- {pyegeria-0.7.16.dist-info → pyegeria-0.7.18.dist-info}/entry_points.txt +1 -1
- /examples/widgets/tech/{list_related_elements.py → x_list_related_elements.py} +0 -0
- {pyegeria-0.7.16.dist-info → pyegeria-0.7.18.dist-info}/LICENSE +0 -0
- {pyegeria-0.7.16.dist-info → pyegeria-0.7.18.dist-info}/WHEEL +0 -0
examples/widgets/cli/egeria.py
CHANGED
@@ -52,7 +52,8 @@ from examples.widgets.tech.list_relationship_types import display_relationship_t
|
|
52
52
|
from examples.widgets.tech.list_tech_templates import display_templates_spec
|
53
53
|
from examples.widgets.tech.list_valid_metadata_values import display_metadata_values
|
54
54
|
from examples.widgets.tech.list_elements import list_elements
|
55
|
-
from examples.widgets.tech.
|
55
|
+
from examples.widgets.tech.get_element_info import display_elements
|
56
|
+
from examples.widgets.tech.list_related_specification import display_related_specification
|
56
57
|
|
57
58
|
|
58
59
|
@tui()
|
@@ -199,11 +200,20 @@ def show(ctx):
|
|
199
200
|
pass
|
200
201
|
|
201
202
|
|
202
|
-
@show.command("
|
203
|
+
@show.command("get-elements")
|
203
204
|
@click.pass_context
|
204
205
|
@click.option('--om_type', default='Project', help='Metadata type to query')
|
205
206
|
def get_element_info(ctx, om_type):
|
206
|
-
"""Display the
|
207
|
+
"""Display the elements for an Open Metadata Type"""
|
208
|
+
c = ctx.obj
|
209
|
+
display_elements(om_type, c.view_server, c.view_server_url,
|
210
|
+
c.userid, c.password, c.jupyter, c.width)
|
211
|
+
|
212
|
+
@show.command("list-elements")
|
213
|
+
@click.pass_context
|
214
|
+
@click.option('--om_type', default='Project', help='Metadata type to query')
|
215
|
+
def list_element_info(ctx, om_type):
|
216
|
+
"""Display the elements for an Open Metadata Type"""
|
207
217
|
c = ctx.obj
|
208
218
|
list_elements(om_type, c.view_server, c.view_server_url,
|
209
219
|
c.userid, c.password, c.jupyter, c.width)
|
@@ -277,15 +287,13 @@ def show_registered_services(ctx, services):
|
|
277
287
|
display_registered_svcs(services, c.view_server, c.view_server_url,
|
278
288
|
c.userid, c.password, c.jupyter, c.width)
|
279
289
|
|
280
|
-
@show.command('related-
|
290
|
+
@show.command('related-specifications')
|
281
291
|
@click.pass_context
|
282
292
|
@click.argument('element-guid')
|
283
|
-
|
284
|
-
|
285
|
-
@click.option('--om_type', default = None, help="Optional Open Metadata Type to filter by.")
|
286
|
-
def show_related_elements(ctx, element_guid, rel_type, om_type):
|
293
|
+
def show_related_specifications(ctx, element_guid):
|
294
|
+
"""List specifications related to the given Element"""
|
287
295
|
c = ctx.obj
|
288
|
-
|
296
|
+
display_related_specification(element_guid, c.view_server, c.view_server_url,
|
289
297
|
c.userid, c.password, c.jupyter, c.width)
|
290
298
|
|
291
299
|
|
@@ -23,7 +23,8 @@ from examples.widgets.tech.list_tech_templates import display_templates_spec
|
|
23
23
|
from examples.widgets.tech.list_valid_metadata_values import display_metadata_values
|
24
24
|
from examples.widgets.cat.get_tech_type_template import template_viewer
|
25
25
|
from examples.widgets.tech.list_elements import list_elements
|
26
|
-
from examples.widgets.tech.
|
26
|
+
from examples.widgets.tech.get_element_info import display_elements
|
27
|
+
from examples.widgets.tech.list_related_specification import display_related_specification
|
27
28
|
|
28
29
|
|
29
30
|
|
@@ -111,6 +112,16 @@ def show_guid_infos(ctx, guid):
|
|
111
112
|
display_guid(guid, c.server, c.url,
|
112
113
|
c.userid, c.password, c.jupyter, c.width)
|
113
114
|
|
115
|
+
@show.command('related-specifications')
|
116
|
+
@click.pass_context
|
117
|
+
@click.argument('element-guid')
|
118
|
+
def show_related_specifications(ctx, element_guid):
|
119
|
+
"""List specifications related to the given Element"""
|
120
|
+
c = ctx.obj
|
121
|
+
display_related_specification(element_guid,c.view_server, c.view_server_url,
|
122
|
+
c.userid, c.password, c.jupyter, c.width)
|
123
|
+
|
124
|
+
|
114
125
|
|
115
126
|
@show.command('tech-types')
|
116
127
|
@click.option('--search-string', default='*', help='Tech type to search for')
|
@@ -211,22 +222,21 @@ def valid_metadata_values(ctx, property, type_name):
|
|
211
222
|
@show.command('list-elements')
|
212
223
|
@click.pass_context
|
213
224
|
@click.option('--om_type', default='Organization', help='Metadata type to query')
|
214
|
-
def
|
225
|
+
def list_element_info(ctx, om_type):
|
215
226
|
"""Display the valid metadata values for a property and type"""
|
216
227
|
c = ctx.obj
|
217
228
|
list_elements(om_type, c.view_server, c.view_server_url,
|
218
229
|
c.userid, c.password, c.jupyter, c.width)
|
219
230
|
|
220
|
-
@show.command(
|
231
|
+
@show.command("get-elements")
|
221
232
|
@click.pass_context
|
222
|
-
@click.
|
223
|
-
|
224
|
-
|
225
|
-
@click.option('--om_type', default = None, help="Optional Open Metadata Type to filter by.")
|
226
|
-
def show_related_elements(ctx, element_guid, rel_type, om_type):
|
233
|
+
@click.option('--om_type', default='Project', help='Metadata type to query')
|
234
|
+
def get_element_info(ctx, om_type):
|
235
|
+
"""Display the elements for an Open Metadata Type"""
|
227
236
|
c = ctx.obj
|
228
|
-
|
229
|
-
c.userid, c.password,
|
237
|
+
display_elements(om_type, c.view_server, c.view_server_url,
|
238
|
+
c.userid, c.password, c.jupyter, c.width)
|
239
|
+
|
230
240
|
|
231
241
|
#
|
232
242
|
# Tell
|
@@ -0,0 +1,119 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
"""
|
3
|
+
SPDX-Lic
|
4
|
+
ense-Identifier: Apache-2.0
|
5
|
+
Copyright Contributors to the ODPi Egeria project.
|
6
|
+
|
7
|
+
|
8
|
+
A simple display of elements for an Open Metadata Type in tree form.
|
9
|
+
"""
|
10
|
+
import argparse
|
11
|
+
import json
|
12
|
+
import os
|
13
|
+
import sys
|
14
|
+
|
15
|
+
from rich import print, box
|
16
|
+
from rich.console import Console
|
17
|
+
from rich.markdown import Markdown
|
18
|
+
from rich.panel import Panel
|
19
|
+
|
20
|
+
from rich.prompt import Prompt
|
21
|
+
from rich.text import Text
|
22
|
+
from rich.tree import Tree
|
23
|
+
|
24
|
+
from pyegeria import (
|
25
|
+
InvalidParameterException,
|
26
|
+
PropertyServerException,
|
27
|
+
UserNotAuthorizedException,
|
28
|
+
Client, ClassificationManager
|
29
|
+
)
|
30
|
+
|
31
|
+
|
32
|
+
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
33
|
+
EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
|
34
|
+
EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
|
35
|
+
EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
|
36
|
+
EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
|
37
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
|
38
|
+
EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
|
39
|
+
EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
|
40
|
+
EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
|
41
|
+
EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
|
42
|
+
EGERIA_JUPYTER = bool(os.environ.get('EGERIA_JUPYTER', 'False'))
|
43
|
+
EGERIA_WIDTH = int(os.environ.get('EGERIA_WIDTH', '200'))
|
44
|
+
|
45
|
+
|
46
|
+
def display_elements(om_type: str, server: str, url: str, username: str, user_password: str,
|
47
|
+
jupyter: bool = EGERIA_JUPYTER, width: int = EGERIA_WIDTH
|
48
|
+
):
|
49
|
+
c = ClassificationManager(server, url, user_id=username, user_pwd=user_password)
|
50
|
+
|
51
|
+
bearer_token = c.create_egeria_bearer_token(username, user_password)
|
52
|
+
|
53
|
+
try:
|
54
|
+
console = Console(width=width, force_terminal=not jupyter, style="bold white on black")
|
55
|
+
r = c.get_elements(om_type)
|
56
|
+
if type(r) is not list:
|
57
|
+
print(f"\n\n\tno elements found: {r}")
|
58
|
+
sys.exit(1)
|
59
|
+
|
60
|
+
tree = Tree(f"Elements for Open Metadata Type:{om_type}\n* There are {len(r)} elements", style="bold bright_white on black",
|
61
|
+
guide_style="bold bright_blue")
|
62
|
+
t = tree.add(f"Elements for {om_type}", style="bold bright_white on black")
|
63
|
+
for element in r:
|
64
|
+
header = element['elementHeader']
|
65
|
+
el_type = header["type"]['typeName']
|
66
|
+
el_home = header['origin']['homeMetadataCollectionName']
|
67
|
+
el_create_time = header['versions']['createTime']
|
68
|
+
el_guid = header['guid']
|
69
|
+
|
70
|
+
el_md = (f"#### Element Basics\n"
|
71
|
+
f"* **Type**: {el_type}\n"
|
72
|
+
f"* **Home**: {el_home}\n"
|
73
|
+
f"* **Created**: {el_create_time}\n"
|
74
|
+
f"* **GUID**: {el_guid}\n ---\n")
|
75
|
+
for prop in element['properties'].keys():
|
76
|
+
el_md += f"* **{prop}**: {element['properties'][prop]}\n"
|
77
|
+
|
78
|
+
el_out = Markdown(el_md)
|
79
|
+
p = Panel.fit(el_out, title=element['properties']['qualifiedName'],
|
80
|
+
style = "bold white on black")
|
81
|
+
t = tree.add(p)
|
82
|
+
|
83
|
+
print(tree)
|
84
|
+
|
85
|
+
c.close_session()
|
86
|
+
|
87
|
+
except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException, ValueError) as e:
|
88
|
+
if type(e) is str:
|
89
|
+
console.print_exception()
|
90
|
+
else:
|
91
|
+
# console.print_exception(show_locals=True)
|
92
|
+
console.print(f"\n ===> Looks like the type {om_type} isn't known...\n")
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
def main():
|
97
|
+
parser = argparse.ArgumentParser()
|
98
|
+
parser.add_argument("--server", help="Name of the server to display status for")
|
99
|
+
parser.add_argument("--url", help="URL Platform to connect to")
|
100
|
+
parser.add_argument("--userid", help="User Id")
|
101
|
+
parser.add_argument("--password", help="User Password")
|
102
|
+
|
103
|
+
# parser.add_argument("--sponsor", help="Name of sponsor to search")
|
104
|
+
args = parser.parse_args()
|
105
|
+
|
106
|
+
server = args.server if args.server is not None else EGERIA_VIEW_SERVER
|
107
|
+
url = args.url if args.url is not None else EGERIA_VIEW_SERVER_URL
|
108
|
+
userid = args.userid if args.userid is not None else EGERIA_USER
|
109
|
+
user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
110
|
+
|
111
|
+
try:
|
112
|
+
om_type = Prompt.ask("Enter the Open Metadata Type to find Elements for", default=None)
|
113
|
+
display_elements(om_type, server, url, userid, user_pass)
|
114
|
+
except (KeyboardInterrupt):
|
115
|
+
pass
|
116
|
+
|
117
|
+
|
118
|
+
if __name__ == "__main__":
|
119
|
+
main()
|
@@ -0,0 +1,144 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
"""
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
4
|
+
Copyright Contributors to the ODPi Egeria project.
|
5
|
+
|
6
|
+
List elements related to given element guid by the specified relationship type. Optionally filter by a specified
|
7
|
+
open metadata type.
|
8
|
+
|
9
|
+
"""
|
10
|
+
import argparse
|
11
|
+
import os
|
12
|
+
import sys
|
13
|
+
import time
|
14
|
+
|
15
|
+
from rich import box
|
16
|
+
from rich.console import Console
|
17
|
+
from rich.markdown import Markdown
|
18
|
+
from rich.prompt import Prompt
|
19
|
+
from rich.table import Table
|
20
|
+
|
21
|
+
from pyegeria import (InvalidParameterException, PropertyServerException, UserNotAuthorizedException,
|
22
|
+
print_exception_response, ClassificationManager)
|
23
|
+
|
24
|
+
console = Console()
|
25
|
+
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
26
|
+
EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
|
27
|
+
EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
|
28
|
+
EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
|
29
|
+
EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
|
30
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
|
31
|
+
EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
|
32
|
+
EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
|
33
|
+
EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
|
34
|
+
EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
|
35
|
+
EGERIA_JUPYTER = bool(os.environ.get('EGERIA_JUPYTER', 'False'))
|
36
|
+
EGERIA_WIDTH = int(os.environ.get('EGERIA_WIDTH', '200'))
|
37
|
+
|
38
|
+
|
39
|
+
def display_related_specification(element_guid: str, server: str, url: str, username: str, password: str,
|
40
|
+
jupyter: bool = EGERIA_JUPYTER, width: int = EGERIA_WIDTH):
|
41
|
+
c_client = ClassificationManager(server, url, user_id=username, user_pwd=password)
|
42
|
+
token = c_client.create_egeria_bearer_token()
|
43
|
+
rel_el = c_client.get_related_elements(element_guid, 'SpecificationPropertyAssignment', None)
|
44
|
+
|
45
|
+
if type(rel_el) is str:
|
46
|
+
print(f"\n\nDid not find related specifications for {element_guid}\n\n")
|
47
|
+
sys.exit(0)
|
48
|
+
|
49
|
+
related_elements: dict = {}
|
50
|
+
|
51
|
+
def generate_table() -> Table:
|
52
|
+
"""Make a new table."""
|
53
|
+
table = Table(title=f"Specifications related to: {element_guid} @ {time.asctime()}",
|
54
|
+
style="bold bright_white on black", row_styles=["bold bright_white on black"],
|
55
|
+
header_style="white on dark_blue", title_style="bold bright_white on black", caption_style="white on black",
|
56
|
+
show_lines=True, box=box.ROUNDED, caption=f"Elements from Server '{server}' @ Platform - {url}",
|
57
|
+
expand=True, # width=500
|
58
|
+
)
|
59
|
+
|
60
|
+
table.add_column("Name", justify='center', style="bold bright_white")
|
61
|
+
table.add_column("Specification", justify='center', style="bold bright_white")
|
62
|
+
|
63
|
+
for element in rel_el:
|
64
|
+
relationship_props = element["relationshipProperties"]['propertyType']
|
65
|
+
related_elements[relationship_props] = []
|
66
|
+
|
67
|
+
for element in rel_el:
|
68
|
+
relationship_props = element["relationshipProperties"]['propertyType']
|
69
|
+
|
70
|
+
rel_element = element['relatedElement']
|
71
|
+
el = rel_element["properties"]
|
72
|
+
re: dict = {}
|
73
|
+
|
74
|
+
re['case'] = el.get("isCaseSensitive", '---')
|
75
|
+
re['name'] = el.get("preferredValue", '---')
|
76
|
+
re['description'] = el.get("description", '---')
|
77
|
+
add = el.get("additionalProperties", '---')
|
78
|
+
if type(add) is str:
|
79
|
+
re['additional'] = add
|
80
|
+
else:
|
81
|
+
add_md = ""
|
82
|
+
for k in add.keys():
|
83
|
+
add_md += f"* {k}: {add[k]}\n"
|
84
|
+
re['additional'] = Markdown(add_md)
|
85
|
+
|
86
|
+
related_elements[relationship_props].append(re)
|
87
|
+
|
88
|
+
for kind in related_elements.keys():
|
89
|
+
|
90
|
+
spec_table = Table(expand=False, show_lines=True)
|
91
|
+
spec_table.add_column('Name')
|
92
|
+
spec_table.add_column('Case Sensitive?')
|
93
|
+
spec_table.add_column('Description')
|
94
|
+
spec_table.add_column('Additional Properties')
|
95
|
+
|
96
|
+
for spec_row in related_elements[kind]:
|
97
|
+
name = spec_row['name']
|
98
|
+
case = spec_row['case']
|
99
|
+
desc = spec_row['description']
|
100
|
+
additional_props = spec_row['additional']
|
101
|
+
spec_table.add_row(name, case, desc, additional_props)
|
102
|
+
|
103
|
+
table.add_row(kind, spec_table)
|
104
|
+
|
105
|
+
return table
|
106
|
+
|
107
|
+
try:
|
108
|
+
console = Console(width=width, force_terminal=not jupyter)
|
109
|
+
|
110
|
+
with console.pager(styles=True):
|
111
|
+
console.print(generate_table())
|
112
|
+
|
113
|
+
except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
|
114
|
+
print_exception_response(e)
|
115
|
+
assert e.related_http_code != "200", "Invalid parameters"
|
116
|
+
finally:
|
117
|
+
c_client.close_session()
|
118
|
+
|
119
|
+
|
120
|
+
def main():
|
121
|
+
parser = argparse.ArgumentParser()
|
122
|
+
parser.add_argument("--server", help="Name of the server to display status for")
|
123
|
+
parser.add_argument("--url", help="URL Platform to connect to")
|
124
|
+
parser.add_argument("--userid", help="User Id")
|
125
|
+
parser.add_argument("--password", help="Password")
|
126
|
+
|
127
|
+
args = parser.parse_args()
|
128
|
+
|
129
|
+
server = args.server if args.server is not None else EGERIA_VIEW_SERVER
|
130
|
+
url = args.url if args.url is not None else EGERIA_PLATFORM_URL
|
131
|
+
userid = args.userid if args.userid is not None else EGERIA_USER
|
132
|
+
password = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
133
|
+
guid = None
|
134
|
+
|
135
|
+
try:
|
136
|
+
element_guid = Prompt.ask("Enter an Element GUID find relationships for")
|
137
|
+
|
138
|
+
display_related_specification(element_guid, server, url, userid, password)
|
139
|
+
except(KeyboardInterrupt):
|
140
|
+
pass
|
141
|
+
|
142
|
+
|
143
|
+
if __name__ == "__main__":
|
144
|
+
main()
|
@@ -15,11 +15,11 @@ examples/widgets/cat/list_relationships.py,sha256=lRfnsMUc0KN6Gb3qJoHjAwYGrcvTk3
|
|
15
15
|
examples/widgets/cat/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFoh0,4609
|
16
16
|
examples/widgets/cat/list_todos.py,sha256=wD9HevGcc4G_bxV25VUz1rRssdZHE33mF5zmJ6Lprt8,5522
|
17
17
|
examples/widgets/cli/__init__.py,sha256=6d_R0KZBNnJy9EBz9J2xvGFlx-3j_ZPqPCxKgdvYeDQ,291
|
18
|
-
examples/widgets/cli/egeria.py,sha256=
|
18
|
+
examples/widgets/cli/egeria.py,sha256=suBsHL-d26AetuSOGdtGWByf6iit0Enom3zh2D41gVg,24870
|
19
19
|
examples/widgets/cli/egeria_cat.py,sha256=q02DByikrGY6QHPy5u-R6zVBt6-y146iecmkA3oVb4A,10826
|
20
20
|
examples/widgets/cli/egeria_my.py,sha256=xi2j1hzNnjDruJeR1qa8K9JPDgzaL_COsMkcieT4Vo8,5653
|
21
21
|
examples/widgets/cli/egeria_ops.py,sha256=Y2fNDFnaaMjt8vjOeUXneh4_WEyxp0ucMvIfdLn8Bik,10139
|
22
|
-
examples/widgets/cli/egeria_tech.py,sha256=
|
22
|
+
examples/widgets/cli/egeria_tech.py,sha256=AA2PNDKebdDObtrmjF6BHaSuSpNVeQgB61CSX1cBvsg,10255
|
23
23
|
examples/widgets/cli/ops_config.py,sha256=m4AfPjf-fR4EBTx8Dc2mcgrfWwAxb30YGeV-v79bg4U,1450
|
24
24
|
examples/widgets/my/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
|
25
25
|
examples/widgets/my/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -46,15 +46,17 @@ examples/widgets/ops/refresh_integration_daemon.py,sha256=QDB3dpAlLY8PhrGhAZG4tW
|
|
46
46
|
examples/widgets/ops/restart_integration_daemon.py,sha256=fID7qGFL5RD6rfn9PgXf5kwI4MU0Ho_IGXnDVbKT5nU,2710
|
47
47
|
examples/widgets/tech/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
|
48
48
|
examples/widgets/tech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
|
+
examples/widgets/tech/get_element_info.py,sha256=3B6mTu09d-FRTVWbZ5uujKBLLy8ULFyr5F4ZYE0F65g,4582
|
49
50
|
examples/widgets/tech/get_guid_info.py,sha256=p-peTX1Mahi8fNmcNVHOVI3OjqjlJwZjv7gRdBI4l0Q,4137
|
50
51
|
examples/widgets/tech/get_tech_details.py,sha256=p5OgSKep3VOuuZmQXE2OSYhE-kvnI18TBcQ-PU5kEAw,6023
|
51
52
|
examples/widgets/tech/list_asset_types.py,sha256=PHPtCXqCHhIw0K59hUvoKdybp6IKPt_9Wc0AJVDtdrg,4181
|
52
53
|
examples/widgets/tech/list_elements.py,sha256=xQg-PGS2oORed2ATVNPZvGVCGLEUHO5rOeXvgS6pkrg,4726
|
53
54
|
examples/widgets/tech/list_registered_services.py,sha256=TqZbT54vMGvHUAX_bovCce3A3eV_RbjSEtPP6u6ZJV0,6388
|
54
|
-
examples/widgets/tech/
|
55
|
+
examples/widgets/tech/list_related_specification.py,sha256=zFOsqR-GB4VUWnZoxmaKWv1-qkI3syRoIC9iIEO6khI,5797
|
55
56
|
examples/widgets/tech/list_relationship_types.py,sha256=0T8Sl7J3WFq_0IQLLzcL0T79pUxVENWNT95Cpjz2ukc,5633
|
56
57
|
examples/widgets/tech/list_tech_templates.py,sha256=RiyA8a4fIL9BGeGf37Bkk471mK5ECkDJMN9QVNReC1M,6192
|
57
58
|
examples/widgets/tech/list_valid_metadata_values.py,sha256=64z5tr-0VD-mPTFmr6FT76gj4MXJZLWTxT4oeIiUaiU,6043
|
59
|
+
examples/widgets/tech/x_list_related_elements.py,sha256=hDiPThI9FLI63yoWEy7j7k_zLPBSlZIXYSaixiY_YAY,5785
|
58
60
|
pyegeria/Xloaded_resources_omvs.py,sha256=cseWZTIwNhkzhZ0fhujI66DslNAQcjuwsz_p1GRmSPQ,3392
|
59
61
|
pyegeria/__init__.py,sha256=RNkQeblUJGmnCY7U8l8xMhivpVzMcXRBafxDAzxG6Lc,7714
|
60
62
|
pyegeria/_client.py,sha256=mTK3qqaxwrwn4OiIKZkSkMVEsHPJsHxKmfz1LK_FgEg,26308
|
@@ -81,8 +83,8 @@ pyegeria/runtime_manager_omvs.py,sha256=oSVFeG_yBGXIvQR0EClLZqTZ6C5z5ReZzwm8cce8
|
|
81
83
|
pyegeria/server_operations.py,sha256=1z2wZLdrNZG6HlswY_Eh8qI1mlcjsQ59zO-AMy9XbUU,16605
|
82
84
|
pyegeria/utils.py,sha256=pkVmS3RrbjaS9yz7FtOCwaOfV5FMqz-__Rt5koCnd9c,5374
|
83
85
|
pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
|
84
|
-
pyegeria-0.7.
|
85
|
-
pyegeria-0.7.
|
86
|
-
pyegeria-0.7.
|
87
|
-
pyegeria-0.7.
|
88
|
-
pyegeria-0.7.
|
86
|
+
pyegeria-0.7.18.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
87
|
+
pyegeria-0.7.18.dist-info/METADATA,sha256=XDMVQXjo6kQBCpwJyQbBDMIx5st3UvK_1BPxGcBF3ow,2775
|
88
|
+
pyegeria-0.7.18.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
89
|
+
pyegeria-0.7.18.dist-info/entry_points.txt,sha256=hnXpc9IDhQuV3fR_Ann1Cbn-IvheeRI0Fc0tRQWNamg,3004
|
90
|
+
pyegeria-0.7.18.dist-info/RECORD,,
|
@@ -24,7 +24,7 @@ list_integ_daemon_status=examples.widgets.ops.monitor_integ_daemon_status:main_p
|
|
24
24
|
list_my_profile=examples.widgets.my.list_my_profile:main
|
25
25
|
list_projects=examples.widgets.cat.list_projects:main
|
26
26
|
list_registered_services=examples.widgets.tech.list_registered_services:main
|
27
|
-
|
27
|
+
list_related_specification=examples.widgets.tech.list_related_specification:main
|
28
28
|
list_relationship_types=examples.widgets.tech.list_relationship_types:main
|
29
29
|
list_relationships=examples.widgets.cat.list_relationships:main
|
30
30
|
list_tech_templates=examples.widgets.tech.list_tech_templates:main
|
File without changes
|
File without changes
|
File without changes
|