pyegeria 1.5.1.0.4__py3-none-any.whl → 1.5.1.0.7__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.
@@ -0,0 +1,212 @@
1
+ """
2
+ SPDX-License-Identifier: Apache-2.0
3
+ Copyright Contributors to the ODPi Egeria project.
4
+
5
+
6
+
7
+ Execute Glossary actions.
8
+
9
+ """
10
+ import os
11
+ import sys
12
+ import time
13
+ from datetime import datetime
14
+
15
+ import click
16
+
17
+ # from ops_config import Config, pass_config
18
+ from pyegeria import EgeriaTech, body_slimmer
19
+ from pyegeria._exceptions import (
20
+ InvalidParameterException,
21
+ PropertyServerException,
22
+ print_exception_response,
23
+ )
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(
31
+ "EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
32
+ )
33
+ EGERIA_INTEGRATION_DAEMON = os.environ.get("INTEGRATION_DAEMON", "integration-daemon")
34
+ EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
35
+ "EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
36
+ )
37
+ EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
38
+ EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
39
+ EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
40
+ EGERIA_USER_PASSWORD = os.environ.get("EGERIA_USER_PASSWORD", "secret")
41
+
42
+
43
+ @click.command("create-glossary")
44
+ @click.option("--name", help="Name of Glossary", required=True)
45
+ @click.option("--language", help="Language of Glossary", default="English")
46
+ @click.option(
47
+ "--description",
48
+ help="Description of Glossary",
49
+ default="A description goes here",
50
+ )
51
+ @click.option(
52
+ "--usage",
53
+ help="Purpose of glossary",
54
+ default="Definitions",
55
+ )
56
+ @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use.")
57
+ @click.option(
58
+ "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
59
+ )
60
+ @click.option("--userid", default=EGERIA_USER, help="Egeria user")
61
+ @click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
62
+ @click.option("--timeout", default=60, help="Number of seconds to wait")
63
+ def create_glossary(
64
+ server: str,
65
+ url: str,
66
+ userid: str,
67
+ password: str,
68
+ timeout: int,
69
+ name: str,
70
+ language: str,
71
+ description: str,
72
+ usage: str,
73
+ ) -> None:
74
+ """Create a new Glossary"""
75
+
76
+ try:
77
+ m_client = EgeriaTech(server, url, userid, password)
78
+ token = m_client.create_egeria_bearer_token()
79
+
80
+ existing_glossary = m_client.find_glossaries(name)
81
+ if type(existing_glossary) is list:
82
+ click.echo(f"\nFound {len(existing_glossary)} existing Glossaries\n")
83
+ for glossary in existing_glossary:
84
+ click.echo(
85
+ f"\tFound glossary: {glossary['glossaryProperties']['qualifiedName']} with id of {glossary['elementHeader']['guid']}\n"
86
+ )
87
+ sys.exit(0)
88
+
89
+ glossary_guid = m_client.create_glossary(name, language, description, usage)
90
+ print(f"New glossary {name} created with id of {glossary_guid}")
91
+
92
+ except (InvalidParameterException, PropertyServerException) as e:
93
+ print_exception_response(e)
94
+ finally:
95
+ m_client.close_session()
96
+
97
+
98
+ @click.command("delete-glossary")
99
+ @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use")
100
+ @click.option(
101
+ "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
102
+ )
103
+ @click.option("--userid", default=EGERIA_USER, help="Egeria user")
104
+ @click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
105
+ @click.option("--timeout", default=60, help="Number of seconds to wait")
106
+ @click.argument("glossary-guid")
107
+ def delete_glossary(server, url, userid, password, timeout, glossary_guid):
108
+ """Delete the glossary specified"""
109
+ m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
110
+ token = m_client.create_egeria_bearer_token()
111
+ try:
112
+ m_client.delete_to_do(glossary_guid)
113
+
114
+ click.echo(f"Deleted Todo item {glossary_guid}")
115
+
116
+ except (InvalidParameterException, PropertyServerException) as e:
117
+ print_exception_response(e)
118
+ finally:
119
+ m_client.close_session()
120
+
121
+
122
+ @click.command("create-term")
123
+ @click.option("--glossary-name", help="Name of Glossary", required=True)
124
+ @click.option("--term-name", help="Name of Term", required=True)
125
+ @click.option(
126
+ "--summary",
127
+ help="Summary definition",
128
+ default="Summary goes here",
129
+ )
130
+ @click.option(
131
+ "--description",
132
+ help="Full description",
133
+ default="Description goes here",
134
+ )
135
+ @click.option("--abbrev", help="Abbreviation", default=None)
136
+ @click.option("--examples", help="Example usage", default=None)
137
+ @click.option("--usage", help="Usage notes", default=None)
138
+ @click.option("--version", help="Version", default="1.0")
139
+ @click.option(
140
+ "--status",
141
+ help="Status",
142
+ type=click.Choice(
143
+ ["DRAFT", "ACTIVE", "DEPRACATED", "OBSOLETE", "OTHER"], case_sensitive=False
144
+ ),
145
+ default="DRAFT",
146
+ )
147
+ @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use.")
148
+ @click.option(
149
+ "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
150
+ )
151
+ @click.option("--userid", default=EGERIA_USER, help="Egeria user")
152
+ @click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
153
+ @click.option("--timeout", default=60, help="Number of seconds to wait")
154
+ def create_term(
155
+ server,
156
+ url,
157
+ userid,
158
+ password,
159
+ timeout,
160
+ glossary_name,
161
+ term_name,
162
+ summary,
163
+ description,
164
+ abbrev,
165
+ examples,
166
+ usage,
167
+ version,
168
+ status,
169
+ ):
170
+ """Create a new term"""
171
+ m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
172
+ token = m_client.create_egeria_bearer_token()
173
+ try:
174
+ body = {
175
+ "class": "ReferenceableRequestBody",
176
+ "elementProperties": {
177
+ "class": "GlossaryTermProperties",
178
+ "qualifiedName": f"GlossaryTerm: {term_name} : {datetime.now().isoformat()}",
179
+ "displayName": term_name,
180
+ "summary": summary,
181
+ "description": description,
182
+ "abbreviation": abbrev,
183
+ "examples": examples,
184
+ "usage": usage,
185
+ "publishVersionIdentifier": version,
186
+ },
187
+ "initialStatus": status,
188
+ }
189
+ exists = False
190
+ glossary_info = m_client.find_glossaries(glossary_name)
191
+ if type(glossary_info) is list:
192
+ for glossary in glossary_info:
193
+ if glossary["glossaryProperties"]["displayName"] == glossary_name:
194
+ exists = True
195
+ glossary_guid = glossary["elementHeader"]["guid"]
196
+
197
+ if not exists:
198
+ click.echo(f"The glossary name {glossary_name} was not found..exiting\n")
199
+ sys.exit(0)
200
+
201
+ term_guid = m_client.create_controlled_glossary_term(
202
+ glossary_guid, body_slimmer(body)
203
+ )
204
+
205
+ click.echo(
206
+ f"Successfully created term {term_name} with GUID {term_guid}, in glossary {glossary_name}.\n"
207
+ )
208
+
209
+ except (InvalidParameterException, PropertyServerException) as e:
210
+ print_exception_response(e)
211
+ finally:
212
+ m_client.close_session()
@@ -114,12 +114,16 @@ def list_deployed_catalogs(
114
114
  )
115
115
  schemas_md = ""
116
116
  if type(schemas) is list:
117
+ cnt = 0
117
118
  for schema in schemas:
118
119
  schema_md = ""
119
120
  schema_props = schema["properties"]
120
121
  for key in schema_props.keys():
121
122
  schema_md += f"* **{key}**: {schema_props[key]}\n"
122
- schemas_md += schema_md
123
+
124
+ spacer = "---\n" if cnt > 0 else ""
125
+ cnt += 1
126
+ schemas_md += f"{spacer}{schema_md}"
123
127
  schemas_md_out = Markdown(schemas_md)
124
128
 
125
129
  element_info = c_client.get_element_by_guid(server_guid)
@@ -125,7 +125,7 @@ def list_deployed_databases(
125
125
  for key in rel_props.keys():
126
126
  props_md += f"* **{key}**: {rel_props[key]}\n"
127
127
  rel_el_md = f"* **{rel_type}**: {rel_guid}\n{props_md}"
128
- if count > 1:
128
+ if count >= 1:
129
129
  rel_el_md += "---\n"
130
130
  rel_el_out = Markdown(rel_el_md)
131
131
 
commands/cli/egeria.py CHANGED
@@ -34,6 +34,13 @@ from commands.my.monitor_my_todos import display_my_todos
34
34
  from commands.my.monitor_open_todos import display_todos
35
35
  from commands.cat.list_deployed_database_schemas import list_deployed_database_schemas
36
36
  from commands.cat.list_deployed_catalogs import list_deployed_catalogs
37
+ from commands.cat.glossary_actions import create_glossary, delete_glossary, create_term
38
+ from commands.my.todo_actions import (
39
+ mark_todo_complete,
40
+ reassign_todo,
41
+ delete_todo,
42
+ create_todo,
43
+ )
37
44
 
38
45
 
39
46
  from commands.ops.gov_server_actions import (
@@ -957,6 +964,15 @@ def tell(ctx):
957
964
  pass
958
965
 
959
966
 
967
+ tell.add_command(create_glossary)
968
+ tell.add_command(delete_glossary)
969
+ tell.add_command(create_term)
970
+ tell.add_command(mark_todo_complete)
971
+ tell.add_command(reassign_todo)
972
+ tell.add_command(delete_todo)
973
+ tell.add_command(create_todo)
974
+
975
+
960
976
  @tell.group("survey")
961
977
  @click.pass_context
962
978
  def survey(ctx):
@@ -29,10 +29,16 @@ from commands.cat.list_user_ids import list_user_ids
29
29
  from commands.cat.list_archives import display_archive_list
30
30
  from commands.cat.list_deployed_database_schemas import list_deployed_database_schemas
31
31
  from commands.cat.list_deployed_catalogs import list_deployed_catalogs
32
-
32
+ from commands.cat.glossary_actions import create_glossary, delete_glossary, create_term
33
33
 
34
34
  # from pyegeria import ServerOps
35
35
  from commands.cli.ops_config import Config
36
+ from commands.my.todo_actions import (
37
+ mark_todo_complete,
38
+ reassign_todo,
39
+ delete_todo,
40
+ create_todo,
41
+ )
36
42
 
37
43
 
38
44
  # class Config(object):
@@ -537,6 +543,15 @@ def tell(ctx):
537
543
  pass
538
544
 
539
545
 
546
+ tell.add_command(create_glossary)
547
+ tell.add_command(delete_glossary)
548
+ tell.add_command(create_term)
549
+ tell.add_command(mark_todo_complete)
550
+ tell.add_command(reassign_todo)
551
+ tell.add_command(delete_todo)
552
+ tell.add_command(create_todo)
553
+
554
+
540
555
  @tell.group("survey")
541
556
  @click.pass_context
542
557
  def survey(ctx):
@@ -25,7 +25,7 @@ erins_guid = "a588fb08-ae09-4415-bd5d-991882ceacba"
25
25
  peter_guid = "a187bc48-8154-491f-97b4-a2f3c3f1a00e"
26
26
  tanya_guid = "26ec1614-bede-4b25-a2a3-f8ed26db3aaa"
27
27
 
28
- ERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
28
+ EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
29
29
  EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
30
30
  EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
31
31
  EGERIA_VIEW_SERVER = os.environ.get("VIEW_SERVER", "view-server")
@@ -43,11 +43,11 @@ EGERIA_USER_PASSWORD = os.environ.get("EGERIA_USER_PASSWORD", "secret")
43
43
 
44
44
 
45
45
  @click.command("create-todo")
46
+ @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use.")
46
47
  @click.option(
47
- "--server", default=EGERIA_VIEW_SERVER, help="Egeria metadata store to load"
48
- )
49
- @click.option(
50
- "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
48
+ "--url",
49
+ default=EGERIA_VIEW_SERVER_URL,
50
+ help="URL of Egeria platform to connect to.",
51
51
  )
52
52
  @click.option("--userid", default=EGERIA_USER, help="Egeria user")
53
53
  @click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
@@ -312,7 +312,9 @@ class AssetCatalog(Client):
312
312
  ignore_case: bool = True,
313
313
  time_out: int = 60,
314
314
  ) -> list | str:
315
- """Retrieve the list of engine action metadata elements that contain the search string. Async Version.
315
+ """Locate string value in elements that are anchored to assets. Async Version.
316
+ Asset: https: // egeria - project.org / concepts / asset /
317
+
316
318
  Parameters
317
319
  ----------
318
320
  search_string : str
@@ -2439,7 +2439,7 @@ class AutomatedCuration(Client):
2439
2439
 
2440
2440
  body = {
2441
2441
  "class": "InitiateGovernanceActionTypeRequestBody",
2442
- "governanceActionTypeQualifiedName": "AssetSurvey:survey-postgres-database",
2442
+ "governanceActionTypeQualifiedName": "PostgreSQLSurveys:survey-postgres-database",
2443
2443
  "actionTargets": [
2444
2444
  {
2445
2445
  "class": "NewActionTarget",
@@ -1405,6 +1405,17 @@ class GlossaryManager(GlossaryBrowser):
1405
1405
 
1406
1406
  return response
1407
1407
 
1408
+ def load_terms_from_file(
1409
+ self, glossary_name: str, filename: str, upsert: bool = False
1410
+ ) -> str:
1411
+ """This method loads glossary terms into the specified glossary from the indicated file."""
1412
+ # Check that glossary exists and get guid
1413
+
1414
+ # Open file
1415
+
1416
+ # Insert terms into glossary
1417
+ pass
1418
+
1408
1419
  async def _async_create_term_copy(
1409
1420
  self,
1410
1421
  glossary_guid: str,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 1.5.1.0.4
3
+ Version: 1.5.1.0.7
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,12 +6,13 @@ 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=F5-NNiLvfHLbQKZ_RxS6XJ9HOAuXc75GMIAC5Xo0lJQ,7280
9
10
  commands/cat/list_archives.py,sha256=83LhNeZWhzRiE-oU6veuIk9ob4XDtDWUoXdGGXaYeE8,5454
10
11
  commands/cat/list_assets.py,sha256=bNwSaBDz661hfnc2Rn4j4HPHAugKvz0XwN9L1m4FVQk,6529
11
12
  commands/cat/list_cert_types.py,sha256=mbCls_EqC5JKG5rvS4o69k7KgZ6aNXlcqoJ3DtHsTFA,7127
12
- commands/cat/list_deployed_catalogs.py,sha256=yBdLRSJRKlS4R2ALbSnMCvCDz-gLOi9T5cNt9EYBIcI,6822
13
+ commands/cat/list_deployed_catalogs.py,sha256=iMgJ_NEn1fLrUFMTnD752g-g5FAuwUtsD6o1uBnOYIo,6957
13
14
  commands/cat/list_deployed_database_schemas.py,sha256=LaO61c2pEJBpDyisypSRgRzVQxQZUfogU2Yywg4DrIs,8276
14
- commands/cat/list_deployed_databases.py,sha256=O0-1__4w17vGvERxDO5DMI4u-PW_30iH0A2nrUejaus,6604
15
+ commands/cat/list_deployed_databases.py,sha256=qRt3-pDXRVm-bKznmYsisja4zA8KRT58-02Mvj8MjOc,6605
15
16
  commands/cat/list_glossary.py,sha256=tUtQQoTGTlDLU-yFbfO3zjiJC9QyEJfg8NxnGCo2mnI,5811
16
17
  commands/cat/list_projects.py,sha256=Jzs-DtIpPhCH-gY4PYT6mnRBWnEf4m18TFfcw8UymNU,8011
17
18
  commands/cat/list_relationships.py,sha256=U9f78cOi4HyaacqNaFSMq_7rRxVcEczvwPv468GYw3Q,5869
@@ -19,8 +20,8 @@ commands/cat/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFo
19
20
  commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
20
21
  commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
21
22
  commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
22
- commands/cli/egeria.py,sha256=DpbQVtVmRjVTwIMC9qJNgk2VolEyhg4chix5JjPcXP0,30475
23
- commands/cli/egeria_cat.py,sha256=V_wkdV0wxMmdTV-tUUWC7bdT8wfI3t1IyH8IiEz62P4,14023
23
+ commands/cli/egeria.py,sha256=mKTlUkyO8B-zBwE7-lvvkesgKqWhoAkYf6ax0DialD8,30910
24
+ commands/cli/egeria_cat.py,sha256=uaZvSibAAaoOx5O8__0dNUYVfNGKcYGT4WJZo5OCN08,14457
24
25
  commands/cli/egeria_my.py,sha256=9zIpUDLeA_R-0rgCSQfEZTtVmkxPcEAsYcCTn1wQFrE,6181
25
26
  commands/cli/egeria_ops.py,sha256=fxDXYWXRhexx06PdSLCp2FhgUtS13NdDpyg7ea775fc,11531
26
27
  commands/cli/egeria_tech.py,sha256=eTDHTHDVEYmr6gUPGfido_Uf7Fec0Nuyxlkhg4KAMAw,13160
@@ -31,7 +32,7 @@ commands/my/list_my_profile.py,sha256=jJaGAHrhFv9VQR9li5pzFN3ihqhHv9LmnAVPiKvPp3
31
32
  commands/my/list_my_roles.py,sha256=AhyKXSQxBPDh2QQoL90bPQPkNnu1w7whpk9kZoBxRTQ,5175
32
33
  commands/my/monitor_my_todos.py,sha256=YiwyQgtA7YsfW4-Ps-1ymvFjRqp-Egubv9j8iFUMUXE,6601
33
34
  commands/my/monitor_open_todos.py,sha256=KDrAjdLPP3j0K9Y3G95BIgr51ktTx3mMlKydLFDF2YQ,5466
34
- commands/my/todo_actions.py,sha256=uihltirrAPtwYNygnNBAVWgfS0W7acoETz1_h3XW_4o,8369
35
+ commands/my/todo_actions.py,sha256=iazoRhsQ9aecCwJk6r4lWRP-mPD2t-YGU_GmPrFtR-Q,8372
35
36
  commands/ops/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
36
37
  commands/ops/__init__.py,sha256=SCfzF3-aMx8EpqLWmH7JQf13gTmMAtHRbg69oseLvi8,480
37
38
  commands/ops/engine_actions.py,sha256=00s_wkzs0zlZ6PyZ0J5J9lHhw4Viyzbeox7b1K1lmyc,4609
@@ -75,8 +76,8 @@ pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8Md
75
76
  pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
76
77
  pyegeria/_globals.py,sha256=1Uc8392wjbiVN5L__RzxC1-U97RMXj77_iUsMSgeAjQ,638
77
78
  pyegeria/_validators.py,sha256=rnZelHJnjHaLZ8UhUTDyB59MfIUJifhALtkYoHBaos4,12736
78
- pyegeria/asset_catalog_omvs.py,sha256=fffZsSukOrG-xszD6uEPf2IX4p0IK63T0_w7_6BpG1Q,21075
79
- pyegeria/automated_curation_omvs.py,sha256=rvX4RRjvNxlUGVXzNmgEmifV7_UwbgTIJu__JYxORyg,136326
79
+ pyegeria/asset_catalog_omvs.py,sha256=NUF9C3s_zs9pTfIZyRJlqMCKrhZASJPH08EXzzjki7g,21120
80
+ pyegeria/automated_curation_omvs.py,sha256=Wj9g3Vcx8VmbogxG_kusX38CUylq2r5ZM2sReqUQ-U4,136332
80
81
  pyegeria/classification_manager_omvs.py,sha256=VEwvlaDQT12Dwq8Q4lMvYCWYeq0OsC2P0bfsHUdy0CA,180701
81
82
  pyegeria/collection_manager_omvs.py,sha256=kye2kjthNnmwxMZhHQKV0xoHbxcNPWjNzRAYOItj_gY,99201
82
83
  pyegeria/core_omag_server_config.py,sha256=EtHaPKyc9d6pwTgbnQqGwe5lSBMPIfJOlbJEa1zg1JA,94946
@@ -89,7 +90,7 @@ pyegeria/egeria_tech_client.py,sha256=7NfqpJFft5GR4NPRDVDw22L9caHbXB8fhx0TAf6qEo
89
90
  pyegeria/feedback_manager_omvs.py,sha256=B66e3ZCaC_dirb0mcb2Nz3PYh2ZKsoMAYNOb3euNiro,152931
90
91
  pyegeria/full_omag_server_config.py,sha256=LBnqUiz1ofBdlKBzECFs_pQbdJwcWigAukWHGJRR2nU,47340
91
92
  pyegeria/glossary_browser_omvs.py,sha256=AnBRp6KKw0507ABz_WmknVL94zLzYzJ4saXrghFlpmw,93455
92
- pyegeria/glossary_manager_omvs.py,sha256=49kiIxypvi5HKI1Ewtk1qp104zDuhcGe5SxBDKB0W8o,111925
93
+ pyegeria/glossary_manager_omvs.py,sha256=LmZWwRsDDrvZsf2Whsayj4XHINlER9nu9z2CNc1YOX8,112262
93
94
  pyegeria/mermaid_utilities.py,sha256=GXiS-subb5nJcDqlThZWX2T8WspU1neFfhf4TxRoMh4,8344
94
95
  pyegeria/my_profile_omvs.py,sha256=DyECbUFEcgokrIbzdMMNljC3bqfqKGXAF2wZEpzvRYs,34666
95
96
  pyegeria/platform_services.py,sha256=CJIOYIFEbcIGwdWlApAQcXxZTsdrhFtpJcm4O3p7dG0,41646
@@ -100,8 +101,8 @@ pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0
100
101
  pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
101
102
  pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
102
103
  pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
103
- pyegeria-1.5.1.0.4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
104
- pyegeria-1.5.1.0.4.dist-info/METADATA,sha256=aHgZlal0-Qsob6AWvNPwQTyUo89V963lrvTaBvQw2w4,2997
105
- pyegeria-1.5.1.0.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
106
- pyegeria-1.5.1.0.4.dist-info/entry_points.txt,sha256=Mbd1WrK70MbB1XA_kVcKFVm9RNkn2H1c0xHzv78K2p4,3824
107
- pyegeria-1.5.1.0.4.dist-info/RECORD,,
104
+ pyegeria-1.5.1.0.7.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
105
+ pyegeria-1.5.1.0.7.dist-info/METADATA,sha256=3LxbP7Ro56CkqyCbLTaopSEMuP2f9m6rrAQcWHQrRz8,2997
106
+ pyegeria-1.5.1.0.7.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
107
+ pyegeria-1.5.1.0.7.dist-info/entry_points.txt,sha256=Pc5kHnxv-vbRpwVMxSSWl66vmf7EZjgzf7nZzz1ow3M,4002
108
+ pyegeria-1.5.1.0.7.dist-info/RECORD,,
@@ -1,6 +1,9 @@
1
1
  [console_scripts]
2
2
  change_todo_status=commands.my.todo_actions:change_todo_status
3
+ create_glossary=commands.cat.glossary_actions:create_glossary
4
+ create_term=commands.cat.glossary_actions:create_term
3
5
  create_todo=commands.my.todo_actions:create_todo
6
+ delete_glossary=commands.cat.glossary_actions:delete_glossary
4
7
  delete_todo=commands.my.todo_actions:delete_todo
5
8
  get_asset_graph=commands.cat.get_asset_graph:main
6
9
  get_collection=commands.cat.get_collection:main