pyegeria 0.8.4.25__py3-none-any.whl → 0.8.4.26__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.
@@ -120,9 +120,7 @@ from commands.ops.restart_integration_daemon import restart_connector
120
120
  envvar="EGERIA_ADMIN_PASSWORD",
121
121
  help="Egeria admin password",
122
122
  )
123
- @click.option(
124
- "--userid", default="erinoverview", envvar="EGERIA_USER", help="Egeria user"
125
- )
123
+ @click.option("--userid", default="garygeeke", envvar="EGERIA_USER", help="Egeria user")
126
124
  @click.option(
127
125
  "--password",
128
126
  default="secret",
@@ -386,9 +384,6 @@ def servers(ctx):
386
384
 
387
385
  servers.add_command(start_server)
388
386
  servers.add_command(stop_server)
389
- servers.add_command(refresh_gov_eng_config)
390
-
391
- CONTEXT_SETTINGS = dict(default_map={"runserver": {"port": 5000}})
392
387
 
393
388
 
394
389
  @tell.group("integration-daemon")
@@ -431,8 +426,6 @@ def restart_connectors(ctx, connector):
431
426
  integration_daemon.add_command(add_catalog_target)
432
427
  integration_daemon.add_command(remove_catalog_target)
433
428
  integration_daemon.add_command(update_catalog_target)
434
- integration_daemon.add_command(start_server)
435
- integration_daemon.add_command(stop_server)
436
429
 
437
430
 
438
431
  @tell.group("engine-host")
@@ -112,7 +112,7 @@ from commands.tech.list_related_specification import (
112
112
  help="Egeria admin password",
113
113
  )
114
114
  @click.option(
115
- "--userid", default="erinoverview", envvar="EGERIA_USER", help="Egeria user"
115
+ "--userid", default="peterprofile", envvar="EGERIA_USER", help="Egeria user"
116
116
  )
117
117
  @click.option(
118
118
  "--password",
@@ -125,13 +125,11 @@ def refresh_gov_eng_config(ctx):
125
125
 
126
126
  @click.command("start")
127
127
  @click.pass_context
128
- @click.option("--server", default=None, help="OMAG Server to start")
128
+ @click.option("--server", default="simple-metadata-store", help="OMAG Server to start")
129
129
  def start_server(ctx, server):
130
130
  """Start or restart an engine-host from its known configuration"""
131
131
  c = ctx.obj
132
- if server is None:
133
- click.echo(c.parent.info_name)
134
- server = "simple-metadata-store"
132
+
135
133
  p_client = EgeriaTech(c.view_server, c.view_server_url, c.userid, c.password)
136
134
  token = p_client.create_egeria_bearer_token()
137
135
  try:
@@ -114,7 +114,7 @@ def display_status(
114
114
  server_status = "UNKNOWN"
115
115
  status_flag = "[bright yellow]"
116
116
 
117
- server_list = (
117
+ server_list += (
118
118
  f"{status_flag}{server_types[server_type]}: {server_name}\n"
119
119
  )
120
120
  # server_list = server_list + serv
@@ -3,44 +3,63 @@
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
5
5
 
6
- Unit tests for the Utils helper functions using the Pytest framework.
6
+ Display the server status of all registered servers across all platforms.
7
+
8
+ Note: This implementation is using the platform-report. A more complex platform environment may require
9
+ reimplementing from a server only perspective using get_servers_by_dep_impl_type() to find the guids and
10
+ then get_server_by_guid() to get the status. Less efficient but may be more robust for some environments.
11
+
7
12
 
8
13
 
9
14
  A simple server status display
10
15
  """
11
16
  import argparse
12
17
  import os
18
+ import sys
13
19
  import time
14
20
 
15
21
  from rich.live import Live
16
22
  from rich.table import Table
17
23
 
24
+ from examples.doc_samples.Create_Sustainability_Collection_Sample import description
18
25
  from pyegeria import (
19
26
  InvalidParameterException,
20
27
  PropertyServerException,
21
28
  UserNotAuthorizedException,
22
29
  print_exception_response,
23
- ServerOps
30
+ RuntimeManager,
24
31
  )
25
32
 
26
33
  EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
27
- EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
28
- EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
29
- EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
30
- EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
31
- EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
32
- EGERIA_INTEGRATION_DAEMON_URL = os.environ.get('EGERIA_INTEGRATION_DAEMON_URL', 'https://localhost:9443')
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
- EGERIA_JUPYTER = bool(os.environ.get('EGERIA_JUPYTER', 'False'))
38
- EGERIA_WIDTH = int(os.environ.get('EGERIA_WIDTH', '200'))
39
-
40
-
41
- def display_status(server: str, url: str, username: str, user_pass: str, jupyter: bool = EGERIA_JUPYTER,
42
- width: int = EGERIA_WIDTH):
43
- p_client = ServerOps(server, url, username, user_pass)
34
+ EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
35
+ EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
36
+ EGERIA_VIEW_SERVER = os.environ.get("VIEW_SERVER", "view-server")
37
+ EGERIA_VIEW_SERVER_URL = os.environ.get(
38
+ "EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
39
+ )
40
+ EGERIA_INTEGRATION_DAEMON = os.environ.get("INTEGRATION_DAEMON", "integration-daemon")
41
+ EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
42
+ "EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
43
+ )
44
+ EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
45
+ EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
46
+ EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
47
+ EGERIA_USER_PASSWORD = os.environ.get("EGERIA_USER_PASSWORD", "secret")
48
+ EGERIA_JUPYTER = bool(os.environ.get("EGERIA_JUPYTER", "False"))
49
+ EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "200"))
50
+
51
+
52
+ def display_status(
53
+ extended: bool,
54
+ view_server: str,
55
+ url: str,
56
+ username: str,
57
+ user_pass: str,
58
+ jupyter: bool = EGERIA_JUPYTER,
59
+ width: int = EGERIA_WIDTH,
60
+ ):
61
+ p_client = RuntimeManager(view_server, url, username, user_pass)
62
+ token = p_client.create_egeria_bearer_token()
44
63
 
45
64
  def generate_table() -> Table:
46
65
  """Make a new table."""
@@ -51,27 +70,58 @@ def display_status(server: str, url: str, username: str, user_pass: str, jupyter
51
70
  header_style="white on dark_blue",
52
71
  title_style="bold white on black",
53
72
  caption_style="white on black",
54
- caption=f"Server Status for Platform - '{url}'",
73
+ caption=f"Server Status from Platform - '{url}'",
55
74
  # show_lines=True,
56
75
  )
57
76
 
58
77
  table.add_column("Known Server")
59
78
  table.add_column("Status")
60
-
61
- known_server_list = p_client.get_known_servers()
62
- active_server_list = p_client.get_active_server_list()
63
- if len(known_server_list) == 0:
64
- return table
65
-
66
- for server in known_server_list:
67
- if server in active_server_list:
68
- status = "Active"
69
- else:
70
- status = "Inactive"
71
-
72
- table.add_row(server,
73
- "[red]Inactive" if status == "Inactive" else "[green]Active",
74
- )
79
+ if extended:
80
+ table.add_column("Description")
81
+ table.add_column("Server Type")
82
+ table.add_column("Last Started")
83
+
84
+ platform_list = p_client.get_platforms_by_type()
85
+ if type(platform_list) is str:
86
+ print("No OMAG Server Platforms found?")
87
+ sys.exit(1)
88
+
89
+ for platform in platform_list:
90
+ platform_name = platform["properties"].get("displayName", "---")
91
+ platform_guid = platform["elementHeader"]["guid"]
92
+ platform_desc = platform["properties"].get("resourceDescription", "---")
93
+ p_server_list = ""
94
+
95
+ platform_report = p_client.get_platform_report(platform_guid)
96
+ servers = platform_report.get("omagservers", None)
97
+ for p_server in servers:
98
+ server_name = p_server.get("serverName", "--- ")
99
+ server_type = p_server.get("serverType", "--- ")
100
+ server_desc = p_server.get("description", "--- ")
101
+ last_start_time = p_server.get("lastStartTime", "--- ")
102
+
103
+ server_status = p_server.get("serverActiveStatus", "UNKNOWN")
104
+ if server_status in ("RUNNING", "STARTING"):
105
+ status = "Active"
106
+ elif server_status in ("INACTIVE", "STOPPING"):
107
+ status = "Inactive"
108
+ else:
109
+ status = "UNKNOWN"
110
+
111
+ if extended:
112
+ table.add_row(
113
+ server_name,
114
+ "[red]Inactive" if status == "Inactive" else "[green]Active",
115
+ server_desc,
116
+ server_type,
117
+ last_start_time,
118
+ )
119
+ else:
120
+ table.add_row(
121
+ server_name,
122
+ "[red]Inactive" "" if status == "Inactive" else "[green]Active",
123
+ # server_status,
124
+ )
75
125
  # p_client.close_session()
76
126
  return table
77
127
 
@@ -81,7 +131,11 @@ def display_status(server: str, url: str, username: str, user_pass: str, jupyter
81
131
  time.sleep(2)
82
132
  live.update(generate_table())
83
133
 
84
- except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
134
+ except (
135
+ InvalidParameterException,
136
+ PropertyServerException,
137
+ UserNotAuthorizedException,
138
+ ) as e:
85
139
  print_exception_response(e)
86
140
  except KeyboardInterrupt:
87
141
  pass
@@ -91,18 +145,20 @@ def display_status(server: str, url: str, username: str, user_pass: str, jupyter
91
145
 
92
146
  def main():
93
147
  parser = argparse.ArgumentParser()
148
+ parser.add_argument("--extended", help="Extended Information?")
94
149
  parser.add_argument("--server", help="Name of the server to display status for")
95
150
  parser.add_argument("--url", help="URL Platform to connect to")
96
151
  parser.add_argument("--userid", help="User Id")
97
152
  parser.add_argument("--password", help="User Password")
98
153
  args = parser.parse_args()
99
154
 
100
- server = args.server if args.server is not None else EGERIA_METADATA_STORE
155
+ extended = args.extended if args.extended is not None else True
156
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
101
157
  url = args.url if args.url is not None else EGERIA_PLATFORM_URL
102
158
  userid = args.userid if args.userid is not None else EGERIA_ADMIN_USER
103
159
  user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
104
160
 
105
- display_status(server, url, userid, user_pass)
161
+ display_status(extended, server, url, userid, user_pass)
106
162
 
107
163
 
108
164
  if __name__ == "__main__":
@@ -0,0 +1,109 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ SPDX-License-Identifier: Apache-2.0
4
+ Copyright Contributors to the ODPi Egeria project.
5
+
6
+ Unit tests for the Utils helper functions using the Pytest framework.
7
+
8
+
9
+ A simple server status display
10
+ """
11
+ import argparse
12
+ import os
13
+ import time
14
+
15
+ from rich.live import Live
16
+ from rich.table import Table
17
+
18
+ from pyegeria import (
19
+ InvalidParameterException,
20
+ PropertyServerException,
21
+ UserNotAuthorizedException,
22
+ print_exception_response,
23
+ ServerOps
24
+ )
25
+
26
+ EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
27
+ EGERIA_KAFKA_ENDPOINT = os.environ.get('KAFKA_ENDPOINT', 'localhost:9092')
28
+ EGERIA_PLATFORM_URL = os.environ.get('EGERIA_PLATFORM_URL', 'https://localhost:9443')
29
+ EGERIA_VIEW_SERVER = os.environ.get('VIEW_SERVER', 'view-server')
30
+ EGERIA_VIEW_SERVER_URL = os.environ.get('EGERIA_VIEW_SERVER_URL', 'https://localhost:9443')
31
+ EGERIA_INTEGRATION_DAEMON = os.environ.get('INTEGRATION_DAEMON', 'integration-daemon')
32
+ EGERIA_INTEGRATION_DAEMON_URL = os.environ.get('EGERIA_INTEGRATION_DAEMON_URL', 'https://localhost:9443')
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
+ EGERIA_JUPYTER = bool(os.environ.get('EGERIA_JUPYTER', 'False'))
38
+ EGERIA_WIDTH = int(os.environ.get('EGERIA_WIDTH', '200'))
39
+
40
+
41
+ def display_status(server: str, url: str, username: str, user_pass: str, jupyter: bool = EGERIA_JUPYTER,
42
+ width: int = EGERIA_WIDTH):
43
+ p_client = ServerOps(server, url, username, user_pass)
44
+
45
+ def generate_table() -> Table:
46
+ """Make a new table."""
47
+ table = Table(
48
+ title=f"Server Status for Platform - {time.asctime()}",
49
+ style="bold white on black",
50
+ row_styles=["bold white on black"],
51
+ header_style="white on dark_blue",
52
+ title_style="bold white on black",
53
+ caption_style="white on black",
54
+ caption=f"Server Status for Platform - '{url}'",
55
+ # show_lines=True,
56
+ )
57
+
58
+ table.add_column("Known Server")
59
+ table.add_column("Status")
60
+
61
+ known_server_list = p_client.get_known_servers()
62
+ active_server_list = p_client.get_active_server_list()
63
+ if len(known_server_list) == 0:
64
+ return table
65
+
66
+ for server in known_server_list:
67
+ if server in active_server_list:
68
+ status = "Active"
69
+ else:
70
+ status = "Inactive"
71
+
72
+ table.add_row(server,
73
+ "[red]Inactive" if status == "Inactive" else "[green]Active",
74
+ )
75
+ # p_client.close_session()
76
+ return table
77
+
78
+ try:
79
+ with Live(generate_table(), refresh_per_second=4, screen=True) as live:
80
+ while True:
81
+ time.sleep(2)
82
+ live.update(generate_table())
83
+
84
+ except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
85
+ print_exception_response(e)
86
+ except KeyboardInterrupt:
87
+ pass
88
+ finally:
89
+ p_client.close_session()
90
+
91
+
92
+ def main():
93
+ parser = argparse.ArgumentParser()
94
+ parser.add_argument("--server", help="Name of the server to display status for")
95
+ parser.add_argument("--url", help="URL Platform to connect to")
96
+ parser.add_argument("--userid", help="User Id")
97
+ parser.add_argument("--password", help="User Password")
98
+ args = parser.parse_args()
99
+
100
+ server = args.server if args.server is not None else EGERIA_METADATA_STORE
101
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
102
+ userid = args.userid if args.userid is not None else EGERIA_ADMIN_USER
103
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
104
+
105
+ display_status(server, url, userid, user_pass)
106
+
107
+
108
+ if __name__ == "__main__":
109
+ main()
@@ -1763,7 +1763,7 @@ class RuntimeManager(Client):
1763
1763
 
1764
1764
  response = await self._async_make_request("POST", url, body)
1765
1765
 
1766
- return response.json().get("elements", "No platforms found")
1766
+ return response.json().get("elements", "No servers found")
1767
1767
 
1768
1768
  def get_servers_by_dep_impl_type(
1769
1769
  self,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 0.8.4.25
3
+ Version: 0.8.4.26
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -19,8 +19,8 @@ commands/cli/__init__.py,sha256=6d_R0KZBNnJy9EBz9J2xvGFlx-3j_ZPqPCxKgdvYeDQ,291
19
19
  commands/cli/egeria.py,sha256=PrWt07cTZSNqyBrJifMnvCWH0vor4zcydsIznQJqPQM,28302
20
20
  commands/cli/egeria_cat.py,sha256=LWspOYRcdJIIx2n9wvhBhkNnACGDIpFTWfsoVTGeiV0,12957
21
21
  commands/cli/egeria_my.py,sha256=9zIpUDLeA_R-0rgCSQfEZTtVmkxPcEAsYcCTn1wQFrE,6181
22
- commands/cli/egeria_ops.py,sha256=0kIBvxnS4slJzKfxg6KrJ1-UJ4IYHQfN1OPKIQ3ArG8,11230
23
- commands/cli/egeria_tech.py,sha256=PfEIf8pLgbCiPlUikZss97R78XOue0P3aZG5PswUtQ4,11161
22
+ commands/cli/egeria_ops.py,sha256=rcHD8RN9BJL7H8RBXlP1QvV_pzJPm-k4YODnfLF-yqw,11020
23
+ commands/cli/egeria_tech.py,sha256=AbRx_wDP4935zAECOgCY0rL8v8AySWxNvkG9Z_mm-SY,11161
24
24
  commands/cli/ops_config.py,sha256=m4AfPjf-fR4EBTx8Dc2mcgrfWwAxb30YGeV-v79bg4U,1450
25
25
  commands/my/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
26
26
  commands/my/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -33,7 +33,7 @@ commands/my/todo_actions.py,sha256=uihltirrAPtwYNygnNBAVWgfS0W7acoETz1_h3XW_4o,8
33
33
  commands/ops/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
34
34
  commands/ops/__init__.py,sha256=SCfzF3-aMx8EpqLWmH7JQf13gTmMAtHRbg69oseLvi8,480
35
35
  commands/ops/engine_actions.py,sha256=00s_wkzs0zlZ6PyZ0J5J9lHhw4Viyzbeox7b1K1lmyc,4609
36
- commands/ops/gov_server_actions.py,sha256=tRcAW_TExuRm__gSBcx4SMqVC8LplTutvwNzIGJ_xGU,5714
36
+ commands/ops/gov_server_actions.py,sha256=xF0QWSP7JtxpcA-L8DfbVjtgHgqBocgBN5qIE5Rmm9A,5631
37
37
  commands/ops/list_catalog_targets.py,sha256=0FIZqZu7DSh7tnrme6EOhNiVvK8wyvN1iTZKEDuwTmw,6620
38
38
  commands/ops/load_archive.py,sha256=duf3wq2ANRBiOj9KTFsw8TseEkJLKdzITAeTCjsMvI0,2453
39
39
  commands/ops/monitor_asset_events.py,sha256=cjdlVqE0XYnoRW3aorNbsVkjByDXefPBnllaZLelGls,3838
@@ -42,9 +42,10 @@ commands/ops/monitor_engine_activity.py,sha256=m18OSnRoo5ut0WKKOWNoFGXJW_npjp6hz
42
42
  commands/ops/monitor_engine_activity_c.py,sha256=rSEUD3elhsiYdUhQRn613OM_R4VecFb0uq39MhYhltQ,9371
43
43
  commands/ops/monitor_gov_eng_status.py,sha256=_eIN_3J8PZjgZH4D1Pc0Z_kUOd0pVd6dGP7jUgXG5wg,6640
44
44
  commands/ops/monitor_integ_daemon_status.py,sha256=u15-tvGveO7_yV7JJmYkxiEDnq5KBk8J4hkw0id_LFA,9224
45
- commands/ops/monitor_platform_status.py,sha256=hn96QuOjCndSDWl1-DAzk9O8D68YoRP1ALOlVfWVQgo,6400
45
+ commands/ops/monitor_platform_status.py,sha256=xmngiuQK9X6X4-stGSITzfMSAdqpswVk-DY7kh8M0P0,6401
46
46
  commands/ops/monitor_server_list.py,sha256=Uhtn8lv7QVXJBi9DSR3Nelmz8TB0vOsat10nFS6Nu20,4637
47
- commands/ops/monitor_server_status.py,sha256=A-8hMDfbscdcq-b1OD4wKn0tphumX8WIK-Hz8uPoFkc,3974
47
+ commands/ops/monitor_server_status.py,sha256=KWkFXivHfHa1rggRoaIBSSgECQAwJ4vDgjjVMvp56RY,6145
48
+ commands/ops/orig_monitor_server_status.py,sha256=A-8hMDfbscdcq-b1OD4wKn0tphumX8WIK-Hz8uPoFkc,3974
48
49
  commands/ops/refresh_integration_daemon.py,sha256=9dZX-AHJ7yILohj005TRIC9tC349RRwwxRmqVLD2ZTE,2991
49
50
  commands/ops/restart_integration_daemon.py,sha256=PN48zVDywjNJznmpVWEcBXBD3xhWDw1dMyKLIs9nWzU,2992
50
51
  commands/tech/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
@@ -87,13 +88,13 @@ pyegeria/my_profile_omvs.py,sha256=eDnDK8LQIg7yrmiG8x20xMw-Yu6xuL0yXRm0vSc4T8k,4
87
88
  pyegeria/platform_services.py,sha256=hlbbG1iGuMj7JhLkz60V9xaG4m0pheYvs0bhbjF64rE,41624
88
89
  pyegeria/project_manager_omvs.py,sha256=OCdJKECI0sTZWgXcQ5TcupK5JPxHJG78-kHXyflDu1k,74521
89
90
  pyegeria/registered_info.py,sha256=3PbmqKusFX5m9KYVwbT69PIN1oSL4PhZDbbU_an7dvE,6356
90
- pyegeria/runtime_manager_omvs.py,sha256=zGrm7XAwRsRYNgG1a7huM1jVroGGuhAeF2qi_K1YOU4,61922
91
+ pyegeria/runtime_manager_omvs.py,sha256=nqcATjrFGCxtYDe10u3PnJ7aVSdTwlxTk_DFzMKlWMw,61920
91
92
  pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0,16766
92
93
  pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
93
94
  pyegeria/valid_metadata_omvs.py,sha256=6Hc4g9BOS8w1ILfTG3_A1tfIX3HLtpgZZvcC-z9GePU,36185
94
95
  pyegeria/x_action_author_omvs.py,sha256=za472slZ5tN9Pkd-ukyHS5Sn6MlKkJyIlbLlU3bL_Go,6451
95
- pyegeria-0.8.4.25.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
96
- pyegeria-0.8.4.25.dist-info/METADATA,sha256=oLkdOsN67ebuQ2T-2BiUQdub6hNNlNJlZId8YT94K2E,2820
97
- pyegeria-0.8.4.25.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
98
- pyegeria-0.8.4.25.dist-info/entry_points.txt,sha256=CkFcA_eJ_pXLSlpZ7AAPDiNVHyFuW0tDHc_y9LTlLx8,3344
99
- pyegeria-0.8.4.25.dist-info/RECORD,,
96
+ pyegeria-0.8.4.26.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
97
+ pyegeria-0.8.4.26.dist-info/METADATA,sha256=jkJSoG6WdgsKbfEK0yv_TkfwTdXNp3Q5YbYXfqlCaSI,2820
98
+ pyegeria-0.8.4.26.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
99
+ pyegeria-0.8.4.26.dist-info/entry_points.txt,sha256=CkFcA_eJ_pXLSlpZ7AAPDiNVHyFuW0tDHc_y9LTlLx8,3344
100
+ pyegeria-0.8.4.26.dist-info/RECORD,,