pyegeria 0.5.9.5__py3-none-any.whl → 0.6.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.
- examples/widgets/catalog_user/README.md +3 -2
- examples/widgets/catalog_user/list_assets.py +1 -1
- examples/widgets/catalog_user/list_projects.py +8 -6
- examples/widgets/catalog_user/list_todos.py +1 -0
- examples/widgets/cli/egeria.py +1 -1
- examples/widgets/cli/egeria_cat.py +1 -1
- examples/widgets/cli/egeria_ops.py +1 -1
- examples/widgets/cli/egeria_per.py +1 -1
- examples/widgets/cli/egeria_tech.py +1 -1
- examples/widgets/personal/monitor_my_todos.py +3 -3
- examples/widgets/personal/my_profile_actions.py +120 -0
- pyegeria/my_profile_omvs.py +4 -4
- {pyegeria-0.5.9.5.dist-info → pyegeria-0.6.1.dist-info}/METADATA +1 -1
- {pyegeria-0.5.9.5.dist-info → pyegeria-0.6.1.dist-info}/RECORD +17 -16
- {pyegeria-0.5.9.5.dist-info → pyegeria-0.6.1.dist-info}/LICENSE +0 -0
- {pyegeria-0.5.9.5.dist-info → pyegeria-0.6.1.dist-info}/WHEEL +0 -0
- {pyegeria-0.5.9.5.dist-info → pyegeria-0.6.1.dist-info}/entry_points.txt +0 -0
@@ -4,12 +4,13 @@
|
|
4
4
|
# Catalog User
|
5
5
|
|
6
6
|
These widgets display different kinds of information useful to a typical catalog user. Widgets
|
7
|
-
will continue to be added over time to cover more facets of catalog use.
|
7
|
+
will continue to be added over time to cover more facets of catalog use.
|
8
8
|
|
9
9
|
* list_assets.py - lists assets containing the user provided search string in the display name or qualified name. Search string must be a minimum of three characters.
|
10
10
|
* view_asset_graph.py - shows a tree view of an asset with its nested elements and relationships.
|
11
11
|
* view_collection.py - provides a tree view of a collection with all nested collections and items within the collection.
|
12
|
-
* view_glossary.py - provides a simple glossary viewer showing terms and related information.
|
12
|
+
* view_glossary.py - provides a simple glossary viewer showing terms and related information.
|
13
|
+
* get_asset_graph.py - shows an asset with all its relationships as a tree graph.
|
13
14
|
----
|
14
15
|
License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
|
15
16
|
Copyright Contributors to the Egeria project.
|
@@ -46,7 +46,7 @@ disable_ssl_warnings = True
|
|
46
46
|
def display_assets(search_string: str, server: str, url: str, username: str, user_password: str, time_out: int = 60,
|
47
47
|
jupyter: bool = EGERIA_JUPYTER, width: int = EGERIA_WIDTH):
|
48
48
|
console = Console(width=width, force_terminal=not jupyter, soft_wrap=True)
|
49
|
-
if (search_string is None) or (len(search_string) <
|
49
|
+
if (search_string is None) or (len(search_string) < 3):
|
50
50
|
raise ValueError("Invalid Search String - must be greater than four characters long")
|
51
51
|
g_client = AssetCatalog(server, url, username)
|
52
52
|
token = g_client.create_egeria_bearer_token(username, user_password)
|
@@ -61,7 +61,8 @@ def display_project_list(project_name: str, server: str, url: str,
|
|
61
61
|
)
|
62
62
|
|
63
63
|
table.add_column("Display Name")
|
64
|
-
table.add_column("
|
64
|
+
table.add_column("Description")
|
65
|
+
|
65
66
|
table.add_column("Classifications")
|
66
67
|
table.add_column("Qualified Name")
|
67
68
|
table.add_column("Identifier")
|
@@ -70,7 +71,8 @@ def display_project_list(project_name: str, server: str, url: str,
|
|
70
71
|
table.add_column("Status")
|
71
72
|
table.add_column("Start Date")
|
72
73
|
table.add_column("End Date")
|
73
|
-
table.add_column("
|
74
|
+
table.add_column("Contracts")
|
75
|
+
|
74
76
|
|
75
77
|
projects = p_client.find_projects(project_name)
|
76
78
|
|
@@ -97,21 +99,21 @@ def display_project_list(project_name: str, server: str, url: str,
|
|
97
99
|
p_class = project['elementHeader'].get("classifications")
|
98
100
|
if p_class:
|
99
101
|
for classif in p_class:
|
100
|
-
classification += f"{classif.get('classificationName')}"
|
102
|
+
classification += f"* {classif.get('classificationName')}\n"
|
101
103
|
qualified_name = props.get("qualifiedName", " ")
|
102
104
|
identifier = props.get("identifier", " ")
|
103
105
|
phase = props.get("projectPhase", " ")
|
104
106
|
health = props.get("projectHealth", " ")
|
105
107
|
status = props.get("projectStatus", " ")
|
106
108
|
description = props.get("description", " ")
|
107
|
-
start = props.get("startDate", " ")
|
109
|
+
start = props.get("startDate", " ")[0:10]
|
108
110
|
end = props.get("plannedEndDate", " ")
|
109
111
|
additional_properties = project.get('additionalProperties')
|
110
112
|
if additional_properties is not None:
|
111
113
|
props = json.dumps(additional_properties)
|
112
114
|
table.add_row(
|
113
|
-
name,
|
114
|
-
end,
|
115
|
+
name, description, classification, qualified_name, identifier, phase, health, status, start,
|
116
|
+
end, '---')
|
115
117
|
|
116
118
|
p_client.close_session()
|
117
119
|
return table
|
examples/widgets/cli/egeria.py
CHANGED
@@ -72,7 +72,7 @@ from examples.widgets.tech.list_valid_metadata_values import display_metadata_va
|
|
72
72
|
@click.option('--admin_user', default='garygeeke', envvar='EGERIA_ADMIN_USER', help='Egeria admin user')
|
73
73
|
@click.option('--admin_user_password', default='secret', envvar='EGERIA_ADMIN_PASSWORD',
|
74
74
|
help='Egeria admin password')
|
75
|
-
@click.option('--userid', default='
|
75
|
+
@click.option('--userid', default='erinoverview', envvar='EGERIA_USER', help='Egeria user')
|
76
76
|
@click.option('--password', default='secret', envvar='EGERIA_PASSWORD',
|
77
77
|
help='Egeria user password')
|
78
78
|
@click.option('--timeout', default=60, help='Number of seconds to wait')
|
@@ -63,7 +63,7 @@ from examples.widgets.cli.ops_config import Config
|
|
63
63
|
@click.option('--admin_user', default='garygeeke', envvar='EGERIA_ADMIN_USER', help='Egeria admin user')
|
64
64
|
@click.option('--admin_user_password', default='secret', envvar='EGERIA_ADMIN_PASSWORD',
|
65
65
|
help='Egeria admin password')
|
66
|
-
@click.option('--userid', default='
|
66
|
+
@click.option('--userid', default='erinoverview', envvar='EGERIA_USER', help='Egeria user')
|
67
67
|
@click.option('--password', default='secret', envvar='EGERIA_PASSWORD',
|
68
68
|
help='Egeria user password')
|
69
69
|
@click.option('--timeout', default=60, help='Number of seconds to wait')
|
@@ -66,7 +66,7 @@ from examples.widgets.operational.restart_integration_daemon import restart_conn
|
|
66
66
|
@click.option('--admin_user', default='garygeeke', envvar='EGERIA_ADMIN_USER', help='Egeria admin user')
|
67
67
|
@click.option('--admin_user_password', default='secret', envvar='EGERIA_ADMIN_PASSWORD',
|
68
68
|
help='Egeria admin password')
|
69
|
-
@click.option('--userid', default='
|
69
|
+
@click.option('--userid', default='erinoverview', envvar='EGERIA_USER', help='Egeria user')
|
70
70
|
@click.option('--password', default='secret', envvar='EGERIA_PASSWORD',
|
71
71
|
help='Egeria user password')
|
72
72
|
@click.option('--timeout', default=60, help='Number of seconds to wait')
|
@@ -58,7 +58,7 @@ from examples.widgets.personal.list_my_roles import display_my_roles
|
|
58
58
|
@click.option('--admin_user', default='garygeeke', envvar='EGERIA_ADMIN_USER', help='Egeria admin user')
|
59
59
|
@click.option('--admin_user_password', default='secret', envvar='EGERIA_ADMIN_PASSWORD',
|
60
60
|
help='Egeria admin password')
|
61
|
-
@click.option('--userid', default='
|
61
|
+
@click.option('--userid', default='erinoverview', envvar='EGERIA_USER', help='Egeria user')
|
62
62
|
@click.option('--password', default='secret', envvar='EGERIA_PASSWORD',
|
63
63
|
help='Egeria user password')
|
64
64
|
@click.option('--timeout', default=60, help='Number of seconds to wait')
|
@@ -64,7 +64,7 @@ from examples.widgets.catalog_user.get_tech_type_template import template_viewer
|
|
64
64
|
@click.option('--admin_user', default='garygeeke', envvar='EGERIA_ADMIN_USER', help='Egeria admin user')
|
65
65
|
@click.option('--admin_user_password', default='secret', envvar='EGERIA_ADMIN_PASSWORD',
|
66
66
|
help='Egeria admin password')
|
67
|
-
@click.option('--userid', default='
|
67
|
+
@click.option('--userid', default='erinoverview', envvar='EGERIA_USER', help='Egeria user')
|
68
68
|
@click.option('--password', default='secret', envvar='EGERIA_PASSWORD',
|
69
69
|
help='Egeria user password')
|
70
70
|
@click.option('--timeout', default=60, help='Number of seconds to wait')
|
@@ -72,10 +72,10 @@ def display_my_todos(server: str, url: str, user: str, user_pass:str,
|
|
72
72
|
name = props["name"]
|
73
73
|
todo_type_name = props.get("toDoType", " ")
|
74
74
|
todo_guid = item["elementHeader"].get("guid", "---")
|
75
|
-
created = props.get("creationTime", "
|
76
|
-
priority = str(props.get("priority", "
|
75
|
+
created = props.get("creationTime", "---")
|
76
|
+
priority = str(props.get("priority", "---"))
|
77
77
|
due = props.get("dueTime", " ")
|
78
|
-
completed = props.get("completionTime", "
|
78
|
+
completed = props.get("completionTime", "---")
|
79
79
|
status = props.get("status")
|
80
80
|
|
81
81
|
for actor in item["assignedActors"]:
|
@@ -0,0 +1,120 @@
|
|
1
|
+
"""
|
2
|
+
SPDX-License-Identifier: Apache-2.0
|
3
|
+
Copyright Contributors to the ODPi Egeria project.
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
This script restarts an integration daemon.
|
8
|
+
|
9
|
+
"""
|
10
|
+
|
11
|
+
import os
|
12
|
+
from rich import print, print_json
|
13
|
+
from rich.console import Console
|
14
|
+
|
15
|
+
import click
|
16
|
+
from pyegeria import ServerOps, AutomatedCuration, INTEGRATION_GUIDS, Platform
|
17
|
+
from pyegeria._exceptions import (
|
18
|
+
InvalidParameterException,
|
19
|
+
PropertyServerException,
|
20
|
+
UserNotAuthorizedException,
|
21
|
+
print_exception_response,
|
22
|
+
)
|
23
|
+
|
24
|
+
|
25
|
+
@click.command('add-todo')
|
26
|
+
@click.argument('integration-connector')
|
27
|
+
@click.argument('metadata-element-guid')
|
28
|
+
@click.argument('catalog-target-name')
|
29
|
+
@click.pass_context
|
30
|
+
def add_catalog_target(ctx, integration_connector: str, metadata_element_guid:str, catalog_target_name:str)-> str:
|
31
|
+
"""Add catalog targets to the specified integration connector"""
|
32
|
+
try:
|
33
|
+
if integration_connector not in INTEGRATION_GUIDS.keys():
|
34
|
+
click.echo('Integration connector is not known')
|
35
|
+
|
36
|
+
c = ctx.obj
|
37
|
+
a_client = AutomatedCuration(c.view_server, c.view_server_url, c.userid, c.password)
|
38
|
+
token = a_client.create_egeria_bearer_token()
|
39
|
+
|
40
|
+
guid = a_client.add_catalog_target(INTEGRATION_GUIDS[integration_connector], metadata_element_guid,
|
41
|
+
catalog_target_name)
|
42
|
+
|
43
|
+
click.echo(f"Added catalog target to {integration_connector} with a return guid of {guid}")
|
44
|
+
|
45
|
+
|
46
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
47
|
+
print_exception_response(e)
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
@click.command('remove-target')
|
52
|
+
@click.argument('relationship-guid')
|
53
|
+
@click.pass_context
|
54
|
+
def remove_catalog_target(ctx, relationship_guid: str):
|
55
|
+
"""Remove the catalog target specified by the relationship guidr"""
|
56
|
+
try:
|
57
|
+
c = ctx.obj
|
58
|
+
a_client = AutomatedCuration(c.view_server, c.view_server_url, c.userid, c.password)
|
59
|
+
token = a_client.create_egeria_bearer_token()
|
60
|
+
|
61
|
+
a_client.remove_catalog_target(relationship_guid)
|
62
|
+
|
63
|
+
click.echo(f"Removed catalog target with relationship guid of {relationship_guid}")
|
64
|
+
|
65
|
+
|
66
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
67
|
+
print_exception_response(e)
|
68
|
+
|
69
|
+
|
70
|
+
@click.command('update-target')
|
71
|
+
@click.argument('relationship-guid')
|
72
|
+
@click.argument('catalog-target-name')
|
73
|
+
@click.pass_context
|
74
|
+
def update_catalog_target(ctx, relationship_guid: str, catalog_target_name:str):
|
75
|
+
"""Update the catalog target specified by the relationship guid """
|
76
|
+
try:
|
77
|
+
c = ctx.obj
|
78
|
+
a_client = AutomatedCuration(c.view_server, c.view_server_url, c.userid, c.password)
|
79
|
+
token = a_client.create_egeria_bearer_token()
|
80
|
+
|
81
|
+
guid = a_client.update_catalog_target(relationship_guid, catalog_target_name)
|
82
|
+
|
83
|
+
click.echo(f"Update catalog target with relationship guid of {relationship_guid} to a catalog target name of "
|
84
|
+
f"{catalog_target_name} with a return guid of {guid}")
|
85
|
+
|
86
|
+
|
87
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
88
|
+
print_exception_response(e)
|
89
|
+
|
90
|
+
|
91
|
+
@click.command('stop')
|
92
|
+
@click.pass_context
|
93
|
+
def stop_server(ctx):
|
94
|
+
"""Stop an integration daemon"""
|
95
|
+
try:
|
96
|
+
c = ctx.obj
|
97
|
+
p_client = Platform(c.integration_daemon, c.integration_daemon_url, c.userid, c.password)
|
98
|
+
|
99
|
+
p_client.shutdown_server()
|
100
|
+
|
101
|
+
click.echo(f"Stopped server {c.integration_daemon}")
|
102
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
103
|
+
print_exception_response(e)
|
104
|
+
|
105
|
+
|
106
|
+
@click.command('start')
|
107
|
+
@click.pass_context
|
108
|
+
def start_server(ctx):
|
109
|
+
"""Start or restart an integration daemon from its known configuration """
|
110
|
+
try:
|
111
|
+
c = ctx.obj
|
112
|
+
p_client = Platform(c.integration_daemon, c.integration_daemon_url, c.userid, c.password)
|
113
|
+
|
114
|
+
p_client.activate_server_stored_config()
|
115
|
+
|
116
|
+
click.echo(f"Started server {c.integration_daemon}")
|
117
|
+
|
118
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
119
|
+
print_exception_response(e)
|
120
|
+
|
pyegeria/my_profile_omvs.py
CHANGED
@@ -156,7 +156,7 @@ class MyProfile(Client):
|
|
156
156
|
|
157
157
|
response = await self._async_make_request("POST", url, body)
|
158
158
|
|
159
|
-
return response.json().get("
|
159
|
+
return response.json().get("elements", "No entries found")
|
160
160
|
|
161
161
|
def get_assigned_actions(self, actor_guid: str, status: str = "OPEN", server_name: str = None, start_from: int = 0,
|
162
162
|
page_size: int = 100) -> list | str:
|
@@ -472,7 +472,7 @@ class MyProfile(Client):
|
|
472
472
|
|
473
473
|
response = await self._async_make_request("GET", url)
|
474
474
|
# return response.text if response is not None else "No Results"
|
475
|
-
return json.loads(response.text).get("
|
475
|
+
return json.loads(response.text).get("elements", "No TODO returned")
|
476
476
|
|
477
477
|
def get_to_do(self, todo_guid: str, server_name: str = None) -> dict | str:
|
478
478
|
""" Get a To-Do item. Async version.
|
@@ -773,7 +773,7 @@ class MyProfile(Client):
|
|
773
773
|
|
774
774
|
response = await self._async_make_request("POST", url, body)
|
775
775
|
# return response.text
|
776
|
-
return response.json().get("
|
776
|
+
return response.json().get("elements", "No ToDos found")
|
777
777
|
|
778
778
|
def find_to_do(self, search_string: str, server_name: str = None, status: str = "OPEN",
|
779
779
|
starts_with: bool = False, ends_with: bool = False, ignore_case: bool = True,
|
@@ -861,7 +861,7 @@ class MyProfile(Client):
|
|
861
861
|
f"{todo_type}?startFrom={start_from}&pageSize={page_size}")
|
862
862
|
|
863
863
|
response = await self._async_make_request("POST", url, body)
|
864
|
-
return response.json().get("
|
864
|
+
return response.json().get("elements","No ToDos found")
|
865
865
|
|
866
866
|
def get_to_dos_by_type(self, todo_type: str, server_name: str = None, status: str = "OPEN",
|
867
867
|
start_from: int = 0, page_size: int = 100) -> list | str:
|
@@ -1,22 +1,22 @@
|
|
1
1
|
examples/doc_samples/Create_Collection_Sample.py,sha256=D8nhc4qLXIzAqVdJQjmFIS-jL6FzmYCMZyEviXnUbvg,11874
|
2
2
|
examples/doc_samples/Create_Sustainability_Collection_Sample.py,sha256=iLBm1LwRLi42Gayyb-wcWZ5NySQ6sc4kVSmwIAzP2Po,5049
|
3
|
-
examples/widgets/catalog_user/README.md,sha256
|
3
|
+
examples/widgets/catalog_user/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
|
4
4
|
examples/widgets/catalog_user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
examples/widgets/catalog_user/get_asset_graph.py,sha256=Q23n_svJBii58hgaMPLpliN8wqKl4yhnhCCk2IU2nvM,11168
|
6
6
|
examples/widgets/catalog_user/get_collection.py,sha256=DBZ5-XkoYsz4WmMSPz0Ao0wz3DlAUQve89KI26-44nc,4613
|
7
7
|
examples/widgets/catalog_user/get_tech_type_elements.py,sha256=SvnDWfBIA1NzpkKZj4-ZapIeM2SEhe5jJt7rTkvTzaA,6129
|
8
8
|
examples/widgets/catalog_user/get_tech_type_template.py,sha256=gMFVcgCIm09GQu1Vsc5ZUVH9XLhItAG1eVGZJrcnHeQ,6174
|
9
|
-
examples/widgets/catalog_user/list_assets.py,sha256=
|
9
|
+
examples/widgets/catalog_user/list_assets.py,sha256=imVun2GB3zoEjaQxKJVGcalI7yZv5Dg_ksb7tYCIVLE,6476
|
10
10
|
examples/widgets/catalog_user/list_glossary.py,sha256=zljSzVKYysFZVmVhHJt0fYFDmAG9azIphOs4MOIfA7g,5395
|
11
|
-
examples/widgets/catalog_user/list_projects.py,sha256=
|
11
|
+
examples/widgets/catalog_user/list_projects.py,sha256=PoXNBbDQ2KmPQG03z7cOykCJIYj3-6hJA0Rv9f8Bq84,6507
|
12
12
|
examples/widgets/catalog_user/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFoh0,4609
|
13
|
-
examples/widgets/catalog_user/list_todos.py,sha256=
|
13
|
+
examples/widgets/catalog_user/list_todos.py,sha256=wD9HevGcc4G_bxV25VUz1rRssdZHE33mF5zmJ6Lprt8,5522
|
14
14
|
examples/widgets/cli/__init__.py,sha256=ReG7mIcm5c512S_z1UZIpMtE67zlO_zj-1HhHWYS4fI,30
|
15
|
-
examples/widgets/cli/egeria.py,sha256=
|
16
|
-
examples/widgets/cli/egeria_cat.py,sha256=
|
17
|
-
examples/widgets/cli/egeria_ops.py,sha256=
|
18
|
-
examples/widgets/cli/egeria_per.py,sha256=
|
19
|
-
examples/widgets/cli/egeria_tech.py,sha256=
|
15
|
+
examples/widgets/cli/egeria.py,sha256=w-wc2rbIDdJLWVUzjfkXNEDzbeiVgA7PztNKMHQlf50,22172
|
16
|
+
examples/widgets/cli/egeria_cat.py,sha256=chPU_MEYJQfxjCvutqC74YhvoebVLWom-Yn1B0fW6pk,9327
|
17
|
+
examples/widgets/cli/egeria_ops.py,sha256=EuanN1lTi7OFL4xVUf5dmoBxBgcSAu51RzLG6AoCrqs,10115
|
18
|
+
examples/widgets/cli/egeria_per.py,sha256=LTIH1f7MO8xzLNyIWlriN9a5dqrm1VzSHUCTLUro7E8,5677
|
19
|
+
examples/widgets/cli/egeria_tech.py,sha256=r41wGCRhPK1KMJYFeoEifeq6OS3wTJ_zXMQPKZYeS68,8920
|
20
20
|
examples/widgets/cli/ops_config.py,sha256=BPfiU2mZA61aA1p1DHRA5eLWH8qaAwgWNoRmazzAlM4,1398
|
21
21
|
examples/widgets/operational/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
|
22
22
|
examples/widgets/operational/__init__.py,sha256=SCfzF3-aMx8EpqLWmH7JQf13gTmMAtHRbg69oseLvi8,480
|
@@ -38,8 +38,9 @@ examples/widgets/personal/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSk
|
|
38
38
|
examples/widgets/personal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
39
|
examples/widgets/personal/list_my_profile.py,sha256=WERjdQTCGhs8yz7Xa8xKlKRY1eJvB2Iz79lYJjB2h1U,5423
|
40
40
|
examples/widgets/personal/list_my_roles.py,sha256=DCiNdnoHXQueUE5g73D3oRXfJ6LaUQGbibNtDRdicR8,5078
|
41
|
-
examples/widgets/personal/monitor_my_todos.py,sha256=
|
41
|
+
examples/widgets/personal/monitor_my_todos.py,sha256=2INaUuKE5obKysoGzJLPUpc-oRJvQsx8_qoGtv_eBDI,6405
|
42
42
|
examples/widgets/personal/monitor_open_todos.py,sha256=DIeWC-2tN1EtmgC2rWJfsGMVQhtNcngobJ8paBiXXBI,5396
|
43
|
+
examples/widgets/personal/my_profile_actions.py,sha256=SrlC0PSix0b78MCWJdGJAVgai8gbJmYyz1ou2ZVOkIs,3949
|
43
44
|
examples/widgets/tech/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
|
44
45
|
examples/widgets/tech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
46
|
examples/widgets/tech/get_guid_info.py,sha256=TSB6tUr2kJH5sIUc2TfGDPEi6ysb9c6TQ-Tp4sg0iyY,3945
|
@@ -66,7 +67,7 @@ pyegeria/create_tech_guid_lists.py,sha256=jClpvURy20o4UV83LOwhGg3TZdHGzfjZ9y0MNZ
|
|
66
67
|
pyegeria/full_omag_server_config.py,sha256=l4G0oM6l-axosYACypqNqzkF6wELzs9FgKJwvDMF0Fc,45817
|
67
68
|
pyegeria/glossary_browser_omvs.py,sha256=nUCDSQ8cw8vuYgjfcaj1zLIefVI5j51evxPyXCIc4X8,101716
|
68
69
|
pyegeria/glossary_manager_omvs.py,sha256=AyTNBeOwa7ISOkpjzHHEtpiFzFo0ykcEQ525h_wqfMM,133328
|
69
|
-
pyegeria/my_profile_omvs.py,sha256=
|
70
|
+
pyegeria/my_profile_omvs.py,sha256=2v692PIwNc0RlLYElpTXymPHtf8JyNDlJeDXJ6mLa08,42250
|
70
71
|
pyegeria/platform_services.py,sha256=T2UiAl7tPfOBGL_H2b73XyyHtR0Y36irgbaljZTjD4I,41808
|
71
72
|
pyegeria/project_manager_omvs.py,sha256=_U6m2vquu4eEV7aY8X3hsvfm2zX0EBica1reGWX9amY,77078
|
72
73
|
pyegeria/registered_info.py,sha256=GfMcYz3IO0aNquf8qCrYQ9cA5KplhPx1kNt0_nMMpTM,6475
|
@@ -74,8 +75,8 @@ pyegeria/runtime_manager_omvs.py,sha256=oSVFeG_yBGXIvQR0EClLZqTZ6C5z5ReZzwm8cce8
|
|
74
75
|
pyegeria/server_operations.py,sha256=ZX7FlJRrAC7RK4bq4wHWepEsYbbWlqkUZdsJrTplVVU,16534
|
75
76
|
pyegeria/utils.py,sha256=pkVmS3RrbjaS9yz7FtOCwaOfV5FMqz-__Rt5koCnd9c,5374
|
76
77
|
pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
|
77
|
-
pyegeria-0.
|
78
|
-
pyegeria-0.
|
79
|
-
pyegeria-0.
|
80
|
-
pyegeria-0.
|
81
|
-
pyegeria-0.
|
78
|
+
pyegeria-0.6.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
79
|
+
pyegeria-0.6.1.dist-info/METADATA,sha256=j-Fwzp6c4YyQjjP5R1kUaMOKrXTGmJfbNuIPQv0Nnsc,2686
|
80
|
+
pyegeria-0.6.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
81
|
+
pyegeria-0.6.1.dist-info/entry_points.txt,sha256=j1oliLpkHsBWthLvi5-yhbvvWWzQXp-P9Cq5LVcIGBM,2822
|
82
|
+
pyegeria-0.6.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|