pyegeria 0.5.5.15__py3-none-any.whl → 0.5.5.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.
@@ -8,10 +8,16 @@ Unit tests for the Utils helper functions using the Pytest framework.
8
8
 
9
9
  A simple display for glossary terms
10
10
  """
11
-
12
- import time
13
- import json
14
11
  import argparse
12
+ import os
13
+ import time
14
+
15
+ from rich import box
16
+ from rich.console import Console
17
+ from rich.prompt import Prompt
18
+ # import pyegeria.X_asset_catalog_omvs
19
+ from rich.table import Table
20
+
15
21
  from pyegeria import (
16
22
  InvalidParameterException,
17
23
  PropertyServerException,
@@ -19,52 +25,29 @@ from pyegeria import (
19
25
  print_exception_response,
20
26
  AssetCatalog
21
27
  )
22
- # import pyegeria.X_asset_catalog_omvs
23
- from rich.table import Table
24
- from rich.live import Live
25
- from rich import box
26
- from rich.prompt import Prompt
27
- from rich.tree import Tree
28
- from rich import print
29
- from rich.console import Console
28
+ EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
29
+ EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
30
+ EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
31
+ EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
32
+ EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
33
+ EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
34
+ EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
35
+ EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
36
+ EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
37
+ EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
30
38
 
31
-
32
- from pyegeria.server_operations import ServerOps
33
- from pyegeria._deprecated_gov_engine import GovEng
34
- from pyegeria.glossary_browser_omvs import GlossaryBrowser
35
39
  disable_ssl_warnings = True
36
40
 
37
- good_platform1_url = "https://127.0.0.1:9443"
38
- good_platform2_url = "https://egeria.pdr-associates.com:7443"
39
- bad_platform1_url = "https://localhost:9443"
40
-
41
- # good_platform1_url = "https://127.0.0.1:30080"
42
- # good_platform2_url = "https://127.0.0.1:30081"
43
- # bad_platform1_url = "https://localhost:9443"
44
-
45
- good_user_1 = "garygeeke"
46
- good_user_2 = "erinoverview"
47
- bad_user_1 = "eviledna"
48
- bad_user_2 = ""
49
-
50
- good_server_1 = "active-metadata-store"
51
- good_server_2 = "simple-metadata-store"
52
- good_server_3 = "view-server"
53
- good_server_4 = "engine-host"
54
- bad_server_1 = "coco"
55
- bad_server_2 = ""
56
-
57
-
58
- def display_assets(search_string: str, guid: str=None, server: str = good_server_3, url: str = good_platform1_url, username: str = good_user_2):
41
+ def display_assets(search_string: str, guid: str, server: str, url: str, username: str, user_password: str):
59
42
 
60
43
  g_client = AssetCatalog(server, url, username)
61
- token = g_client.create_egeria_bearer_token(username, "secret")
44
+ token = g_client.create_egeria_bearer_token(username, user_password)
62
45
 
63
46
 
64
- def generate_table(search_string:str = '*') -> Table:
47
+ def generate_table(search_string:str = 'Enter Your Tech Type') -> Table:
65
48
  """Make a new table."""
66
49
  table = Table(
67
- title=f"Asset Definitions for assets like {search_string} @ {time.asctime()}",
50
+ title=f"Asset Definitions contining the string {search_string} @ {time.asctime()}",
68
51
  # style = "black on grey66",
69
52
  header_style="white on dark_blue",
70
53
  show_lines=True,
@@ -75,7 +58,8 @@ def display_assets(search_string: str, guid: str=None, server: str = good_server
75
58
  table.add_column("Display Name")
76
59
  table.add_column("Type Name")
77
60
  table.add_column("GUID", no_wrap=True)
78
- table.add_column("Network Address/Path")
61
+ table.add_column("Technology Type")
62
+ table.add_column("Path")
79
63
  table.add_column("Qualified Name")
80
64
 
81
65
 
@@ -85,9 +69,10 @@ def display_assets(search_string: str, guid: str=None, server: str = good_server
85
69
  return table
86
70
 
87
71
  for element in assets:
88
- display_name = element["displayName"]
72
+ display_name = element.get("resourceName",'---')
89
73
  qualified_name = element["qualifiedName"]
90
74
  type_name = element["type"]["typeName"]
75
+ tech_type = element.get("deployedImplementationType",'---')
91
76
  guid = element["guid"]
92
77
  path_name = element.get("extendedProperties", None)
93
78
  if path_name:
@@ -98,7 +83,7 @@ def display_assets(search_string: str, guid: str=None, server: str = good_server
98
83
 
99
84
 
100
85
  table.add_row(
101
- display_name, type_name,guid, path, qualified_name
86
+ display_name, type_name,guid, tech_type, path, qualified_name
102
87
  )
103
88
 
104
89
  g_client.close_session()
@@ -115,8 +100,9 @@ def display_assets(search_string: str, guid: str=None, server: str = good_server
115
100
 
116
101
 
117
102
  except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
118
- print_exception_response(e)
119
- assert e.related_http_code != "200", "Invalid parameters"
103
+ console.print_exception()
104
+
105
+
120
106
 
121
107
  def main():
122
108
  sus_guid = "f9b78b26-6025-43fa-9299-a905cc6d1575"
@@ -124,18 +110,19 @@ def main():
124
110
  parser.add_argument("--server", help="Name of the server to display status for")
125
111
  parser.add_argument("--url", help="URL Platform to connect to")
126
112
  parser.add_argument("--userid", help="User Id")
113
+ parser.add_argument("--password", help="User Password")
114
+
127
115
  parser.add_argument("--guid", help="GUID of glossary to search")
128
- parser.add_argument("--sustainability", help="Set True for Sustainability Glossary")
129
116
  args = parser.parse_args()
130
117
 
131
- server = args.server if args.server is not None else "view-server"
132
- url = args.url if args.url is not None else "https://localhost:9443"
133
- userid = args.userid if args.userid is not None else 'garygeeke'
118
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
119
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
120
+ userid = args.userid if args.userid is not None else EGERIA_USER
121
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
134
122
  guid = args.guid if args.guid is not None else None
135
- guid = sus_guid if args.sustainability else None
136
123
 
137
- search_string = Prompt.ask("Enter the asset you are searching for:", default="*")
138
- display_assets(search_string, guid,server, url, userid)
124
+ search_string = Prompt.ask("Enter a search string:", default="")
125
+ display_assets(search_string, guid,server, url, userid, user_pass)
139
126
 
140
127
  if __name__ == "__main__":
141
128
  main()
@@ -5,40 +5,42 @@ Copyright Contributors to the ODPi Egeria project.
5
5
 
6
6
  Display the status of cataloged platforms and servers.
7
7
  """
8
- import sys
9
- import time
10
8
  import argparse
9
+ import os
10
+ import sys
11
11
 
12
- from rich import json
12
+ from rich import print
13
+ from rich.console import Console
14
+ from rich.markdown import Markdown
13
15
  from rich.panel import Panel
16
+ from rich.prompt import Prompt
17
+ from rich.tree import Tree
14
18
 
15
19
  from pyegeria import (
16
20
  InvalidParameterException,
17
21
  PropertyServerException,
18
22
  UserNotAuthorizedException,
19
- print_exception_response,
20
23
  AssetCatalog
21
24
  )
22
- from rich.table import Table
23
- from rich.live import Live
24
- from rich.console import Console
25
- from rich.markdown import Markdown
26
- from rich.tree import Tree
27
- from rich.prompt import Prompt
28
- from rich.panel import Panel
29
- from rich.text import Text
30
- from rich import print
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
+
31
36
 
32
37
  disable_ssl_warnings = True
33
38
  console = Console(width=200)
34
39
 
35
- platform = "https://127.0.0.1:9443"
36
- user = "erinoverview"
37
- view_server = "view-server"
38
40
 
39
41
  guid_list = []
40
42
 
41
- def asset_viewer(asset_guid: str, server_name:str, platform_url:str, user:str):
43
+ def asset_viewer(asset_guid: str, server_name:str, platform_url:str, user:str, user_pass:str):
42
44
 
43
45
  def build_classifications(classification: dict) -> Markdown:
44
46
 
@@ -89,10 +91,10 @@ def asset_viewer(asset_guid: str, server_name:str, platform_url:str, user:str):
89
91
 
90
92
  console = Console(width=200)
91
93
 
92
- a_client = AssetCatalog(view_server, platform,
94
+ a_client = AssetCatalog(server_name, platform_url,
93
95
  user_id=user)
94
96
 
95
- token = a_client.create_egeria_bearer_token(user, "secret")
97
+ token = a_client.create_egeria_bearer_token(user, user_pass)
96
98
  # asset_info = a_client.find_assets_in_domain(asset_name)
97
99
  # if type(asset_info) is str:
98
100
  # print("\n No Assets Found - Exiting\n")
@@ -232,8 +234,8 @@ def asset_viewer(asset_guid: str, server_name:str, platform_url:str, user:str):
232
234
  PropertyServerException,
233
235
  UserNotAuthorizedException
234
236
  ) as e:
235
- print_exception_response(e)
236
-
237
+ console.print_exception()
238
+ console.print("\n\n ======> Most likely the GUID you provided is either incorrect or not an asset\n[red bold]")
237
239
 
238
240
  def main():
239
241
  parser = argparse.ArgumentParser()
@@ -241,14 +243,16 @@ def main():
241
243
  parser.add_argument("--server", help="Name of the server to display status for")
242
244
  parser.add_argument("--url", help="URL Platform to connect to")
243
245
  parser.add_argument("--userid", help="User Id")
246
+ parser.add_argument("--password", help="User Password")
244
247
  args = parser.parse_args()
245
248
 
246
- server = args.server if args.server is not None else "view-server"
247
- url = args.url if args.url is not None else "https://localhost:9443"
248
- userid = args.userid if args.userid is not None else 'erinoverview'
249
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
250
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
251
+ userid = args.userid if args.userid is not None else EGERIA_USER
252
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
249
253
 
250
- asset_guid = Prompt.ask("Enter the Asset GUID to view:", default="8e35b39e-6ee7-4d60-aff5-4b09406c5e79")
251
- asset_viewer(asset_guid,server, url, userid)
254
+ asset_guid = Prompt.ask("Enter the Asset GUID to view:", default="")
255
+ asset_viewer(asset_guid,server, url, userid, user_pass)
252
256
 
253
257
  if __name__ == "__main__":
254
258
  main()
@@ -8,7 +8,7 @@ A simple viewer for collections - provide the root and we display the hierarchy
8
8
  """
9
9
 
10
10
  import argparse
11
-
11
+ import os
12
12
  from rich import print
13
13
  from rich.panel import Panel
14
14
  from rich.prompt import Prompt
@@ -21,16 +21,25 @@ from pyegeria._exceptions import (
21
21
  )
22
22
 
23
23
  disable_ssl_warnings = True
24
-
25
-
26
- def collection_viewer(root: str, server_name: str, platform_url: str, user: str):
24
+ EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
25
+ EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
26
+ EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
27
+ EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
28
+ EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
29
+ EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
30
+ EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
31
+ EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
32
+ EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
33
+ EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
34
+
35
+
36
+ def collection_viewer(root: str, server_name: str, platform_url: str, user: str, user_password: str):
27
37
  """ A simple collection viewer"""
28
38
  def walk_collection_hierarchy(collection_client: CollectionManager, root_collection_name: str, tree: Tree) -> None:
29
39
  """Recursively build a Tree with collection contents."""
30
40
  members = collection_client.get_member_list(root_collection_name)
31
41
  if members:
32
42
  for member in members:
33
-
34
43
  style = ""
35
44
  text_collection_name = Text(f"[bold white] Name: {member['name']}", "")
36
45
  text_qualified_name = Text(f"* QualifiedName: {member['qualifiedName']}""yellow")
@@ -45,13 +54,14 @@ def collection_viewer(root: str, server_name: str, platform_url: str, user: str)
45
54
  if type(children) is list:
46
55
  branch = tt.add(f"[bold magenta]Members", style=style, guide_style=style)
47
56
  walk_collection_hierarchy(collection_client, member['qualifiedName'], branch),
48
-
57
+ else:
58
+ tt = tree.add(f"[bold magenta]No collections match {root_collection_name}", style="bold red")
49
59
  try:
50
60
  tree = Tree(f"[bold bright green]{root}", guide_style="bold bright_blue")
51
61
  c_client = CollectionManager(server_name, platform_url,
52
62
  user_id=user)
53
63
 
54
- token = c_client.create_egeria_bearer_token(user, "secret")
64
+ token = c_client.create_egeria_bearer_token(user, user_password)
55
65
  walk_collection_hierarchy(c_client, root, tree)
56
66
  print(tree)
57
67
 
@@ -69,14 +79,16 @@ def main():
69
79
  parser.add_argument("--server", help="Name of the server to display status for")
70
80
  parser.add_argument("--url", help="URL Platform to connect to")
71
81
  parser.add_argument("--userid", help="User Id")
82
+ parser.add_argument("--password", help="User Password")
72
83
  args = parser.parse_args()
73
84
 
74
- server = args.server if args.server is not None else "view-server"
75
- url = args.url if args.url is not None else "https://localhost:9443"
76
- userid = args.userid if args.userid is not None else 'erinoverview'
85
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
86
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
87
+ userid = args.userid if args.userid is not None else EGERIA_USER
88
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
77
89
 
78
90
  root_collection = Prompt.ask("Enter the Root Collection to start from:", default="Digital Products Root")
79
- collection_viewer(root_collection, server, url, userid)
91
+ collection_viewer(root_collection, server, url, userid, user_pass)
80
92
 
81
93
  if __name__ == "__main__":
82
94
  main()
@@ -8,7 +8,7 @@ Unit tests for the Utils helper functions using the Pytest framework.
8
8
 
9
9
  A simple display for glossary terms
10
10
  """
11
-
11
+ import os
12
12
  import time
13
13
  import json
14
14
  import argparse
@@ -32,31 +32,22 @@ from pyegeria._deprecated_gov_engine import GovEng
32
32
  from pyegeria.glossary_browser_omvs import GlossaryBrowser
33
33
  disable_ssl_warnings = True
34
34
 
35
- good_platform1_url = "https://127.0.0.1:9443"
36
- good_platform2_url = "https://egeria.pdr-associates.com:7443"
37
- bad_platform1_url = "https://localhost:9443"
38
-
39
- # good_platform1_url = "https://127.0.0.1:30080"
40
- # good_platform2_url = "https://127.0.0.1:30081"
41
- # bad_platform1_url = "https://localhost:9443"
42
-
43
- good_user_1 = "garygeeke"
44
- good_user_2 = "erinoverview"
45
- bad_user_1 = "eviledna"
46
- bad_user_2 = ""
47
-
48
- good_server_1 = "active-metadata-store"
49
- good_server_2 = "simple-metadata-store"
50
- good_server_3 = "view-server"
51
- good_server_4 = "engine-host"
52
- bad_server_1 = "coco"
53
- bad_server_2 = ""
35
+ EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
36
+ EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
37
+ EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
38
+ EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
39
+ EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
40
+ EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
41
+ EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
42
+ EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
43
+ EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
44
+ EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
54
45
 
55
46
 
56
- def display_glossary_terms(search_string: str, guid: str=None, server: str = good_server_3, url: str = good_platform1_url, username: str = good_user_2):
47
+ def display_glossary_terms(search_string: str, guid: str, server: str, url: str, username: str, user_password: str):
57
48
 
58
49
  g_client = GlossaryBrowser(server, url)
59
- token = g_client.create_egeria_bearer_token(username, "secret")
50
+ token = g_client.create_egeria_bearer_token(username, user_password)
60
51
 
61
52
 
62
53
  def generate_table(search_string:str = '*') -> Table:
@@ -112,8 +103,7 @@ def display_glossary_terms(search_string: str, guid: str=None, server: str = goo
112
103
 
113
104
 
114
105
  except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
115
- print_exception_response(e)
116
- assert e.related_http_code != "200", "Invalid parameters"
106
+ console.print_exception()
117
107
 
118
108
  def main():
119
109
  sus_guid = "f9b78b26-6025-43fa-9299-a905cc6d1575"
@@ -121,18 +111,20 @@ def main():
121
111
  parser.add_argument("--server", help="Name of the server to display status for")
122
112
  parser.add_argument("--url", help="URL Platform to connect to")
123
113
  parser.add_argument("--userid", help="User Id")
114
+ parser.add_argument("--password", help="User Password")
124
115
  parser.add_argument("--guid", help="GUID of glossary to search")
125
116
  parser.add_argument("--sustainability", help="Set True for Sustainability Glossary")
126
117
  args = parser.parse_args()
127
118
 
128
- server = args.server if args.server is not None else "view-server"
129
- url = args.url if args.url is not None else "https://localhost:9443"
130
- userid = args.userid if args.userid is not None else 'garygeeke'
119
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
120
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
121
+ userid = args.userid if args.userid is not None else EGERIA_USER
122
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
131
123
  guid = args.guid if args.guid is not None else None
132
124
  guid = sus_guid if args.sustainability else None
133
125
 
134
126
  search_string = Prompt.ask("Enter the term you are searching for:", default="*")
135
- display_glossary_terms(search_string, guid,server, url, userid)
127
+ display_glossary_terms(search_string, guid,server, url, userid, user_pass)
136
128
 
137
129
  if __name__ == "__main__":
138
130
  main()
@@ -9,7 +9,7 @@ Unit tests for the Utils helper functions using the Pytest framework.
9
9
 
10
10
  A simple display for glossary terms
11
11
  """
12
-
12
+ import os
13
13
  import argparse
14
14
  import json
15
15
 
@@ -26,9 +26,19 @@ from pyegeria import (
26
26
  print_exception_response,
27
27
  Client
28
28
  )
29
+ EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
30
+ EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
31
+ EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
32
+ EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
33
+ EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
34
+ EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
35
+ EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
36
+ EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
37
+ EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
38
+ EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
29
39
 
30
40
 
31
- def display_guid(guid: str, server: str, url: str, username: str):
41
+ def display_guid(guid: str, server: str, url: str, username: str, user_password: str):
32
42
 
33
43
  c = Client(server, url, user_id=username)
34
44
  url = (f"{url}/servers/{server}/open-metadata/repository-services/users/{username}/"
@@ -38,6 +48,8 @@ def display_guid(guid: str, server: str, url: str, username: str):
38
48
  try:
39
49
  console = Console(width = 180)
40
50
  r = c.make_request("GET", url)
51
+ if r.status_code == 200:
52
+ pass
41
53
  e = r.json()['entity']
42
54
  p = e['properties']['instanceProperties']
43
55
 
@@ -58,10 +70,10 @@ def display_guid(guid: str, server: str, url: str, username: str):
58
70
 
59
71
  except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException, ValueError) as e:
60
72
  if type(e) is str:
61
- print(e)
73
+ console.print_exception()
62
74
  else:
63
- console.print(f"\n Looks like the GUID isn't know...detailed message follows\n")
64
- print_exception_response(e)
75
+ console.print(f"\n Looks like the GUID isn't known...detailed message follows\n")
76
+ console.print_exception()
65
77
 
66
78
  def main():
67
79
 
@@ -69,17 +81,18 @@ def main():
69
81
  parser.add_argument("--server", help="Name of the server to display status for")
70
82
  parser.add_argument("--url", help="URL Platform to connect to")
71
83
  parser.add_argument("--userid", help="User Id")
84
+ parser.add_argument("--password", help="User Password")
72
85
 
73
86
  # parser.add_argument("--sponsor", help="Name of sponsor to search")
74
87
  args = parser.parse_args()
75
88
 
76
- server = args.server if args.server is not None else "active-metadata-store"
77
- url = args.url if args.url is not None else "https://localhost:9443"
78
- userid = args.userid if args.userid is not None else 'erinoverview'
79
-
89
+ server = args.server if args.server is not None else EGERIA_METADATA_STORE
90
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
91
+ userid = args.userid if args.userid is not None else EGERIA_USER
92
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
80
93
  guid = Prompt.ask("Enter the GUID to retrieve:", default=None)
81
94
 
82
- display_guid(guid, server, url, userid)
95
+ display_guid(guid, server, url, userid, user_pass)
83
96
 
84
97
  if __name__ == "__main__":
85
98
  main()
@@ -6,7 +6,7 @@ Copyright Contributors to the ODPi Egeria project.
6
6
  A simple viewer for collections - provide the root and we display the hierarchy
7
7
 
8
8
  """
9
-
9
+ import os
10
10
  import argparse
11
11
  import asyncio
12
12
  import nest_asyncio
@@ -22,17 +22,22 @@ from pyegeria import (UserNotAuthorizedException, PropertyServerException,
22
22
  from pyegeria._exceptions import (
23
23
  print_exception_response,
24
24
  )
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')
25
35
 
26
36
  nest_asyncio.apply()
27
37
  console = Console()
28
38
  disable_ssl_warnings = True
29
39
 
30
- platform = "https://127.0.0.1:9443"
31
- user = "erinoverview"
32
- view_server = "view-server"
33
-
34
-
35
- def tech_viewer(tech: str, server_name:str, platform_url:str, user:str):
40
+ def tech_viewer(tech: str, server_name:str, platform_url:str, user:str, user_password:str):
36
41
 
37
42
  def view_tech_details(a_client: AutomatedCuration, root_collection_name: str, tree: Tree) -> Tree:
38
43
  l2: Tree = None
@@ -78,10 +83,10 @@ def tech_viewer(tech: str, server_name:str, platform_url:str, user:str):
78
83
 
79
84
  try:
80
85
  tree = Tree(f"[bold bright green]{tech}", guide_style="bold bright_blue")
81
- a_client = AutomatedCuration(view_server, platform,
86
+ a_client = AutomatedCuration(server_name, platform_url,
82
87
  user_id=user)
83
88
 
84
- token = a_client.create_egeria_bearer_token(user, "secret")
89
+ token = a_client.create_egeria_bearer_token(user, user_password)
85
90
  view_tech_details(a_client,tech,tree)
86
91
  print(tree)
87
92
 
@@ -99,14 +104,16 @@ def main():
99
104
  parser.add_argument("--server", help="Name of the server to display status for")
100
105
  parser.add_argument("--url", help="URL Platform to connect to")
101
106
  parser.add_argument("--userid", help="User Id")
107
+ parser.add_argument("--password", help="User Password")
102
108
  args = parser.parse_args()
103
109
 
104
- server = args.server if args.server is not None else "view-server"
105
- url = args.url if args.url is not None else "https://127.0.0.1:9443"
106
- userid = args.userid if args.userid is not None else 'erinoverview'
110
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
111
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
112
+ userid = args.userid if args.userid is not None else EGERIA_USER
113
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
107
114
 
108
115
  tech = Prompt.ask("Enter the Technology to start from:", default="PostgreSQL Server")
109
- tech_viewer(tech,server, url, userid)
116
+ tech_viewer(tech,server, url, userid, user_pass)
110
117
 
111
118
  if __name__ == "__main__":
112
119
  main()
@@ -8,7 +8,7 @@ Unit tests for the Utils helper functions using the Pytest framework.
8
8
 
9
9
  A simple display for my profile
10
10
  """
11
-
11
+ import os
12
12
  import argparse
13
13
  import time
14
14
 
@@ -24,10 +24,21 @@ from pyegeria import (
24
24
  RegisteredInfo
25
25
  )
26
26
 
27
+ EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
28
+ EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
29
+ EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
30
+ EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
31
+ EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
32
+ EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
33
+ EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
34
+ EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
35
+ EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
36
+ EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
37
+
27
38
 
28
- def display_asset_types(server: str, url: str, username: str):
39
+ def display_asset_types(server: str, url: str, username: str, user_password: str):
29
40
  r_client = RegisteredInfo(server, url, username)
30
- token = r_client.create_egeria_bearer_token(username, "secret")
41
+ token = r_client.create_egeria_bearer_token(username, user_password)
31
42
  asset_types = r_client.list_asset_types()
32
43
 
33
44
  def generate_table() -> Table:
@@ -79,16 +90,18 @@ def main():
79
90
  parser.add_argument("--server", help="Name of the server to display status for")
80
91
  parser.add_argument("--url", help="URL Platform to connect to")
81
92
  parser.add_argument("--userid", help="User Id")
93
+ parser.add_argument("--password", help="User Password")
82
94
 
83
95
  args = parser.parse_args()
84
96
 
85
- server = args.server if args.server is not None else "view-server"
86
- url = args.url if args.url is not None else "https://localhost:9443"
87
- userid = args.userid if args.userid is not None else 'erinoverview'
97
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
98
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
99
+ userid = args.userid if args.userid is not None else EGERIA_USER
100
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
88
101
  # guid = args.guid if args.guid is not None else None
89
102
  guid = None
90
103
 
91
- display_asset_types(server, url, userid)
104
+ display_asset_types(server, url, userid, user_pass)
92
105
 
93
106
  if __name__ == "__main__":
94
107
  main()
@@ -10,7 +10,7 @@ A simple widget to retrieve the registered services.
10
10
  import argparse
11
11
  import sys
12
12
  import time
13
-
13
+ import os
14
14
  from rich import box
15
15
  from rich.console import Console
16
16
  from rich.prompt import Prompt
@@ -22,7 +22,16 @@ from pyegeria import (
22
22
  UserNotAuthorizedException,
23
23
  RegisteredInfo,
24
24
  )
25
-
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')
26
35
 
27
36
  def display_registered_svcs(service: str, server: str , url: str,
28
37
  username: str, password: str ):
@@ -125,10 +134,10 @@ def main():
125
134
 
126
135
  args = parser.parse_args()
127
136
 
128
- server = args.server if args.server is not None else "active-metadata-store"
129
- url = args.url if args.url is not None else "https://localhost:9443"
130
- userid = args.userid if args.userid is not None else 'garygeeke'
131
- password = args.password if args.password is not None else 'secret'
137
+ server = args.server if args.server is not None else EGERIA_METADATA_STORE
138
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
139
+ userid = args.userid if args.userid is not None else EGERIA_ADMIN_USER
140
+ password = args.password if args.password is not None else EGERIA_USER_PASSWORD
132
141
 
133
142
  svc_kind = Prompt.ask("Enter the service type you are searching for:", default="all")
134
143
 
@@ -32,10 +32,6 @@ from rich import print
32
32
  disable_ssl_warnings = True
33
33
  console = Console(width=200)
34
34
 
35
- platform = "https://127.0.0.1:9443"
36
- user = "erinoverview"
37
- view_server = "view-server"
38
-
39
35
  guid_list = []
40
36
 
41
37
  def tech_viewer(tech_name: str, server_name:str, platform_url:str, user:str):
@@ -63,7 +59,7 @@ def tech_viewer(tech_name: str, server_name:str, platform_url:str, user:str):
63
59
 
64
60
  console = Console()
65
61
 
66
- a_client = AutomatedCuration(view_server, platform,
62
+ a_client = AutomatedCuration(server_name, platform_url,
67
63
  user_id=user)
68
64
 
69
65
  token = a_client.create_egeria_bearer_token(user, "secret")
@@ -26,10 +26,6 @@ from pyegeria import (
26
26
  disable_ssl_warnings = True
27
27
  console = Console(width=200)
28
28
 
29
- platform = "https://127.0.0.1:9443"
30
- user = "erinoverview"
31
- view_server = "view-server"
32
-
33
29
  guid_list = []
34
30
 
35
31
  def tech_viewer(tech_name: str, server_name:str, platform_url:str, user:str):
@@ -57,7 +53,7 @@ def tech_viewer(tech_name: str, server_name:str, platform_url:str, user:str):
57
53
 
58
54
  console = Console()
59
55
 
60
- a_client = AutomatedCuration(view_server, platform,
56
+ a_client = AutomatedCuration(server_name, platform_url,
61
57
  user_id=user)
62
58
 
63
59
  token = a_client.create_egeria_bearer_token(user, "secret")
@@ -6,7 +6,7 @@ Copyright Contributors to the ODPi Egeria project.
6
6
  Display the status of cataloged platforms and servers.
7
7
  """
8
8
  import json
9
- import sys
9
+ import os
10
10
  import time
11
11
  import argparse
12
12
  from datetime import datetime
@@ -28,28 +28,7 @@ from pyegeria.server_operations import ServerOps
28
28
 
29
29
  disable_ssl_warnings = True
30
30
 
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 = "engine-host"
47
- good_server_4 = "engine-host"
48
- bad_server_1 = "coco"
49
- bad_server_2 = ""
50
-
51
-
52
- def display_gov_actions_status(server: str = good_server_3, url: str = good_platform1_url, username: str = good_user_1):
31
+ def display_gov_actions_status(server: str, url: str, username: str):
53
32
  server_name = server
54
33
  s_client = ServerOps(server_name, url, username)
55
34
 
@@ -8,6 +8,7 @@ Display the status of cataloged platforms and servers.
8
8
 
9
9
  import time
10
10
  import argparse
11
+ import os
11
12
 
12
13
  from pyegeria._exceptions import (
13
14
  InvalidParameterException,
@@ -21,6 +22,17 @@ from rich.console import Console
21
22
 
22
23
  from pyegeria import RuntimeManager
23
24
 
25
+ EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
26
+ EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
27
+ EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
28
+ EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
29
+ EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
30
+ EGERIA_ADMIN_USER = os.environ.get('ADMIN_USER', 'garygeeke')
31
+ EGERIA_ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'secret')
32
+ EGERIA_USER = os.environ.get('EGERIA_USER', 'erinoverview')
33
+ EGERIA_USER_PASSWORD = os.environ.get('EGERIA_USER_PASSWORD', 'secret')
34
+
35
+
24
36
  disable_ssl_warnings = True
25
37
  console = Console(width=200)
26
38
 
@@ -116,9 +128,9 @@ def main():
116
128
  parser.add_argument("--userid", help="User Id")
117
129
  args = parser.parse_args()
118
130
 
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'
131
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
132
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
133
+ userid = args.userid if args.userid is not None else EGERIA_USER
122
134
 
123
135
  display_status(server, url, userid)
124
136
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 0.5.5.15
3
+ Version: 0.5.5.18
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -2,30 +2,30 @@ examples/doc_samples/Create_Collection_Sample.py,sha256=D8nhc4qLXIzAqVdJQjmFIS-j
2
2
  examples/doc_samples/Create_Sustainability_Collection_Sample.py,sha256=iLBm1LwRLi42Gayyb-wcWZ5NySQ6sc4kVSmwIAzP2Po,5049
3
3
  examples/widgets/catalog_user/README.md,sha256=aCCVo7iqyE-XGEvmoYXnkIGM0VskF95JTj6Egzec7LM,883
4
4
  examples/widgets/catalog_user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- examples/widgets/catalog_user/list_assets.py,sha256=s-Uje62lRYhpnPXt3Bl31IJ5YXcs8mp4-alPYAMMIqk,4701
6
- examples/widgets/catalog_user/view_asset_graph.py,sha256=1B0v4YEix35anTgg5_h5q2lkVe_2wyibJatjROMA-uw,9688
7
- examples/widgets/catalog_user/view_collection.py,sha256=RWvq_HT5e6JBAiQBc3w94SM6DYJJEJluVen3vX-PqGo,3270
8
- examples/widgets/catalog_user/view_glossary.py,sha256=uDAZHJ1WPkkl9S1fzVKJOISjU8LDMPQO9KP4qdmaRnY,4652
5
+ examples/widgets/catalog_user/list_assets.py,sha256=EjVFRMyDLsyK_PCO0Zw4tyXemHXiyfj30O1WhjcmdE8,4687
6
+ examples/widgets/catalog_user/view_asset_graph.py,sha256=VBj8jrdulhyteSAgDve6JYihd6UArWOeXwWVzeZaQgg,10447
7
+ examples/widgets/catalog_user/view_collection.py,sha256=8MAsHZL9ooDOdMnxREWC7mLGxG419WUAliThjkSee_M,4331
8
+ examples/widgets/catalog_user/view_glossary.py,sha256=CGqKMiS-qENi67T2igQXvprIHm3tfYfE8ApDEAppGos,4898
9
9
  examples/widgets/developer/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
10
10
  examples/widgets/developer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- examples/widgets/developer/get_guid_info.py,sha256=-vOlZfC1lka_evpcwnnNmFU1A88x49kwKIJyYIJzQSg,2549
12
- examples/widgets/developer/get_tech_details.py,sha256=C1pmfgsp8tjR3uvAg60iFnSDw6owjsQ8kJQQbz33Bz0,4528
13
- examples/widgets/developer/list_asset_types.py,sha256=iIA0TX9C_W5u_Bh3RzRMX0x2CdEdH7RFCkUOOP2ZzQw,2847
14
- examples/widgets/developer/list_registered_services.py,sha256=oIrE3bSG92C107Q_gFoo7CWYy5LBliQWXElFyiVmRzg,5122
11
+ examples/widgets/developer/get_guid_info.py,sha256=CVNq56pNFC1kKk3ZnnLJsDx83e1WwNGIgHtscNNgY_I,3545
12
+ examples/widgets/developer/get_tech_details.py,sha256=gLhuvUo1MP-qJdal38b6duOclbixWbDk4ySZqM8EBtQ,5386
13
+ examples/widgets/developer/list_asset_types.py,sha256=waXn2DW9dHfRLnHYdCeGrafwPcAv029ZFAYTy51U40g,3791
14
+ examples/widgets/developer/list_registered_services.py,sha256=Ch8gtvhNIE-XIt2Gr6lLYGJKJ6zSX-mkgQ7HhQ-EMpA,5897
15
15
  examples/widgets/developer/list_relationship_types.py,sha256=ruXH_6vIcnCuJvLc-zokvjnbIit1WQ33uRGSpipRuPo,4216
16
16
  examples/widgets/developer/list_tech_templates.py,sha256=UPeuLq9jITpiPT3q_FM-k8-4tKYUNQHaYfqw1VOOlDY,5110
17
17
  examples/widgets/developer/list_tech_types.py,sha256=K8lBr6o0-rk3niyRAe76E1X5M70yI38F556rzeZGSTQ,3941
18
18
  examples/widgets/developer/list_valid_metadata_values.py,sha256=JMfkJe-hscrNJAqgQO7ehA6BaiB71r9Fs2eWvwUBheE,5275
19
19
  examples/widgets/operational/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
20
20
  examples/widgets/operational/__init__.py,sha256=8ebdyTD7i-XXyZr0vDx6jnXalE6QjhCvu7n6YXxwgL0,112
21
- examples/widgets/operational/get_tech_type_elements.py,sha256=ZxE6_-LqAEHffizKL_R3q3vGFM858VRsAqgQwt3Sbak,4985
22
- examples/widgets/operational/get_tech_type_template.py,sha256=SXSQtOisz3qDqRVWiB8vIVbavBSGz1Dn-IXSnX8NJUE,5015
23
- examples/widgets/operational/view_asset_events.py,sha256=rQoti3barirB2hdKl9Sm2liUWaAtaB-sbYh0wkoO3vA,2634
21
+ examples/widgets/operational/get_tech_type_elements.py,sha256=3hrVRVXm7HnzcEhQSUuKMtidXM-fgMcUh69nbqORQ2w,4902
22
+ examples/widgets/operational/get_tech_type_template.py,sha256=3BVnvAAB01n69UAAwJxTnh_uS2PKNsEEeEqs2cSbysc,4932
23
+ examples/widgets/operational/view_asset_events.py,sha256=bVGQ1OLg6yK3z1CIqAhytoAb3NP1TWSK2gSTdDDUHpE,2633
24
24
  examples/widgets/operational/view_coco_status.py,sha256=QloMgVcXL2Fx2XHyk71PKCwmzRfc_Q_cAvpyomcYi_Y,3322
25
25
  examples/widgets/operational/view_eng_action_status.py,sha256=sCkQh5XRDq0u6ZObxmUA0-wUhUoVMdV6_ho_d4PAdqw,4973
26
- examples/widgets/operational/view_gov_eng_status.py,sha256=rcZv82l7q8jccUVIb-K2vazQorcKP86SAtES0--SQns,3998
26
+ examples/widgets/operational/view_gov_eng_status.py,sha256=EApPezGh6p_WkejmLLm9OudgJnMGGagu7UCU2HwLZb4,3369
27
27
  examples/widgets/operational/view_integ_daemon_status.py,sha256=9GEqKl_ZYmnEa4-WmBjoTefaxFhqt0ShcyxybqC7lmA,5850
28
- examples/widgets/operational/view_platform_status.py,sha256=lqZnObLgJ0qf8hdcRwETXTGd8A8FbFc-rg_ckg86GfE,4457
28
+ examples/widgets/operational/view_platform_status.py,sha256=LT7AfTEJwty_lSWOVB6uDzBDZ64xTt4LPzoTkwHnuag,5133
29
29
  examples/widgets/operational/view_server_list.py,sha256=j1V5RJ8kwGkyQO8nbygtD5W-85TVO4TsR3SbnKD2eDM,3125
30
30
  examples/widgets/operational/view_server_status.py,sha256=slooQbjhdbTdRXZcRCHbZGUBtlHCO61xHa1J1P-iRKE,2826
31
31
  examples/widgets/personal_organizer/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
@@ -60,8 +60,8 @@ pyegeria/runtime_manager_omvs.py,sha256=WekK7Yeyn6Qu9YmbSDo3m57MN0xOsIm9M8kGHfRO
60
60
  pyegeria/server_operations.py,sha256=hEaU6YC0iNEQFvcXYvcE4J6BQKlqMJk33nViCNIEBE4,16349
61
61
  pyegeria/utils.py,sha256=lWd0FrHh7DFR1UeOzk3Y1I_xR_zmlFYWL1Pci-ZuZmw,5342
62
62
  pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
63
- pyegeria-0.5.5.15.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
64
- pyegeria-0.5.5.15.dist-info/METADATA,sha256=wrnT-0YKNYdIiMQ6-9SxvflsH2x5tS39SvpG-RI9MHA,2612
65
- pyegeria-0.5.5.15.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
66
- pyegeria-0.5.5.15.dist-info/entry_points.txt,sha256=yR22RzRO974vzRMeo7_ysc-_5pxHmgnvyk8FHTZviOw,1950
67
- pyegeria-0.5.5.15.dist-info/RECORD,,
63
+ pyegeria-0.5.5.18.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
64
+ pyegeria-0.5.5.18.dist-info/METADATA,sha256=Ij6B2xi9dwFwN5Z-T6QYSwVrZdFlfuz-fPfBKRKNHeE,2612
65
+ pyegeria-0.5.5.18.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
66
+ pyegeria-0.5.5.18.dist-info/entry_points.txt,sha256=yR22RzRO974vzRMeo7_ysc-_5pxHmgnvyk8FHTZviOw,1950
67
+ pyegeria-0.5.5.18.dist-info/RECORD,,