pyegeria 1.5.1.0.23__py3-none-any.whl → 1.5.1.0.120__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.
@@ -7,7 +7,6 @@ Copyright Contributors to the ODPi Egeria project.
7
7
  Execute Glossary actions.
8
8
 
9
9
  """
10
- import csv
11
10
  import os
12
11
  import sys
13
12
  import time
@@ -112,7 +111,7 @@ def delete_glossary(server, url, userid, password, timeout, glossary_guid):
112
111
  try:
113
112
  m_client.delete_to_do(glossary_guid)
114
113
 
115
- click.echo(f"Deleted glossary: {glossary_guid}")
114
+ click.echo(f"Deleted Todo item {glossary_guid}")
116
115
 
117
116
  except (InvalidParameterException, PropertyServerException) as e:
118
117
  print_exception_response(e)
@@ -157,6 +156,7 @@ def create_term(
157
156
  url,
158
157
  userid,
159
158
  password,
159
+ timeout,
160
160
  glossary_name,
161
161
  term_name,
162
162
  summary,
@@ -166,8 +166,7 @@ def create_term(
166
166
  usage,
167
167
  version,
168
168
  status,
169
- timeout: int = 120,
170
- ) -> str:
169
+ ):
171
170
  """Create a new term"""
172
171
  m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
173
172
  token = m_client.create_egeria_bearer_token()
@@ -176,7 +175,7 @@ def create_term(
176
175
  "class": "ReferenceableRequestBody",
177
176
  "elementProperties": {
178
177
  "class": "GlossaryTermProperties",
179
- "qualifiedName": f"GlossaryTerm: {term_name} - {datetime.now().isoformat()}",
178
+ "qualifiedName": f"GlossaryTerm: {term_name} : {datetime.now().isoformat()}",
180
179
  "displayName": term_name,
181
180
  "summary": summary,
182
181
  "description": description,
@@ -206,36 +205,6 @@ def create_term(
206
205
  click.echo(
207
206
  f"Successfully created term {term_name} with GUID {term_guid}, in glossary {glossary_name}.\n"
208
207
  )
209
- return term_guid
210
- except (InvalidParameterException, PropertyServerException) as e:
211
- print_exception_response(e)
212
- finally:
213
- m_client.close_session()
214
-
215
-
216
- @click.command("load-terms-from-file")
217
- @click.option("--glossary-name", help="Name of Glossary", required=True)
218
- @click.option("--file-name", help="Path of CSV file", required=True)
219
- @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use")
220
- @click.option(
221
- "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
222
- )
223
- @click.option("--userid", default=EGERIA_USER, help="Egeria user")
224
- @click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
225
- @click.option("--timeout", default=60, help="Number of seconds to wait")
226
- @click.argument("glossary-guid")
227
- def load_terms(
228
- glossary_name, file_name, server, url, userid, password, timeout, glossary_guid
229
- ):
230
- """Delete the glossary specified"""
231
- m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
232
- token = m_client.create_egeria_bearer_token()
233
- try:
234
- result = m_client.load_terms_from_file(glossary_name, file_name)
235
-
236
- click.echo(
237
- f"Loaded terms from into glossary: {glossary_name} from {file_name}"
238
- )
239
208
 
240
209
  except (InvalidParameterException, PropertyServerException) as e:
241
210
  print_exception_response(e)
commands/cli/egeria.py CHANGED
@@ -37,12 +37,7 @@ from commands.cat.list_deployed_database_schemas import (
37
37
  )
38
38
  from commands.cat.list_deployed_catalogs import list_deployed_catalogs
39
39
  from commands.cat.list_deployed_databases import list_deployed_databases
40
- from commands.cat.glossary_actions import (
41
- create_glossary,
42
- delete_glossary,
43
- create_term,
44
- load_terms,
45
- )
40
+ from commands.cat.glossary_actions import create_glossary, delete_glossary, create_term
46
41
  from commands.my.todo_actions import (
47
42
  mark_todo_complete,
48
43
  reassign_todo,
@@ -989,7 +984,6 @@ tell.add_command(mark_todo_complete)
989
984
  tell.add_command(reassign_todo)
990
985
  tell.add_command(delete_todo)
991
986
  tell.add_command(create_todo)
992
- tell.add_command(load_terms)
993
987
 
994
988
 
995
989
  @tell.group("survey")
@@ -18,12 +18,7 @@ from commands.cat.get_project_dependencies import project_dependency_viewer
18
18
  from commands.cat.get_project_structure import project_structure_viewer
19
19
  from commands.cat.get_tech_type_elements import tech_viewer
20
20
  from commands.cat.get_tech_type_template import template_viewer
21
- from commands.cat.glossary_actions import (
22
- create_glossary,
23
- delete_glossary,
24
- create_term,
25
- load_terms,
26
- )
21
+ from commands.cat.glossary_actions import create_glossary, delete_glossary, create_term
27
22
  from commands.cat.list_archives import display_archive_list
28
23
  from commands.cat.list_assets import display_assets
29
24
  from commands.cat.list_cert_types import display_certifications
@@ -571,7 +566,6 @@ tell.add_command(mark_todo_complete)
571
566
  tell.add_command(reassign_todo)
572
567
  tell.add_command(delete_todo)
573
568
  tell.add_command(create_todo)
574
- tell.add_command(load_terms)
575
569
 
576
570
 
577
571
  @tell.group("survey")
@@ -1,6 +1,4 @@
1
1
  """This creates a templates guid file from the core metadata archive"""
2
- import json
3
-
4
2
  from rich.markdown import Markdown
5
3
  from rich.prompt import Prompt
6
4
  import os
@@ -18,66 +16,30 @@ from pyegeria import (
18
16
  PropertyServerException,
19
17
  UserNotAuthorizedException,
20
18
  print_exception_response,
21
- RegisteredInfo,
19
+ RegisteredInfo
22
20
  )
23
21
 
24
22
 
25
23
  console = Console()
26
24
  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(
31
- "EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
32
- )
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")
38
- EGERIA_JUPYTER = bool(os.environ.get("EGERIA_JUPYTER", "False"))
39
- EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "200"))
40
-
41
-
42
- def list_templates(
43
- search_string: str, server: str, url: str, username: str, password: str
44
- ) -> []:
45
- """Return a list of templates for one or more technology type"""
46
- a_client = AutomatedCuration(server, url, username)
47
- token = a_client.create_egeria_bearer_token(username, password)
48
- tech_list = a_client.find_technology_types(search_string, page_size=0)
49
- tech_info_list: dict = []
50
-
51
- if type(tech_list) is list:
52
- for item in tech_list:
53
- if "deployedImplementationType" not in item["qualifiedName"]:
54
- continue
55
-
56
- details = a_client.get_technology_type_detail(item["name"])
57
- entry = {details["name"]: {}}
58
- if type(details) is str:
59
- tech_info_list.append(entry)
60
- continue
61
- templates = details.get("catalogTemplates", "Not Found")
62
- if type(templates) is list:
63
- t_list = []
64
- entry = {details["name"]: {}}
65
- for template in templates:
66
- t_list.append({"template": template["name"]})
67
- entry[details["name"]] = t_list
68
- tech_info_list.append(entry)
69
- return tech_info_list
70
-
71
-
72
- def display_templates_spec(
73
- search_string: str,
74
- server: str,
75
- url: str,
76
- username: str,
77
- password: str,
78
- jupyter: bool = EGERIA_JUPYTER,
79
- width: int = EGERIA_WIDTH,
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
+ EGERIA_JUPYTER = bool(os.environ.get('EGERIA_JUPYTER', 'False'))
35
+ EGERIA_WIDTH = int(os.environ.get('EGERIA_WIDTH', '200'))
36
+
37
+
38
+
39
+ def display_templates_spec(search_string:str, server: str,
40
+ url: str, username: str, password: str, jupyter:bool=EGERIA_JUPYTER, width:int = EGERIA_WIDTH
80
41
  ):
42
+
81
43
  a_client = AutomatedCuration(server, url, username)
82
44
  token = a_client.create_egeria_bearer_token(username, password)
83
45
  tech_list = a_client.find_technology_types(search_string, page_size=0)
@@ -100,19 +62,21 @@ def display_templates_spec(
100
62
 
101
63
  table.add_column("Name", width=20)
102
64
  table.add_column("Template Name", width=20)
103
- table.add_column("Template GUID", width=38, no_wrap=True)
65
+ table.add_column("Template GUID", width = 38,no_wrap=True)
104
66
  table.add_column("Placeholders")
105
67
 
68
+
106
69
  if type(tech_list) is list:
107
70
  for item in tech_list:
108
- if "deployedImplementationType" not in item["qualifiedName"]:
71
+ if 'deployedImplementationType' not in item['qualifiedName']:
109
72
  continue
110
73
  placeholder_table = Table(expand=False, show_lines=True)
111
- placeholder_table.add_column("Name", width=20, no_wrap=True)
112
- placeholder_table.add_column("Type", width=10)
113
- placeholder_table.add_column("Required", width=10)
114
- placeholder_table.add_column("Example", width=20)
115
- placeholder_table.add_column("Description", width=40)
74
+ placeholder_table.add_column("Name", width = 20,no_wrap=True)
75
+ placeholder_table.add_column("Type", width = 10)
76
+ placeholder_table.add_column("Required", width = 10)
77
+ placeholder_table.add_column("Example", width = 20)
78
+ placeholder_table.add_column("Description", width = 40)
79
+
116
80
 
117
81
  name = item.get("name", "none")
118
82
 
@@ -126,11 +90,7 @@ def display_templates_spec(
126
90
  for template in templates:
127
91
  template_name = template.get("name", None)
128
92
 
129
- template_name = (
130
- f"{name}_Template"
131
- if template_name is None
132
- else template_name
133
- )
93
+ template_name = f"{name}_Template" if template_name is None else template_name
134
94
 
135
95
  specification = template["specification"]["placeholderProperty"]
136
96
  template_guid = template["relatedElement"]["guid"]
@@ -141,17 +101,10 @@ def display_templates_spec(
141
101
  placeholder_name = placeholder["placeholderPropertyName"]
142
102
  placeholder_required = placeholder["required"]
143
103
  placeholder_example = placeholder.get("example", None)
144
- placeholder_table.add_row(
145
- placeholder_name,
146
- placeholder_data_type,
147
- placeholder_required,
148
- placeholder_example,
149
- placeholder_description,
150
- )
151
-
152
- table.add_row(
153
- name, template_name, template_guid, placeholder_table
154
- )
104
+ placeholder_table.add_row(placeholder_name, placeholder_data_type, placeholder_required,
105
+ placeholder_example, placeholder_description,)
106
+
107
+ table.add_row(name, template_name, template_guid, placeholder_table)
155
108
 
156
109
  return table
157
110
  else:
@@ -164,11 +117,7 @@ def display_templates_spec(
164
117
  with console.pager(styles=True):
165
118
  console.print(generate_table())
166
119
 
167
- except (
168
- InvalidParameterException,
169
- PropertyServerException,
170
- UserNotAuthorizedException,
171
- ) as e:
120
+ except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
172
121
  print_exception_response(e)
173
122
  assert e.related_http_code != "200", "Invalid parameters"
174
123
  finally:
@@ -191,14 +140,14 @@ def main():
191
140
  guid = None
192
141
 
193
142
  try:
194
- search_string = Prompt.ask(
195
- "Enter the technology you are searching for:", default="*"
196
- )
197
- # display_templates_spec(search_string, server, url, userid, password)
198
- list_templates(search_string, server, url, userid, password)
199
- except KeyboardInterrupt:
143
+ search_string = Prompt.ask("Enter the technology you are searching for:", default="*")
144
+ display_templates_spec(search_string, server, url, userid, password)
145
+ except(KeyboardInterrupt):
200
146
  pass
201
147
 
202
148
 
203
149
  if __name__ == "__main__":
204
150
  main()
151
+
152
+
153
+
@@ -8,11 +8,8 @@ added in subsequent versions of the glossary_omvs module.
8
8
  """
9
9
  import asyncio
10
10
  import time
11
- import csv
12
11
  from datetime import datetime
13
12
 
14
- from pyegeria import InvalidParameterException
15
-
16
13
  # import json
17
14
  from pyegeria._client import Client
18
15
  from pyegeria._validators import (
@@ -1410,92 +1407,28 @@ class GlossaryManager(GlossaryBrowser):
1410
1407
 
1411
1408
  def load_terms_from_file(
1412
1409
  self, glossary_name: str, filename: str, upsert: bool = False
1413
- ) -> [dict]:
1410
+ ) -> str:
1414
1411
  """This method loads glossary terms into the specified glossary from the indicated file."""
1415
1412
  # Check that glossary exists and get guid
1416
1413
  glossaries = self.get_glossaries_by_name(glossary_name)
1417
1414
  if type(glossaries) is not list:
1418
1415
  return "Unknown glossary"
1419
1416
  if len(glossaries) > 1:
1420
- glossary_error = (
1421
- "Multiple glossaries found - please use a qualified name from below\n"
1422
- )
1423
1417
  for g in glossaries:
1418
+ glossary_error = (
1419
+ "Multiple glossaries found - please use the qualified name\n"
1420
+ )
1424
1421
  glossary_error += (
1425
1422
  f"Display Name: {g['glossaryProperties']['displayName']}\tQualified Name:"
1426
1423
  f" {g['glossaryProperties']['qualifiedName']}\n"
1427
1424
  )
1428
- raise InvalidParameterException(glossary_error)
1429
- sys.exit(1)
1430
-
1431
- # Now we know we have a single glossary so we can get the guid
1425
+ return glossary_error
1432
1426
  glossary_guid = glossaries[0]["elementHeader"]["guid"]
1433
- term_info = []
1434
-
1435
- term_properties = {
1436
- "Term Name",
1437
- "Qualified Name",
1438
- "Abbreviation",
1439
- "Summary",
1440
- "Description",
1441
- "Examples",
1442
- "Usage",
1443
- "Version Identifier",
1444
- "Status",
1445
- }
1446
- # process file
1447
- with open(filename, mode="r") as file:
1448
- # Create a CSV reader object
1449
- csv_reader = csv.DictReader(file)
1450
- headers = csv_reader.fieldnames
1451
- # check that the column headers are known
1452
- if all(header in term_properties for header in headers) is False:
1453
- raise InvalidParameterException("Invalid headers in CSV File")
1454
- sys.exit(1)
1455
-
1456
- # process each row
1457
- for row in csv_reader:
1458
- term_name = row.get("Term Name", None)
1459
- qualified_name = row.get("Qualified Name", None)
1460
- abbrev = row.get("Abbreviation", None)
1461
- summary = row.get("Summary", None)
1462
- description = row.get("Description", None)
1463
- examples = row.get("Examples", None)
1464
- usage = row.get("Usage", None)
1465
- version = row.get("Version Identifier", "1.0")
1466
- status = row.get("Status", "DRAFT").upper()
1467
-
1468
- # process the row
1469
- if term_name is None:
1470
- continue
1471
- body = {
1472
- "class": "ReferenceableRequestBody",
1473
- "elementProperties": {
1474
- "class": "GlossaryTermProperties",
1475
- "qualifiedName": f"GlossaryTerm: {term_name} - {datetime.now().isoformat()}",
1476
- "displayName": term_name,
1477
- "summary": summary,
1478
- "description": description,
1479
- "abbreviation": abbrev,
1480
- "examples": examples,
1481
- "usage": usage,
1482
- "publishVersionIdentifier": version,
1483
- },
1484
- "initialStatus": status,
1485
- }
1486
1427
 
1487
- # Add the term
1488
- term_guid = self.create_controlled_glossary_term(
1489
- glossary_guid, body_slimmer(body)
1490
- )
1491
- term_info.append(
1492
- {
1493
- "term_name": term_name,
1494
- "qualified_name": qualified_name,
1495
- "term_guid": term_guid,
1496
- }
1497
- )
1498
- return term_info
1428
+ # Open file
1429
+
1430
+ # Insert terms into glossary
1431
+ pass
1499
1432
 
1500
1433
  async def _async_create_term_copy(
1501
1434
  self,
@@ -59,7 +59,7 @@ class RuntimeManager(Client):
59
59
  )
60
60
 
61
61
  async def __async__get_guid__(
62
- self, guid: str = None, name: str = None, property_name: str = "qualifiedName"
62
+ self, guid: str = None, name: str = None, property_name: str = "name"
63
63
  ) -> str:
64
64
  """Helper function to return a server_guid - one of server_guid or server_name should
65
65
  contain information. If both are None, an exception will be thrown. If both contain
@@ -92,7 +92,7 @@ class RuntimeManager(Client):
92
92
  )
93
93
 
94
94
  def __get_guid__(
95
- self, guid: str = None, name: str = None, property_name: str = "qualifiedName"
95
+ self, guid: str = None, name: str = None, property_name: str = "name"
96
96
  ) -> str:
97
97
  """Helper function to return a server_guid - one of server_guid or server_name should
98
98
  contain information. If both are None, an exception will be thrown. If both contain
@@ -1128,7 +1128,6 @@ class RuntimeManager(Client):
1128
1128
  UserNotAuthorizedException
1129
1129
 
1130
1130
  """
1131
- server_name = f"Metadata Access Server:{server_name}"
1132
1131
  server_guid = self.__get_guid__(server_guid, server_name)
1133
1132
  url = f"{self.runtime_command_root}/metadata-access-stores/{server_guid}/instance/load/open-metadata-archives/file"
1134
1133
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 1.5.1.0.23
3
+ Version: 1.5.1.0.120
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -6,7 +6,7 @@ commands/cat/get_project_dependencies.py,sha256=B0JaMSUi0hzVgos1sTY2uUPGy1DzKEJM
6
6
  commands/cat/get_project_structure.py,sha256=n2GbNd07w1DTo7jTR8b2ewXRyNcat_2BcCBRyDMldwk,5969
7
7
  commands/cat/get_tech_type_elements.py,sha256=-m3Q0BoNqkCtV8h75vMwTcOV-_ymEXmnJcr4Ec7WMAw,6180
8
8
  commands/cat/get_tech_type_template.py,sha256=gMFVcgCIm09GQu1Vsc5ZUVH9XLhItAG1eVGZJrcnHeQ,6174
9
- commands/cat/glossary_actions.py,sha256=NL9Cd7dCjbcfz4OxYIT10yprfJWmRX8JwaA5_66GQBE,8585
9
+ commands/cat/glossary_actions.py,sha256=F5-NNiLvfHLbQKZ_RxS6XJ9HOAuXc75GMIAC5Xo0lJQ,7280
10
10
  commands/cat/list_archives.py,sha256=FEZ2XYnQIWo2PztWqnj6unn0pbblPU0-bMbTyI3csv4,5464
11
11
  commands/cat/list_assets.py,sha256=bNwSaBDz661hfnc2Rn4j4HPHAugKvz0XwN9L1m4FVQk,6529
12
12
  commands/cat/list_cert_types.py,sha256=mbCls_EqC5JKG5rvS4o69k7KgZ6aNXlcqoJ3DtHsTFA,7127
@@ -20,8 +20,8 @@ commands/cat/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFo
20
20
  commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
21
21
  commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
22
22
  commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
23
- commands/cli/egeria.py,sha256=HeGF9WbUXZQjUFsjuHZDBFki8nt4QxRqDUpa-0uf3Jg,31327
24
- commands/cli/egeria_cat.py,sha256=r0eseanfHszfi0K26weWiQn0XstzwN7CoaNv9-zbqGg,14862
23
+ commands/cli/egeria.py,sha256=5ktUIbf5PIuHUQbcx_-HpI3Xolx38euvLT25AQhBWvE,31265
24
+ commands/cli/egeria_cat.py,sha256=NwPCRTIjwQtna5vvjInT6L0krwp2c6k-Fm-oxN6qrnw,14800
25
25
  commands/cli/egeria_my.py,sha256=9zIpUDLeA_R-0rgCSQfEZTtVmkxPcEAsYcCTn1wQFrE,6181
26
26
  commands/cli/egeria_ops.py,sha256=fxDXYWXRhexx06PdSLCp2FhgUtS13NdDpyg7ea775fc,11531
27
27
  commands/cli/egeria_tech.py,sha256=eTDHTHDVEYmr6gUPGfido_Uf7Fec0Nuyxlkhg4KAMAw,13160
@@ -67,7 +67,7 @@ commands/tech/list_registered_services.py,sha256=QzE_ebdopNkHWMxa-xc902GG6ac4Yw-
67
67
  commands/tech/list_related_elements.py,sha256=mcOy3RIGpIdshcT1o4Tr7Ck-c1dmAC8yBUOF5GAFYrM,7755
68
68
  commands/tech/list_related_specification.py,sha256=mWrKenXOskL4cl0DHjH2Z8M9-FJzjkzK62W-tsx3WDU,5918
69
69
  commands/tech/list_relationship_types.py,sha256=BlVzrPznZXqMVLN2-2vYEVRGeYsiJrqXxIJEikobyoo,5875
70
- commands/tech/list_tech_templates.py,sha256=doQtfSrbnluCzyCsq2PCDGKk5atDPXPDuu24YjCRxo0,7832
70
+ commands/tech/list_tech_templates.py,sha256=RiyA8a4fIL9BGeGf37Bkk471mK5ECkDJMN9QVNReC1M,6192
71
71
  commands/tech/list_valid_metadata_values.py,sha256=N3D0_BmREPszgde3uvvYdfzq7DJ46uMOv2t1vtncGsw,6333
72
72
  commands/tech/table_tech_templates.py,sha256=xa_mA10P_6Su3zRsvyoZhWoSUQ5LuyLTG1kNCumzxZA,7268
73
73
  commands/tech/x_list_related_elements.py,sha256=qBsf1619cecaMCTzG0MG22fAT32WNH2Z3CXrjo9z-5Y,5853
@@ -92,20 +92,20 @@ pyegeria/egeria_tech_client.py,sha256=7NfqpJFft5GR4NPRDVDw22L9caHbXB8fhx0TAf6qEo
92
92
  pyegeria/feedback_manager_omvs.py,sha256=B66e3ZCaC_dirb0mcb2Nz3PYh2ZKsoMAYNOb3euNiro,152931
93
93
  pyegeria/full_omag_server_config.py,sha256=LBnqUiz1ofBdlKBzECFs_pQbdJwcWigAukWHGJRR2nU,47340
94
94
  pyegeria/glossary_browser_omvs.py,sha256=NcitYaZJqwVODBO5zBtWpXPNUJJ3DKzEbRaOFSAyUlg,93554
95
- pyegeria/glossary_manager_omvs.py,sha256=Ui3LXiI5kyYXpJ35sn2pI4gB5XoAOXEKr6fWsZlCZrI,115642
95
+ pyegeria/glossary_manager_omvs.py,sha256=QnnKPG1XkpZXK0GY7lK4p7i8nZICbWmqNep8_8jg3p4,112966
96
96
  pyegeria/mermaid_utilities.py,sha256=GXiS-subb5nJcDqlThZWX2T8WspU1neFfhf4TxRoMh4,8344
97
97
  pyegeria/my_profile_omvs.py,sha256=DyECbUFEcgokrIbzdMMNljC3bqfqKGXAF2wZEpzvRYs,34666
98
98
  pyegeria/platform_services.py,sha256=CJIOYIFEbcIGwdWlApAQcXxZTsdrhFtpJcm4O3p7dG0,41646
99
99
  pyegeria/project_manager_omvs.py,sha256=Y7Lyqh4jIujJrr_Ub7feo904FN_uz4R10T4hKhqE1Uw,67499
100
100
  pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
101
- pyegeria/runtime_manager_omvs.py,sha256=I9XjLeeUkIFcek0V2UaSpBGu5H2ORHfDF_t8QgUAurE,74436
101
+ pyegeria/runtime_manager_omvs.py,sha256=qkMjb4Dp88-tqG47ldGR8oKGuNSIMrYiN43BCqAO4lE,74356
102
102
  pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0,16766
103
103
  pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZimJtE,42450
104
104
  pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
105
105
  pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
106
106
  pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
107
- pyegeria-1.5.1.0.23.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
108
- pyegeria-1.5.1.0.23.dist-info/METADATA,sha256=XbpsIVNXd215mnvWA6JO43sYGsZIQGBHIm2EpvqAzsU,2998
109
- pyegeria-1.5.1.0.23.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
110
- pyegeria-1.5.1.0.23.dist-info/entry_points.txt,sha256=eQF0CAWVQlHftl85JzL0pWSaQ1eURJ6MeI1I78FvAgQ,4127
111
- pyegeria-1.5.1.0.23.dist-info/RECORD,,
107
+ pyegeria-1.5.1.0.120.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
108
+ pyegeria-1.5.1.0.120.dist-info/METADATA,sha256=mqbcaIc4PuDKIJRHFae0AClAzm7ErFmrFkWa9S2vjuk,2999
109
+ pyegeria-1.5.1.0.120.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
110
+ pyegeria-1.5.1.0.120.dist-info/entry_points.txt,sha256=Pc5kHnxv-vbRpwVMxSSWl66vmf7EZjgzf7nZzz1ow3M,4002
111
+ pyegeria-1.5.1.0.120.dist-info/RECORD,,
@@ -25,13 +25,13 @@ list_assets=commands.cat.list_assets:main
25
25
  list_catalog_targets=commands.ops.list_catalog_targets:main
26
26
  list_cert_types=commands.cat.list_cert_types:main
27
27
  list_deployed_catalogs=commands.cat.list_deployed_catalogs:main
28
- list_deployed_databases=commands.cat.list_deployed_databases:main
29
28
  list_deployed_schemas=commands.cat.list_deployed_database_schemas:main
30
29
  list_element_graph=commands.tech.get_element_graph:main
31
30
  list_elements=commands.tech.list_elements:main
32
31
  list_elements_for_classification=commands.tech.list_elements_for_classification:main
33
32
  list_engine_activity=commands.ops.monitor_engine_activity:main_paging
34
33
  list_engine_activity_compressed=commands.ops.monitor_engine_activity_c:main_paging
34
+ list_glossary=commands.cat.list_glossary:main
35
35
  list_gov_action_processes=commands.tech.list_gov_action_processes:main
36
36
  list_gov_eng_status=commands.ops.monitor_gov_eng_status:main_paging
37
37
  list_integ_daemon_status=commands.ops.monitor_integ_daemon_status:main_paging
@@ -44,13 +44,11 @@ list_relationship_types=commands.tech.list_relationship_types:main
44
44
  list_relationships=commands.cat.list_relationships:main
45
45
  list_tech_templates=commands.tech.list_tech_templates:main
46
46
  list_tech_types=commands.cat.list_tech_types:main
47
- list_terms=commands.cat.list_glossary:main
48
47
  list_todos=commands.cat.list_todos:main
49
48
  list_user_ids=commands.cat.list_user_ids:main
50
49
  list_valid_metadata_values=commands.tech.list_valid_metadata_values:main
51
50
  load_archive=commands.ops.load_archive:load_archive
52
51
  load_archive_tui=commands.ops.load_archive:tui
53
- load_terms_from_file=commands.cat.glossary_actions:load_terms
54
52
  mark_todo_complete=commands.my.todo_actions:mark_todo_complete
55
53
  monitor_asset_events=commands.ops.monitor_asset_events:main
56
54
  monitor_coco_status=commands.ops.monitor_coco_status:main