pyegeria 5.4.0.2__py3-none-any.whl → 5.4.0.4__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/list_collections.py +1 -0
- commands/cat/list_format_set.py +411 -0
- commands/cli/debug_log +0 -0
- commands/cli/egeria.py +46 -34
- commands/cli/egeria_cat.py +46 -33
- commands/cli/ops_config.py +1 -4
- md_processing/dr-egeria-outbox/DataStruct-2025-07-29-20-49-16.py +8 -0
- md_processing/dr-egeria-outbox/Mandy-DataStruct-2025-07-29-15-54-45.md +19 -0
- pyegeria/_exceptions_new.py +3 -5
- pyegeria/_output_formats.py +83 -19
- pyegeria/collection_manager_omvs.py +1 -1
- pyegeria/data_designer_omvs.py +29 -23
- pyegeria/load_config.py +31 -20
- pyegeria/logging_configuration.py +2 -2
- pyegeria/output_formatter.py +9 -2
- {pyegeria-5.4.0.2.dist-info → pyegeria-5.4.0.4.dist-info}/METADATA +1 -1
- {pyegeria-5.4.0.2.dist-info → pyegeria-5.4.0.4.dist-info}/RECORD +20 -16
- {pyegeria-5.4.0.2.dist-info → pyegeria-5.4.0.4.dist-info}/entry_points.txt +1 -0
- {pyegeria-5.4.0.2.dist-info → pyegeria-5.4.0.4.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.0.2.dist-info → pyegeria-5.4.0.4.dist-info}/WHEEL +0 -0
pyegeria/load_config.py
CHANGED
@@ -3,19 +3,29 @@
|
|
3
3
|
SPDX-License-Identifier: Apache-2.0
|
4
4
|
Copyright Contributors to the ODPi Egeria project.
|
5
5
|
|
6
|
-
This module
|
7
|
-
"""
|
8
|
-
import os
|
9
|
-
from loguru import logger
|
6
|
+
This module manages configuration information for pyegeria and pyegeria clients.
|
10
7
|
|
11
|
-
|
12
|
-
|
13
|
-
|
8
|
+
The load_app_config() function loads configuration information:
|
9
|
+
1) Default configuration variables are specified in the Dict structure below.
|
10
|
+
2) We construct a path to an external configuration JSON file from the Environment Variables
|
11
|
+
- PYEGERIA_ROOT_PATH
|
12
|
+
- PYEGERIA_CONFIG_FILE
|
13
|
+
3) If a valid configuration file is found, the configuration will be loaded on top of the default configuration.
|
14
|
+
4) We then update the in-memory configuration from Environment Variables, if set.
|
14
15
|
|
15
|
-
|
16
|
+
The result is that Environment Variable values take priority over configuration file values which override the defaults.
|
16
17
|
|
18
|
+
The get_app_config() function is used by other modules to get configuration information from the configuration structure
|
19
|
+
and makes it available as a dict.
|
20
|
+
|
21
|
+
"""
|
22
|
+
import inspect
|
17
23
|
import os
|
18
24
|
import json
|
25
|
+
from loguru import logger
|
26
|
+
from pyegeria._exceptions_new import PyegeriaInvalidParameterException
|
27
|
+
|
28
|
+
|
19
29
|
# from dotenv import load_dotenv # pip install python-dotenv if you use .env files
|
20
30
|
|
21
31
|
# --- Configuration Loading Logic ---
|
@@ -34,16 +44,13 @@ def load_app_config():
|
|
34
44
|
# Configuration already loaded, return existing instance
|
35
45
|
return _app_config
|
36
46
|
|
37
|
-
# 1. Load .env variables first if present (for local development)
|
38
|
-
# This ensures os.getenv can pick them up.
|
39
|
-
# load_dotenv()
|
40
47
|
|
41
48
|
# Define default configuration values
|
42
49
|
config = {
|
43
50
|
"Environment": {
|
44
51
|
"Console Width": 200,
|
45
|
-
"Dr.
|
46
|
-
"Dr.
|
52
|
+
"Dr.Egeria Inbox": "md_processing/dr-egeria-inbox",
|
53
|
+
"Dr.Egeria Outbox": "md_processing/dr-egeria-outbox",
|
47
54
|
"Egeria Engine Host URL": "",
|
48
55
|
"Egeria Engine Host": "qs-engine-host",
|
49
56
|
"Egeria Glossary Path": "glossary",
|
@@ -92,8 +99,6 @@ def load_app_config():
|
|
92
99
|
}
|
93
100
|
}
|
94
101
|
|
95
|
-
# 2. Load from a configuration file (e.g., config.json)
|
96
|
-
# This allows overriding defaults with file-based settings.
|
97
102
|
root_path = os.getenv("PYEGERIA_ROOT_PATH", config["Environment"].get("Pyegeria Root",""))
|
98
103
|
config_file = os.getenv("PYEGERIA_CONFIG_FILE", "config.json")
|
99
104
|
config_file_path = os.path.join(root_path,config_file)
|
@@ -107,9 +112,9 @@ def load_app_config():
|
|
107
112
|
print(f"Warning: Could not parse {config_file_path}. Using defaults/env vars.")
|
108
113
|
except Exception as e:
|
109
114
|
print(f"Warning: Error reading {config_file_path}: {e}. Using defaults/env vars.")
|
115
|
+
else:
|
116
|
+
logger.warning(f"Warning: Could not find {config_file_path}. Using defaults/env vars.")
|
110
117
|
|
111
|
-
# 3. Override with environment variables
|
112
|
-
# Environment variables take highest precedence.
|
113
118
|
debug = config["Debug"]
|
114
119
|
debug['debug_mode'] = os.getenv("PYEGERIA_DEBUG_MODE", debug.get("debug_mode", False))
|
115
120
|
debug["enable_logger_catch"] = os.getenv("PYEGERIA_ENABLE_LOGGER_CATCH", debug.get("enable_logger_catch", False))
|
@@ -118,9 +123,9 @@ def load_app_config():
|
|
118
123
|
env = config["Environment"]
|
119
124
|
env["Console Width"] = int(os.getenv("PYEGERIA_CONSOLE_WIDTH", env.get("EGERIA_WIDTH", 200)))
|
120
125
|
env["Dr.Egeria Inbox"] = os.getenv("DR_EGERIA_INBOX_PATH", env.get("Dr_EGERIA_INBOX",
|
121
|
-
"
|
126
|
+
"md_processing/dr-egeria-inbox"))
|
122
127
|
env["Dr.Egeria Outbox"] = os.getenv("DR_EGERIA_OUTBOX_PATH", env.get("DR_EGERIA_OUTBOX",
|
123
|
-
"
|
128
|
+
"md_processing/dr-egeria-outbox"))
|
124
129
|
env["Egeria Engine Host"] = os.getenv("EGERIA_ENGINE_HOST", env.get("Egeria Engine Host", "qs-engine-host"))
|
125
130
|
env["Egeria Engine Host URL"] = os.getenv("EGERIA_ENGINE_HOST_URL",env.get("Egeria Engine Host URL", "https://localhost:9443"))
|
126
131
|
|
@@ -144,7 +149,7 @@ def load_app_config():
|
|
144
149
|
log["console_logging_level"] = os.getenv("PYEGERIA_CONSOLE_LOG_LVL", log.get("console_logging_level", None))
|
145
150
|
log["enable_logging"] = os.getenv("PYEGERIA_ENABLE_LOGGING", log.get("enable_logging", False))
|
146
151
|
log["file_logging_level"] = os.getenv("PYEGERIA_FILE_LOG_LVL", log.get("file_logging_level","INFO"))
|
147
|
-
log["log_directory"] = os.getenv("PYEGERIA_LOG_DIRECTORY", log.get("log_directory",
|
152
|
+
log["log_directory"] = os.getenv("PYEGERIA_LOG_DIRECTORY", log.get("log_directory",'logs'))
|
148
153
|
log["logging_console_format"] = os.getenv("PYEGERIA_LOGGING_CONSOLE_FORMAT", log.get("logging_console_format",
|
149
154
|
" <green>{time:YYYY-MM-DD HH:mm:ss}</green> | <level>{level}</level> | "
|
150
155
|
"<cyan>{name}</cyan>:<cyan>{line}</cyan> - "
|
@@ -160,6 +165,12 @@ def load_app_config():
|
|
160
165
|
user["user_name"] = os.getenv("EGERIA_USER_NAME", "peterprofile")
|
161
166
|
user["user_pwd"] = os.getenv("EGERIA_USER_PASSWORD", "secret")
|
162
167
|
|
168
|
+
if not user.get("user_pwd"):
|
169
|
+
context: dict = {}
|
170
|
+
context['caller method'] = inspect.currentframe().f_back.f_code.co_name
|
171
|
+
additional_info: dict = {"reason": "Egeria user password is not found in the environment"}
|
172
|
+
raise PyegeriaInvalidParameterException(None, context, additional_info)
|
173
|
+
|
163
174
|
|
164
175
|
|
165
176
|
|
@@ -161,7 +161,7 @@ def config_logging():
|
|
161
161
|
|
162
162
|
# Get the directory for log files from the environment variable
|
163
163
|
log_app_settings = app_settings["Logging"]
|
164
|
-
log_directory = log_app_settings.get("log_directory","/
|
164
|
+
log_directory = log_app_settings.get("log_directory","/Users/dwolfson/localGit/egeria-v-3/egeria-python/logs")
|
165
165
|
console_logging_level = log_app_settings.get("console_logging_level","SUCCESS")
|
166
166
|
logging_console_format = log_app_settings.get("console_format","{time:YYYY-MM-DD HH:mm:ss} | {level} | {module}:{line}"
|
167
167
|
" - {message} - {extra}")
|
@@ -183,7 +183,7 @@ def config_logging():
|
|
183
183
|
logger.add(log_file_path,
|
184
184
|
level=file_logging_level,
|
185
185
|
format=logging_file_format,
|
186
|
-
filter = "
|
186
|
+
filter = "",
|
187
187
|
retention="7 days", # Keep logs for 7 days
|
188
188
|
rotation="10 MB", # rotate logs once they are 10mb
|
189
189
|
compression="zip")
|
pyegeria/output_formatter.py
CHANGED
@@ -4,12 +4,19 @@ from typing import Any, Callable, Dict, List, Optional, Tuple, Union
|
|
4
4
|
from pyegeria.utils import (camel_to_title_case)
|
5
5
|
from markdown_it import MarkdownIt
|
6
6
|
from rich.console import Console
|
7
|
+
from loguru import logger
|
7
8
|
|
8
9
|
from pyegeria.mermaid_utilities import construct_mermaid_web
|
10
|
+
from pyegeria._output_formats import select_output_format_set, MD_SEPARATOR
|
11
|
+
|
12
|
+
"""
|
13
|
+
Note on select_output_format_set function:
|
14
|
+
|
15
|
+
This function and related data structures have been moved back to _output_formats.py.
|
16
|
+
Please import select_output_format_set from pyegeria._output_formats instead of from this module.
|
17
|
+
"""
|
9
18
|
|
10
19
|
console = Console(width= 250)
|
11
|
-
# Constants
|
12
|
-
MD_SEPARATOR = "\n---\n\n"
|
13
20
|
|
14
21
|
|
15
22
|
def _extract_referenceable_properties(element: dict[str, Any]) -> dict[str, Any]:
|
@@ -14,13 +14,14 @@ commands/cat/glossary_actions.py,sha256=D-jeQ3YnsC7fYbMtUwlXLokvZygLNM1ITxfa-jxy
|
|
14
14
|
commands/cat/list_assets.py,sha256=CdJ2coKvvQv2VwJO0Sp9Eg9Fu_uvpC21tgjrdtT9Yz4,6315
|
15
15
|
commands/cat/list_categories.py,sha256=DTKE3yrt3N2EIjCGscxrz-pSREqmch7aFqsVFm-3u7o,7841
|
16
16
|
commands/cat/list_cert_types.py,sha256=HmrTks0SSYgSMsYz3LqfX5kwDQ6D9KMcynoR_xlWtnE,7137
|
17
|
-
commands/cat/list_collections.py,sha256=
|
17
|
+
commands/cat/list_collections.py,sha256=O2jPyAWHv0Uy0TvtE7eYfK3AasH0CZaCTBSNtIgvjc0,9027
|
18
18
|
commands/cat/list_data_designer.py,sha256=Bpix52CVdV1xZFo-07N8W30vdoDcHYT91jKVRTxQgQ0,6720
|
19
19
|
commands/cat/list_data_structures_full.py,sha256=E9PY_AU1lzGSqUwy711Bjd5uMfV41kpmNPzhdf0nZjs,8642
|
20
20
|
commands/cat/list_deployed_catalogs.py,sha256=VdN6R9kRVWX-fGIgubOigvMVPzhF-hKQepHHlS-w-D8,8258
|
21
21
|
commands/cat/list_deployed_database_schemas.py,sha256=1Qicke1R2_7Xi3Qf5sp8KJ3_reAIt0z1iaz2sG8Z0Qs,9458
|
22
22
|
commands/cat/list_deployed_databases.py,sha256=ryrBW1CxJRfOeLP978qQwxb5oImqhIsHghtcpWeBIrw,7587
|
23
23
|
commands/cat/list_deployed_servers.py,sha256=_xR7EaaCsxIjTphxmoCZlARoja_vQqZ881pFiEuhw-8,5719
|
24
|
+
commands/cat/list_format_set.py,sha256=5rnxFidIJArJkSXOsPuUROi781g9k7hj6rIS78LCFJY,16922
|
24
25
|
commands/cat/list_glossaries.py,sha256=pKJdiRMrSBpmPv0yOWoR_CdGZP06MuxfPGwCXc-kSQw,7666
|
25
26
|
commands/cat/list_projects.py,sha256=NzWTuepTGUEyxK-eWvuUxtBgCtNWubVwmz2eqm2UN1c,7997
|
26
27
|
commands/cat/list_tech_type_elements.py,sha256=-9omj5en9dSP1xMSljYVHyfXsuhuE1bO2IFj_bZPhAs,6873
|
@@ -29,13 +30,14 @@ commands/cat/list_terms.py,sha256=ndl99V6NbJtlV3xqIGWhif1R8tW6emEVYYos0dkydwE,12
|
|
29
30
|
commands/cat/list_todos.py,sha256=NitCw0uyVVjmN1hxb1W-I4FbOsa8wQxW2ICyOElHyc8,6556
|
30
31
|
commands/cat/list_user_ids.py,sha256=X5Q-YNEp38saPYDuy9VwdQC5Qpa4HyC3WvAdbyp_P6M,5108
|
31
32
|
commands/cli/__init__.py,sha256=E6vPW3P3iuVPyrwtDIWvU9P0JXOGqP8KupeIZdxc6wc,298
|
32
|
-
commands/cli/
|
33
|
-
commands/cli/
|
33
|
+
commands/cli/debug_log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
|
+
commands/cli/egeria.py,sha256=W_hz0eIo984T1gY1NzkekI-J-sozTHaEOD8-0xhBr1c,52245
|
35
|
+
commands/cli/egeria_cat.py,sha256=PnFSDaCl5ntXL1qIuA-e-p2GqsvkN5ykua07u4Xsu7Y,18341
|
34
36
|
commands/cli/egeria_login_tui.py,sha256=bh9MvJcZPpixXkEtWh_4NK4YcRdeHSVDUBTIhQncSyY,9498
|
35
37
|
commands/cli/egeria_my.py,sha256=pWFgznhBs34a6ldRExAFGmZ7K-wBYqjTUfvdUtPq_uc,6349
|
36
38
|
commands/cli/egeria_ops.py,sha256=0cjvlNj1hbilQ17aIx2OrQgQzhVzGiCPlz4f7XdP1t8,12519
|
37
39
|
commands/cli/egeria_tech.py,sha256=etLJOEzO7UQyfY8aRcmXqoYvh_fdi5CGtT9X6KEW8p0,20995
|
38
|
-
commands/cli/ops_config.py,sha256=
|
40
|
+
commands/cli/ops_config.py,sha256=kEySXDU8eqfGWtjt8e9089rJkGPkPQQTeTHhW3Yeczs,1363
|
39
41
|
commands/cli/txt_custom_v2.tcss,sha256=ixkzpFyTZ5i3byFO9EmEAeJgzbEa7nZb_3iTgxNtVPk,232
|
40
42
|
commands/my/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
|
41
43
|
commands/my/__init__.py,sha256=0O3kDAlDfx7ohSg_5tZt55B4B3UItgE0noROQLCIUxs,449
|
@@ -97,6 +99,8 @@ commands/tech/x_list_related_elements.py,sha256=ynaw792VnbMZ9IXBi5mmG7xBfC0kn0es
|
|
97
99
|
md_processing/__init__.py,sha256=Z1nnPovPro70uO_KQNNmMZZsVry37CjnAWHQMIAbCa4,6857
|
98
100
|
md_processing/data/commands-working.json,sha256=uCo_azcuuYqGm7QffJeCGj7PyZuZRGdu7kKf4XWmMoA,1162560
|
99
101
|
md_processing/data/commands.json,sha256=qywJWX4vfZIq2LzcucY0kI5R-59HiMk6B6DQNo9TynQ,1162918
|
102
|
+
md_processing/dr-egeria-outbox/DataStruct-2025-07-29-20-49-16.py,sha256=tB4usD68FAAUNI_sO0VcZ3-vuW4K6fgJaBWfQIrMAac,319
|
103
|
+
md_processing/dr-egeria-outbox/Mandy-DataStruct-2025-07-29-15-54-45.md,sha256=y04ByuucQBMmp4EtfuHplERxGrCij2qju5MYo8iGvNA,556
|
100
104
|
md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb,sha256=dbzNu90fCKNohOWVSRBOB1GLyd95x8Qw51I5AkaPtso,11552
|
101
105
|
md_processing/family_docs/Data Designer/Create_Data_Class.md,sha256=eC6JxHiK_uPnUgqCbu4AN8hPWpddlvch_7j1tb8k_B8,3561
|
102
106
|
md_processing/family_docs/Data Designer/Create_Data_Dictionary.md,sha256=VVWXQFWJgprYtRTvnDUu--S2mSTNDWu3kSED8U2WnR4,782
|
@@ -186,17 +190,17 @@ pyegeria/_client.py,sha256=hJHn5pD8sbelP_M9dK-M5Z2CYqpRXzXfg1UCgAdQ6dQ,33416
|
|
186
190
|
pyegeria/_client_new.py,sha256=T7nX4WpPM33G_O1lZoZYu1Bpa2-bb5ys0H1oC-sA5OM,27537
|
187
191
|
pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
|
188
192
|
pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
|
189
|
-
pyegeria/_exceptions_new.py,sha256=
|
193
|
+
pyegeria/_exceptions_new.py,sha256=7r3aHVEn-liKEb5rpZGnvUQno7soPBKOpf7Q4zhdUsw,16770
|
190
194
|
pyegeria/_globals.py,sha256=qSU5hM4uuJZPp-YapEEKxfcdgH9hauc6R7gRkELLroY,1132
|
191
|
-
pyegeria/_output_formats.py,sha256=
|
195
|
+
pyegeria/_output_formats.py,sha256=heykHYxpp8zsV8Nu8IpUXmOMtjTuZCrpr5PA5dQhx0M,10835
|
192
196
|
pyegeria/_validators.py,sha256=pNxND0dN2qvyuGE52N74l1Ezfrh2p9Hao2ziR_t1ENI,7425
|
193
197
|
pyegeria/asset_catalog_omvs.py,sha256=P6FceMP0FgakGSOt3ePxpEbsF7nnypzo1aQahjdL_94,29021
|
194
198
|
pyegeria/automated_curation_omvs.py,sha256=tzwCyXL0Hx8UjryBBWcPoEuBRajXZpLuwPQ1vuOg2yc,130349
|
195
199
|
pyegeria/classification_manager_omvs.py,sha256=EBWjdx_C999bRu2-INL8RZxZ-wz92mzVqVBQ6mkyGM0,187228
|
196
|
-
pyegeria/collection_manager_omvs.py,sha256=
|
200
|
+
pyegeria/collection_manager_omvs.py,sha256=qpeWdHHGgmZOi3tLRQLL1w3tXa0sG-AzTr_TFsJ-rBo,285442
|
197
201
|
pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
|
198
202
|
pyegeria/create_tech_guid_lists.py,sha256=hf5q8Xrdsz-bqeIW3yTORZ1XB6_BrKzLDWWwC_bNG2g,4811
|
199
|
-
pyegeria/data_designer_omvs.py,sha256=
|
203
|
+
pyegeria/data_designer_omvs.py,sha256=nYjy4Xzs0bkDLZONqSbwHKck5a-tzDLdINxCktWQId0,205899
|
200
204
|
pyegeria/dr.egeria spec.md,sha256=QC_z3EqJ0WW18NYQFW_AtqO4SMWH5MJNVmM--54VzX4,959
|
201
205
|
pyegeria/egeria_cat_client.py,sha256=d8dQNPLzL4efi99OJfH1T-Rt1N0k9Rf9LX8LpuhiFls,2179
|
202
206
|
pyegeria/egeria_client.py,sha256=egGv41eb94P_lWIQ54I_90WT_IukJ_J6ZLOYCHpx2js,4676
|
@@ -208,15 +212,15 @@ pyegeria/full_omag_server_config.py,sha256=CQqLCy_3DZFvJZEOcGf50HWdFaWpiAIs6z-kK
|
|
208
212
|
pyegeria/glossary_browser_omvs.py,sha256=Jb2Tt2qNjnoWQNBDMdZiuQffH6nC4lKekZNEJCiW5BE,166966
|
209
213
|
pyegeria/glossary_manager_omvs.py,sha256=vXHlBuJxUIAkSI7OKbYcspmcfxxX-L7oe5J0AiEefVI,87991
|
210
214
|
pyegeria/governance_officer_omvs.py,sha256=14UnC-fS5LUsWzx-RuzUX_ZNVxldqvVSvZFvJDv980I,91580
|
211
|
-
pyegeria/load_config.py,sha256=
|
212
|
-
pyegeria/logging_configuration.py,sha256=
|
215
|
+
pyegeria/load_config.py,sha256=rFI4aywGhQ0d-4_brbVfugbTB0UrshSV3NrU-GJv25o,11623
|
216
|
+
pyegeria/logging_configuration.py,sha256=W-J2x5dQb6WETMpOtGq5GCghNENX5W1ClpeZTebGJCI,7933
|
213
217
|
pyegeria/md_processing_helpers.py,sha256=xlQuK5eP_PJqUdy4BScQ97NyBD95jMS3EUg0wK5CsZo,2137
|
214
218
|
pyegeria/md_processing_utils.py,sha256=KRESCqAYjCgHRAdhHH49lLDDhaq740CUlqTG0bN-6Oo,99119
|
215
219
|
pyegeria/md_processing_utils_orig.py,sha256=SToZtXQiysi2_vmIY4-T2NIELRirzQ1zjkho_2jFsNE,52603
|
216
220
|
pyegeria/mermaid_utilities.py,sha256=Zcn8JRrqtf62oHoxuvP9tQ5G-BFxOGMNfr7-peuykgY,54290
|
217
221
|
pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
|
218
222
|
pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
|
219
|
-
pyegeria/output_formatter.py,sha256=
|
223
|
+
pyegeria/output_formatter.py,sha256=Mro8Abb5r97HcJgIMgFeZ86SRS6gbWjFg_4ITjSMCgM,25859
|
220
224
|
pyegeria/platform_services.py,sha256=YEpZsGGsbSdesN8ceyFhV0OMzKG6znTZrREMTRimLps,41701
|
221
225
|
pyegeria/project_manager_omvs.py,sha256=612rYbu2eLR8Sgv9nBzjkFJ2PuxIBd_b-zwcnpVbXhc,70665
|
222
226
|
pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
|
@@ -227,8 +231,8 @@ pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDT
|
|
227
231
|
pyegeria/utils.py,sha256=CAh8LItgmGf5UHIYeYAOE4roHg1wuBk3zQ1lxK7lcZA,6805
|
228
232
|
pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
|
229
233
|
pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
|
230
|
-
pyegeria-5.4.0.
|
231
|
-
pyegeria-5.4.0.
|
232
|
-
pyegeria-5.4.0.
|
233
|
-
pyegeria-5.4.0.
|
234
|
-
pyegeria-5.4.0.
|
234
|
+
pyegeria-5.4.0.4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
235
|
+
pyegeria-5.4.0.4.dist-info/METADATA,sha256=5slNkjURWss0RYyeI7BSIGTQfuPNKrjZC41Po_gh7KA,2922
|
236
|
+
pyegeria-5.4.0.4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
237
|
+
pyegeria-5.4.0.4.dist-info/entry_points.txt,sha256=HAS-LHaaBfkaZ19XU9g5mXwn2uj2HK99isdijI-VIDk,6353
|
238
|
+
pyegeria-5.4.0.4.dist-info/RECORD,,
|
@@ -54,6 +54,7 @@ list_elements_for_classification=commands.tech.list_elements_for_classification:
|
|
54
54
|
list_elements_x=commands.tech.list_all_om_type_elements_x:main
|
55
55
|
list_engine_activity=commands.ops.monitor_engine_activity:main_paging
|
56
56
|
list_engine_activity_compressed=commands.ops.monitor_engine_activity_c:main_paging
|
57
|
+
list_format_set=commands.cat.list_format_set:main
|
57
58
|
list_glossaries=commands.cat.list_glossaries:main
|
58
59
|
list_gov_action_processes=commands.tech.list_gov_action_processes:main
|
59
60
|
list_gov_eng_status=commands.ops.monitor_gov_eng_status:main_paging
|
File without changes
|
File without changes
|