pyegeria 1.5.1.0.4__py3-none-any.whl → 1.5.1.0.5__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.
- commands/cat/glossary_actions.py +221 -0
- commands/cli/egeria.py +6 -1
- commands/cli/egeria_cat.py +6 -1
- commands/my/todo_actions.py +5 -5
- pyegeria/glossary_manager_omvs.py +11 -0
- {pyegeria-1.5.1.0.4.dist-info → pyegeria-1.5.1.0.5.dist-info}/METADATA +1 -1
- {pyegeria-1.5.1.0.4.dist-info → pyegeria-1.5.1.0.5.dist-info}/RECORD +10 -9
- {pyegeria-1.5.1.0.4.dist-info → pyegeria-1.5.1.0.5.dist-info}/entry_points.txt +3 -0
- {pyegeria-1.5.1.0.4.dist-info → pyegeria-1.5.1.0.5.dist-info}/LICENSE +0 -0
- {pyegeria-1.5.1.0.4.dist-info → pyegeria-1.5.1.0.5.dist-info}/WHEEL +0 -0
@@ -0,0 +1,221 @@
|
|
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", prompt="Glossary Name", help="Name of Glossary", required=True)
|
45
|
+
@click.option(
|
46
|
+
"--language", prompt="Language", help="Language of Glossary", default="English"
|
47
|
+
)
|
48
|
+
@click.option(
|
49
|
+
"--description",
|
50
|
+
prompt="Glossary Description",
|
51
|
+
help="Description of Glossary",
|
52
|
+
default="A description goes here",
|
53
|
+
)
|
54
|
+
@click.option(
|
55
|
+
"--usage",
|
56
|
+
prompt="Glossary Usage",
|
57
|
+
help="Purpose of glossary",
|
58
|
+
default="Definitions",
|
59
|
+
)
|
60
|
+
@click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use.")
|
61
|
+
@click.option(
|
62
|
+
"--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
|
63
|
+
)
|
64
|
+
@click.option("--userid", default=EGERIA_USER, help="Egeria user")
|
65
|
+
@click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
|
66
|
+
@click.option("--timeout", default=60, help="Number of seconds to wait")
|
67
|
+
def create_glossary(
|
68
|
+
server: str,
|
69
|
+
url: str,
|
70
|
+
userid: str,
|
71
|
+
password: str,
|
72
|
+
timeout: int,
|
73
|
+
name: str,
|
74
|
+
language: str,
|
75
|
+
description: str,
|
76
|
+
usage: str,
|
77
|
+
) -> None:
|
78
|
+
"""Create a new Glossary"""
|
79
|
+
|
80
|
+
try:
|
81
|
+
m_client = EgeriaTech(server, url, userid, password)
|
82
|
+
token = m_client.create_egeria_bearer_token()
|
83
|
+
|
84
|
+
existing_glossary = m_client.find_glossaries(name)
|
85
|
+
if type(existing_glossary) is list:
|
86
|
+
click.echo(f"\nFound {len(existing_glossary)} existing Glossaries\n")
|
87
|
+
for glossary in existing_glossary:
|
88
|
+
click.echo(
|
89
|
+
f"\tFound glossary: {glossary['glossaryProperties']['qualifiedName']} with id of {glossary['elementHeader']['guid']}\n"
|
90
|
+
)
|
91
|
+
sys.exit(0)
|
92
|
+
|
93
|
+
glossary_guid = m_client.create_glossary(name, language, description, usage)
|
94
|
+
print(f"New glossary {name} created with id of {glossary_guid}")
|
95
|
+
|
96
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
97
|
+
print_exception_response(e)
|
98
|
+
finally:
|
99
|
+
m_client.close_session()
|
100
|
+
|
101
|
+
|
102
|
+
@click.command("delete-glossary")
|
103
|
+
@click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use")
|
104
|
+
@click.option(
|
105
|
+
"--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
|
106
|
+
)
|
107
|
+
@click.option("--userid", default=EGERIA_USER, help="Egeria user")
|
108
|
+
@click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
|
109
|
+
@click.option("--timeout", default=60, help="Number of seconds to wait")
|
110
|
+
@click.argument("glossary-guid")
|
111
|
+
def delete_glossary(server, url, userid, password, timeout, glossary_guid):
|
112
|
+
"""Delete the glossary specified"""
|
113
|
+
m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
|
114
|
+
token = m_client.create_egeria_bearer_token()
|
115
|
+
try:
|
116
|
+
m_client.delete_to_do(glossary_guid)
|
117
|
+
|
118
|
+
click.echo(f"Deleted Todo item {glossary_guid}")
|
119
|
+
|
120
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
121
|
+
print_exception_response(e)
|
122
|
+
finally:
|
123
|
+
m_client.close_session()
|
124
|
+
|
125
|
+
|
126
|
+
@click.command("create-term")
|
127
|
+
@click.option(
|
128
|
+
"--glossary-name", prompt="Glossary Name", help="Name of Glossary", required=True
|
129
|
+
)
|
130
|
+
@click.option("--term-name", prompt="Term Name", help="Name of Term", required=True)
|
131
|
+
@click.option(
|
132
|
+
"--summary",
|
133
|
+
prompt="Summary",
|
134
|
+
help="Summary definition",
|
135
|
+
default="Summary goes here",
|
136
|
+
)
|
137
|
+
@click.option(
|
138
|
+
"--description",
|
139
|
+
prompt="Description",
|
140
|
+
help="Full description",
|
141
|
+
default="Description goes here",
|
142
|
+
)
|
143
|
+
@click.option("--abbrev", prompt="Abbreviation", help="Abbreviation", default=None)
|
144
|
+
@click.option("--examples", prompt="Examples", help="Example usage", default=None)
|
145
|
+
@click.option("--usage", prompt="Usage", help="Usage notes", default=None)
|
146
|
+
@click.option("--version", prompt="Version", help="Version", default="1.0")
|
147
|
+
@click.option(
|
148
|
+
"--status",
|
149
|
+
prompt="Status",
|
150
|
+
help="Status",
|
151
|
+
type=click.Choice(
|
152
|
+
["DRAFT", "ACTIVE", "DEPRACATED", "OBSOLETE", "OTHER"], case_sensitive=False
|
153
|
+
),
|
154
|
+
default="DRAFT",
|
155
|
+
)
|
156
|
+
@click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use.")
|
157
|
+
@click.option(
|
158
|
+
"--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
|
159
|
+
)
|
160
|
+
@click.option("--userid", default=EGERIA_USER, help="Egeria user")
|
161
|
+
@click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
|
162
|
+
@click.option("--timeout", default=60, help="Number of seconds to wait")
|
163
|
+
def create_term(
|
164
|
+
server,
|
165
|
+
url,
|
166
|
+
userid,
|
167
|
+
password,
|
168
|
+
timeout,
|
169
|
+
glossary_name,
|
170
|
+
term_name,
|
171
|
+
summary,
|
172
|
+
description,
|
173
|
+
abbrev,
|
174
|
+
examples,
|
175
|
+
usage,
|
176
|
+
version,
|
177
|
+
status,
|
178
|
+
):
|
179
|
+
"""Create a new term"""
|
180
|
+
m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
|
181
|
+
token = m_client.create_egeria_bearer_token()
|
182
|
+
try:
|
183
|
+
body = {
|
184
|
+
"class": "ReferenceableRequestBody",
|
185
|
+
"elementProperties": {
|
186
|
+
"class": "GlossaryTermProperties",
|
187
|
+
"qualifiedName": f"GlossaryTerm: {term_name} : {datetime.datetime.now().isoformat()}",
|
188
|
+
"displayName": term_name,
|
189
|
+
"summary": summary,
|
190
|
+
"description": description,
|
191
|
+
"abbreviation": abbrev,
|
192
|
+
"examples": examples,
|
193
|
+
"usage": usage,
|
194
|
+
"publishVersionIdentifier": version,
|
195
|
+
},
|
196
|
+
"initialStatus": status,
|
197
|
+
}
|
198
|
+
exists = False
|
199
|
+
glossary_info = m_client.find_glossaries(glossary_name)
|
200
|
+
if type(glossary_info) is list:
|
201
|
+
for glossary in glossary_info:
|
202
|
+
if glossary["glossaryProperties"]["displayName"] == glossary_name:
|
203
|
+
exists = True
|
204
|
+
glossary_guid = glossary["elementHeader"]["guid"]
|
205
|
+
|
206
|
+
if not exists:
|
207
|
+
click.echo(f"The glossary name {glossary_name} was not found..exiting\n")
|
208
|
+
sys.exit(0)
|
209
|
+
|
210
|
+
term_guid = m_client.create_controlled_glossary_term(
|
211
|
+
glossary_guid, body_slimmer(body)
|
212
|
+
)
|
213
|
+
|
214
|
+
click.echo(
|
215
|
+
f"Successfully created term {term_name} with GUID {term_guid}, in glossary {glossary_name}.\n"
|
216
|
+
)
|
217
|
+
|
218
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
219
|
+
print_exception_response(e)
|
220
|
+
finally:
|
221
|
+
m_client.close_session()
|
commands/cli/egeria.py
CHANGED
@@ -34,7 +34,7 @@ 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
|
-
|
37
|
+
from commands.cat.glossary_actions import create_glossary, delete_glossary, create_term
|
38
38
|
|
39
39
|
from commands.ops.gov_server_actions import (
|
40
40
|
add_catalog_target,
|
@@ -957,6 +957,11 @@ def tell(ctx):
|
|
957
957
|
pass
|
958
958
|
|
959
959
|
|
960
|
+
tell.add_command(create_glossary)
|
961
|
+
tell.add_command(delete_glossary)
|
962
|
+
tell.add_command(create_term)
|
963
|
+
|
964
|
+
|
960
965
|
@tell.group("survey")
|
961
966
|
@click.pass_context
|
962
967
|
def survey(ctx):
|
commands/cli/egeria_cat.py
CHANGED
@@ -29,7 +29,7 @@ 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
|
@@ -537,6 +537,11 @@ def tell(ctx):
|
|
537
537
|
pass
|
538
538
|
|
539
539
|
|
540
|
+
tell.add_command(create_glossary)
|
541
|
+
tell.add_command(delete_glossary)
|
542
|
+
tell.add_command(create_term)
|
543
|
+
|
544
|
+
|
540
545
|
@tell.group("survey")
|
541
546
|
@click.pass_context
|
542
547
|
def survey(ctx):
|
commands/my/todo_actions.py
CHANGED
@@ -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
|
-
|
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
|
-
"--
|
48
|
-
|
49
|
-
|
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")
|
@@ -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,
|
@@ -6,6 +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=aBKMsTAjkwdoMuyuj9ou9QefcdKmkIt4oDlpAVJ_Ymo,7597
|
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
|
@@ -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=
|
23
|
-
commands/cli/egeria_cat.py,sha256=
|
23
|
+
commands/cli/egeria.py,sha256=rKRdJ-iKspR3zs-zGjnJI5OGHB_bJttD_tWZ6kNrU9s,30662
|
24
|
+
commands/cli/egeria_cat.py,sha256=9uz9uz-ekCdwN6qNwovI4z1faCCqk3eaayaVkCETSdU,14210
|
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=
|
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
|
@@ -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=
|
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.
|
104
|
-
pyegeria-1.5.1.0.
|
105
|
-
pyegeria-1.5.1.0.
|
106
|
-
pyegeria-1.5.1.0.
|
107
|
-
pyegeria-1.5.1.0.
|
104
|
+
pyegeria-1.5.1.0.5.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
105
|
+
pyegeria-1.5.1.0.5.dist-info/METADATA,sha256=kcbmI3YiROFo3L_aCQVekhvAx9cPGC0EAkUAEV3KTEg,2997
|
106
|
+
pyegeria-1.5.1.0.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
107
|
+
pyegeria-1.5.1.0.5.dist-info/entry_points.txt,sha256=Pc5kHnxv-vbRpwVMxSSWl66vmf7EZjgzf7nZzz1ow3M,4002
|
108
|
+
pyegeria-1.5.1.0.5.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
|
File without changes
|
File without changes
|