pyegeria 1.5.1.1.27__py3-none-any.whl → 1.5.1.1.30__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.
@@ -3,8 +3,10 @@
3
3
  Widgets
4
4
  """
5
5
 
6
- from ops.monitor_gov_eng_status import display_gov_eng_status
7
- from ops.monitor_integ_daemon_status import display_integration_daemon_status
8
- from cat.glossary_actions import display_glossaries
9
- from cat.list_terms import display_glossary_terms
10
- from ops.table_integ_daemon_status import display_integration_daemon_status
6
+ from .ops.monitor_gov_eng_status import display_gov_eng_status
7
+ from .ops.monitor_integ_daemon_status import display_integration_daemon_status
8
+ from .cat.list_glossaries import display_glossaries
9
+ from .cat.list_terms import display_glossary_terms
10
+ from .ops.table_integ_daemon_status import (
11
+ display_integration_daemon_status as table_integ_daemon_status,
12
+ )
@@ -1 +1,5 @@
1
- from glossary_actions import display_glossaries
1
+ from .list_glossaries import display_glossaries
2
+ from .list_terms import display_glossary_terms
3
+ from .list_deployed_catalogs import list_deployed_catalogs
4
+ from .list_deployed_database_schemas import list_deployed_database_schemas
5
+ from .list_deployed_databases import list_deployed_databases
@@ -117,94 +117,6 @@ def create_glossary(
117
117
  m_client.close_session()
118
118
 
119
119
 
120
- def display_glossaries(
121
- search_string: str,
122
- server: str,
123
- url: str,
124
- userid: str,
125
- password: str,
126
- timeout: int,
127
- jupyter: bool,
128
- width: int,
129
- ):
130
- list_glossaries(
131
- search_string, server, url, userid, password, timeout, jupyter, width
132
- )
133
-
134
-
135
- @click.command("glossaries")
136
- @click.option("--search-string", default="*", help="Glossaries to search for")
137
- @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use")
138
- @click.option(
139
- "--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
140
- )
141
- @click.option("--userid", default=EGERIA_USER, help="Egeria user")
142
- @click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
143
- @click.option("--timeout", default=60, help="Number of seconds to wait")
144
- @click.option(
145
- "--jupyter",
146
- is_flag=True,
147
- default=False,
148
- envvar="EGERIA_JUPYTER",
149
- help="Enable for rendering in a Jupyter terminal",
150
- )
151
- @click.option(
152
- "--width",
153
- default=200,
154
- envvar="EGERIA_WIDTH",
155
- help="Screen width, in characters, to use",
156
- )
157
- def list_glossaries(
158
- search_string, server, url, userid, password, timeout, jupyter, width
159
- ):
160
- """List all glossaries"""
161
- m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
162
- token = m_client.create_egeria_bearer_token()
163
- try:
164
- table = Table(
165
- title=f"Glossary List @ {time.asctime()}",
166
- style="bright_white on black",
167
- header_style="bright_white on dark_blue",
168
- title_style="bold white on black",
169
- caption_style="white on black",
170
- show_lines=True,
171
- box=box.ROUNDED,
172
- caption=f"View Server '{server}' @ Platform - {url}",
173
- expand=True,
174
- )
175
- table.add_column("Glossary Name")
176
- table.add_column("Qualified Name / GUID", width=38, no_wrap=True)
177
- table.add_column("Language")
178
- table.add_column("Description")
179
- table.add_column("Usage")
180
-
181
- glossaries = m_client.find_glossaries(search_string)
182
- if type(glossaries) is list:
183
- sorted_glossary_list = sorted(
184
- glossaries, key=lambda k: k["glossaryProperties"]["displayName"]
185
- )
186
- for glossary in sorted_glossary_list:
187
- display_name = glossary["glossaryProperties"]["displayName"]
188
- qualified_name = glossary["glossaryProperties"]["qualifiedName"]
189
- guid = glossary["elementHeader"]["guid"]
190
- q_name = f"{qualified_name}\n\n{guid}"
191
- language = glossary["glossaryProperties"]["language"]
192
- description = glossary["glossaryProperties"]["description"]
193
- usage = glossary["glossaryProperties"]["usage"]
194
- table.add_row(display_name, q_name, language, description, usage)
195
- console = Console(
196
- style="bold bright_white on black",
197
- width=width,
198
- force_terminal=not jupyter,
199
- )
200
- console.print(table)
201
-
202
- except (InvalidParameterException, PropertyServerException) as e:
203
- print_exception_response(e)
204
- finally:
205
- m_client.close_session()
206
-
207
-
208
120
  @click.command("delete-glossary")
209
121
  @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use")
210
122
  @click.option(
@@ -0,0 +1,131 @@
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 display for glossary terms
10
+ """
11
+ import argparse
12
+ import os
13
+ import sys
14
+ import time
15
+
16
+ from rich import box
17
+ from rich.console import Console
18
+ from rich.prompt import Prompt
19
+ from rich.table import Table
20
+ from rich.text import Text
21
+
22
+ from pyegeria import (
23
+ InvalidParameterException,
24
+ PropertyServerException,
25
+ UserNotAuthorizedException,
26
+ EgeriaTech,
27
+ print_exception_response,
28
+ )
29
+
30
+ disable_ssl_warnings = True
31
+
32
+ EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
33
+ EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
34
+ EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
35
+ EGERIA_VIEW_SERVER = os.environ.get("VIEW_SERVER", "view-server")
36
+ EGERIA_VIEW_SERVER_URL = os.environ.get(
37
+ "EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
38
+ )
39
+ EGERIA_INTEGRATION_DAEMON = os.environ.get("INTEGRATION_DAEMON", "integration-daemon")
40
+ EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
41
+ EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
42
+ EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
43
+ EGERIA_USER_PASSWORD = os.environ.get("EGERIA_USER_PASSWORD", "secret")
44
+ EGERIA_JUPYTER = bool(os.environ.get("EGERIA_JUPYTER", "False"))
45
+ EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "200"))
46
+
47
+
48
+ def display_glossaries(
49
+ search_string: str,
50
+ server: str,
51
+ url: str,
52
+ userid: str,
53
+ password: str,
54
+ jupyter: bool = EGERIA_JUPYTER,
55
+ width: int = EGERIA_WIDTH,
56
+ ):
57
+ """List all glossaries"""
58
+ m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
59
+ token = m_client.create_egeria_bearer_token()
60
+ try:
61
+ table = Table(
62
+ title=f"Glossary List @ {time.asctime()}",
63
+ style="bright_white on black",
64
+ header_style="bright_white on dark_blue",
65
+ title_style="bold white on black",
66
+ caption_style="white on black",
67
+ show_lines=True,
68
+ box=box.ROUNDED,
69
+ caption=f"View Server '{server}' @ Platform - {url}",
70
+ expand=True,
71
+ )
72
+ table.add_column("Glossary Name")
73
+ table.add_column("Qualified Name / GUID", width=38, no_wrap=True)
74
+ table.add_column("Language")
75
+ table.add_column("Description")
76
+ table.add_column("Usage")
77
+
78
+ glossaries = m_client.find_glossaries(search_string)
79
+ if type(glossaries) is list:
80
+ sorted_glossary_list = sorted(
81
+ glossaries, key=lambda k: k["glossaryProperties"]["displayName"]
82
+ )
83
+ for glossary in sorted_glossary_list:
84
+ display_name = glossary["glossaryProperties"]["displayName"]
85
+ qualified_name = glossary["glossaryProperties"]["qualifiedName"]
86
+ guid = glossary["elementHeader"]["guid"]
87
+ q_name = f"{qualified_name}\n\n{guid}"
88
+ language = glossary["glossaryProperties"]["language"]
89
+ description = glossary["glossaryProperties"]["description"]
90
+ usage = glossary["glossaryProperties"]["usage"]
91
+ table.add_row(display_name, q_name, language, description, usage)
92
+ console = Console(
93
+ style="bold bright_white on black",
94
+ width=width,
95
+ force_terminal=not jupyter,
96
+ )
97
+ console.print(table)
98
+
99
+ except (InvalidParameterException, PropertyServerException) as e:
100
+ print_exception_response(e)
101
+ finally:
102
+ m_client.close_session()
103
+
104
+
105
+ def main():
106
+ parser = argparse.ArgumentParser()
107
+ parser.add_argument("--server", help="Name of the server to display status for")
108
+ parser.add_argument("--url", help="URL Platform to connect to")
109
+ parser.add_argument("--userid", help="User Id")
110
+ parser.add_argument("--password", help="User Password")
111
+
112
+ args = parser.parse_args()
113
+
114
+ server = args.server if args.server is not None else EGERIA_VIEW_SERVER
115
+ url = args.url if args.url is not None else EGERIA_PLATFORM_URL
116
+ userid = args.userid if args.userid is not None else EGERIA_USER
117
+ user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
118
+
119
+ try:
120
+ search_string = Prompt.ask(
121
+ "Enter the glossary you are searching for or '*' for all:", default="*"
122
+ )
123
+
124
+ display_glossaries(search_string, server, url, userid, user_pass)
125
+
126
+ except KeyboardInterrupt:
127
+ pass
128
+
129
+
130
+ if __name__ == "__main__":
131
+ main()
@@ -40,11 +40,12 @@ from pyegeria.commands.cat.list_deployed_databases import list_deployed_database
40
40
  from pyegeria.commands.cat.glossary_actions import (
41
41
  create_glossary,
42
42
  delete_glossary,
43
- list_glossaries,
44
43
  create_term,
45
44
  load_terms,
46
45
  export_terms,
47
46
  )
47
+ from pyegeria.commands.cat.list_glossaries import display_glossaries
48
+
48
49
  from pyegeria.commands.my.todo_actions import (
49
50
  mark_todo_complete,
50
51
  reassign_todo,
@@ -978,7 +979,22 @@ def list_databases(ctx):
978
979
  )
979
980
 
980
981
 
981
- show.add_command(list_glossaries)
982
+ @show.command("list-glossaries")
983
+ @click.option("--search_string", default="*", help="Name to search for glossaries")
984
+ @click.pass_context
985
+ def list_glossaries(ctx, search_string):
986
+ """Display a tree graph of information about an asset"""
987
+ c = ctx.obj
988
+ display_glossaries(
989
+ search_string,
990
+ c.view_server,
991
+ c.view_server_url,
992
+ c.userid,
993
+ c.password,
994
+ c.jupyter,
995
+ c.width,
996
+ )
997
+
982
998
 
983
999
  #
984
1000
  # Catalog User: Tell
@@ -23,9 +23,9 @@ from pyegeria.commands.cat.glossary_actions import (
23
23
  delete_glossary,
24
24
  create_term,
25
25
  load_terms,
26
- list_glossaries,
27
26
  export_terms,
28
27
  )
28
+ from pyegeria.commands.cat.list_glossaries import display_glossaries
29
29
  from pyegeria.commands.cat.list_archives import display_archive_list
30
30
  from pyegeria.commands.cat.list_assets import display_assets
31
31
  from pyegeria.commands.cat.list_cert_types import display_certifications
@@ -550,6 +550,23 @@ def list_catalogs(ctx, search_server):
550
550
  )
551
551
 
552
552
 
553
+ @show.command("list-glossaries")
554
+ @click.option("--search_string", default="*", help="Name to search for glossaries")
555
+ @click.pass_context
556
+ def list_glossaries(ctx, search_string):
557
+ """Display a tree graph of information about an asset"""
558
+ c = ctx.obj
559
+ display_glossaries(
560
+ search_string,
561
+ c.view_server,
562
+ c.view_server_url,
563
+ c.userid,
564
+ c.password,
565
+ c.jupyter,
566
+ c.width,
567
+ )
568
+
569
+
553
570
  @show.command("list-databases")
554
571
  @click.pass_context
555
572
  def list_databases(ctx):
@@ -560,8 +577,6 @@ def list_databases(ctx):
560
577
  )
561
578
 
562
579
 
563
- show.add_command(list_glossaries)
564
-
565
580
  #
566
581
  # Tell
567
582
  #
@@ -4,9 +4,12 @@ Copyright Contributors to the ODPi Egeria project.
4
4
 
5
5
 
6
6
  """
7
- import pyegeria
8
-
9
- # from .ops_config import Config
7
+ #
8
+ # from .monitor_integ_daemon_status import display_integration_daemon_status
9
+ # from .monitor_gov_eng_status import display_gov_eng_status
10
+ # from .monitor_platform_status import display_status as display_platform_status
11
+ # from .monitor_server_status import display_status as display_server_status
12
+ # from .monitor_engine_activity_c import display_engine_activity_c
10
13
 
11
14
  # import monitor_server_status
12
15
  # import monitor_server_list
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 1.5.1.1.27
3
+ Version: 1.5.1.1.30
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
@@ -11,22 +11,23 @@ pyegeria/classification_manager_omvs.py,sha256=3yInuRy7Cf43oSFZ8BuzcIgtGSm5BfvlK
11
11
  pyegeria/collection_manager_omvs.py,sha256=kye2kjthNnmwxMZhHQKV0xoHbxcNPWjNzRAYOItj_gY,99201
12
12
  pyegeria/commands/.DS_Store,sha256=nBgW7MKJ6b4wSWyEEeGYHWwC8QJAiteQaWKM9PoNRzY,6148
13
13
  pyegeria/commands/README.md,sha256=zNfWZppDxoKqTJeRtcewzku9z1m6_hKacCyQUQw1iq4,1974
14
- pyegeria/commands/__init__.py,sha256=bToGfGQ63IS5-SZG45XgudKRGmHJsL-OrVoLbHHfjDw,336
14
+ pyegeria/commands/__init__.py,sha256=nqoGHBFvcPCVsHS5YyG2RMOj0lJappL1yYeewO6I9rc,378
15
15
  pyegeria/commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
16
- pyegeria/commands/cat/__init__.py,sha256=w7b-hlPvrfBYhXJpj8oXPvm0RYB3JM6T6uDI7KbKW4s,48
16
+ pyegeria/commands/cat/__init__.py,sha256=ernlw1R7H7d4wN2AyzT9B1K9ANp_reKXv7VOY5BFBv4,290
17
17
  pyegeria/commands/cat/get_asset_graph.py,sha256=4AO4KlCgb7vbMihJK7W_GAnrd4J9sKwc4kXxa2ZrRW4,12447
18
18
  pyegeria/commands/cat/get_collection.py,sha256=v7hCeEDcAQmcjM9qepuk8gg_RnYra3_v009AJOunkKk,5005
19
19
  pyegeria/commands/cat/get_project_dependencies.py,sha256=B0JaMSUi0hzVgos1sTY2uUPGy1DzKEJMIbbYfMUWvQA,5981
20
20
  pyegeria/commands/cat/get_project_structure.py,sha256=n2GbNd07w1DTo7jTR8b2ewXRyNcat_2BcCBRyDMldwk,5969
21
21
  pyegeria/commands/cat/get_tech_type_elements.py,sha256=-m3Q0BoNqkCtV8h75vMwTcOV-_ymEXmnJcr4Ec7WMAw,6180
22
22
  pyegeria/commands/cat/get_tech_type_template.py,sha256=gMFVcgCIm09GQu1Vsc5ZUVH9XLhItAG1eVGZJrcnHeQ,6174
23
- pyegeria/commands/cat/glossary_actions.py,sha256=TKywfTBUTMKrqBjtKsjd69YbhqyvShs5Be7ItDU7_Lk,14279
23
+ pyegeria/commands/cat/glossary_actions.py,sha256=T1JkB-uhf1WyM1xcIBux_kNcAnpkLt85e3Tkwk5wb3I,11073
24
24
  pyegeria/commands/cat/list_archives.py,sha256=FEZ2XYnQIWo2PztWqnj6unn0pbblPU0-bMbTyI3csv4,5464
25
25
  pyegeria/commands/cat/list_assets.py,sha256=bNwSaBDz661hfnc2Rn4j4HPHAugKvz0XwN9L1m4FVQk,6529
26
26
  pyegeria/commands/cat/list_cert_types.py,sha256=mbCls_EqC5JKG5rvS4o69k7KgZ6aNXlcqoJ3DtHsTFA,7127
27
27
  pyegeria/commands/cat/list_deployed_catalogs.py,sha256=eG8K-d7BijD34el_yVx9yfnLJdfwTUiJVxd-gcGwo7k,7157
28
28
  pyegeria/commands/cat/list_deployed_database_schemas.py,sha256=HNAR8qXU7FWUxPJw6yBxmlsJ_eVXqsD_DrswKmY1iv0,8824
29
29
  pyegeria/commands/cat/list_deployed_databases.py,sha256=HE8nG-mIlxa9iSUEH-n71o-G2a4ss1Zzalq7YJQIix0,6668
30
+ pyegeria/commands/cat/list_glossaries.py,sha256=tndiJ5cJ6cdxeRnAsIZykDMhjmZACb9KIoCacAz9skw,4652
30
31
  pyegeria/commands/cat/list_projects.py,sha256=Jzs-DtIpPhCH-gY4PYT6mnRBWnEf4m18TFfcw8UymNU,8011
31
32
  pyegeria/commands/cat/list_relationships.py,sha256=U9f78cOi4HyaacqNaFSMq_7rRxVcEczvwPv468GYw3Q,5869
32
33
  pyegeria/commands/cat/list_tech_types.py,sha256=20T4v6L5qeebSsaL1nGkFMDAIsy2W3A3SMm1RcgFoh0,4609
@@ -34,8 +35,8 @@ pyegeria/commands/cat/list_terms.py,sha256=zNo8oQo4y3cGIYikBnD9gutPLecwyF8Q3XaOL
34
35
  pyegeria/commands/cat/list_todos.py,sha256=iPxHRyW3X5tiREio4TUOwRPvNPjU0gxm3pVnUI79ir4,6542
35
36
  pyegeria/commands/cat/list_user_ids.py,sha256=7JinL7rknPbGusIb8ikXKEaV1vvbuvx_WWtbmlfS_DY,5093
36
37
  pyegeria/commands/cli/__init__.py,sha256=hpTVSMP2gnPRhcAZPdeUEsQ-eaDySlXlk239dNWYmng,292
37
- pyegeria/commands/cli/egeria.py,sha256=An7y4Dy03-inkRiat9pAP8RLcqcpy36GQj20XeY6M7E,32376
38
- pyegeria/commands/cli/egeria_cat.py,sha256=-rfM7WKtXwV0OkMF0gMN2YF9lcrtLtSb9TToKoZPR_w,15316
38
+ pyegeria/commands/cli/egeria.py,sha256=CheD1P34n_mqKZMCWRLjnUJXAhle4X-yNfWjnPLLwRw,32824
39
+ pyegeria/commands/cli/egeria_cat.py,sha256=sdFTgW33Qza4DtBTObaFoUE0Ac39en_oGubi0zy8ekQ,15763
39
40
  pyegeria/commands/cli/egeria_my.py,sha256=Memyxzhrn_i3nMNRor-5N40_SKJJMzylA4iQgBW3T4g,6235
40
41
  pyegeria/commands/cli/egeria_ops.py,sha256=aI3BU7btQa0ZrT3LDXto4gLWzLn2qoS4r499eHoAntc,11998
41
42
  pyegeria/commands/cli/egeria_tech.py,sha256=iq5D-dl0KW1HbNG8AolJSZoR6hTLp90RD_JjHxVj9Pk,13313
@@ -48,7 +49,7 @@ pyegeria/commands/my/monitor_my_todos.py,sha256=YiwyQgtA7YsfW4-Ps-1ymvFjRqp-Egub
48
49
  pyegeria/commands/my/monitor_open_todos.py,sha256=KDrAjdLPP3j0K9Y3G95BIgr51ktTx3mMlKydLFDF2YQ,5466
49
50
  pyegeria/commands/my/todo_actions.py,sha256=iazoRhsQ9aecCwJk6r4lWRP-mPD2t-YGU_GmPrFtR-Q,8372
50
51
  pyegeria/commands/ops/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
51
- pyegeria/commands/ops/__init__.py,sha256=53VGbzvV0y5-RJRu1zi91CJhj697PXG4EdopHMpqjbk,449
52
+ pyegeria/commands/ops/__init__.py,sha256=GyDGBYodxuJ-7k87z2farDs9vhR__RNrYeAe94HWGPM,764
52
53
  pyegeria/commands/ops/engine_actions.py,sha256=qEb41rQbQIFWwJ0dE-2DbnPnzZKEt-5j-m21h-8MUvk,4530
53
54
  pyegeria/commands/ops/gov_server_actions.py,sha256=dKYdb2ImwohPjrGE9ufkIhXURhY9V9FnzUh84ycQhTg,5515
54
55
  pyegeria/commands/ops/list_catalog_targets.py,sha256=0FIZqZu7DSh7tnrme6EOhNiVvK8wyvN1iTZKEDuwTmw,6620
@@ -107,8 +108,8 @@ pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZi
107
108
  pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
108
109
  pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
109
110
  pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
110
- pyegeria-1.5.1.1.27.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
111
- pyegeria-1.5.1.1.27.dist-info/METADATA,sha256=1XfIJAcNr5vyNgl-PA-yk2cUaya31MqJOgCXYwdjhQA,2998
112
- pyegeria-1.5.1.1.27.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
113
- pyegeria-1.5.1.1.27.dist-info/entry_points.txt,sha256=49rVcJuuKXUSC-9ZNzr-ybsaUL-wm6xrUodCZeKJdGc,4898
114
- pyegeria-1.5.1.1.27.dist-info/RECORD,,
111
+ pyegeria-1.5.1.1.30.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
112
+ pyegeria-1.5.1.1.30.dist-info/METADATA,sha256=Cqo6dSTF7fBD0rvEQWgOeB8-u5htWV7pJb3um7xWqHM,2998
113
+ pyegeria-1.5.1.1.30.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
114
+ pyegeria-1.5.1.1.30.dist-info/entry_points.txt,sha256=YxEUUWKTrK3YStEbBqM6TD_UetgVKy5LYGWBnxnyNz0,4886
115
+ pyegeria-1.5.1.1.30.dist-info/RECORD,,
@@ -33,7 +33,7 @@ list_elements=pyegeria.commands.tech.list_elements:main
33
33
  list_elements_for_classification=pyegeria.commands.tech.list_elements_for_classification:main
34
34
  list_engine_activity=pyegeria.commands.ops.monitor_engine_activity:main_paging
35
35
  list_engine_activity_compressed=pyegeria.commands.ops.monitor_engine_activity_c:main_paging
36
- list_glossaries=pyegeria.commands.cat.glossary_actions:list_glossaries
36
+ list_glossaries=pyegeria.commands.cat.list_glossaries:main
37
37
  list_gov_action_processes=pyegeria.commands.tech.list_gov_action_processes:main
38
38
  list_gov_eng_status=pyegeria.commands.ops.monitor_gov_eng_status:main_paging
39
39
  list_integ_daemon_status=pyegeria.commands.ops.monitor_integ_daemon_status:main_paging