pyegeria 5.4.0.26__py3-none-any.whl → 5.4.0.27__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/debug_log +868 -7794
- commands/cat/debug_log.2025-08-18_11-34-38_088636.zip +0 -0
- commands/cat/list_collections.py +1 -1
- commands/cat/list_format_set.py +6 -8
- commands/cli/egeria.py +2 -2
- commands/cli/egeria_cat.py +3 -2
- commands/ops/load_archive.py +2 -2
- md_processing/data/commands.json +7 -7
- md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md +7 -7
- md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md +36 -31
- md_processing/dr_egeria_outbox/friday/processed-2025-08-22 21:22-dr_egeria_intro_part1.md +312 -0
- md_processing/dr_egeria_outbox/friday/processed-2025-08-22 21:23-dr_egeria_intro_part1.md +265 -0
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 15:06-dr_egeria_intro_part1.md +230 -0
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 15:30-dr_egeria_intro_part1.md +296 -0
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 15:31-dr_egeria_intro_part1.md +253 -0
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 16:08-dr_egeria_intro_part2.md +343 -0
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 16:12-dr_egeria_intro_part2.md +343 -0
- md_processing/md_commands/glossary_commands.py +888 -951
- md_processing/md_commands/product_manager_commands.py +8 -270
- md_processing/md_commands/project_commands.py +1 -1
- md_processing/md_processing_utils/common_md_proc_utils.py +138 -64
- md_processing/md_processing_utils/common_md_utils.py +2 -1
- pyegeria/__init__.py +2 -3
- pyegeria/_client_new.py +4 -3
- pyegeria/_output_formats.py +5 -3
- pyegeria/collection_manager.py +31 -28
- pyegeria/{load_config.py → config.py} +7 -2
- pyegeria/data_designer.py +154 -194
- pyegeria/egeria_cat_client.py +46 -28
- pyegeria/egeria_client.py +71 -72
- pyegeria/egeria_config_client.py +37 -7
- pyegeria/egeria_my_client.py +45 -10
- pyegeria/egeria_tech_client.py +68 -57
- pyegeria/glossary_manager.py +494 -122
- pyegeria/governance_officer.py +2 -2
- pyegeria/logging_configuration.py +1 -4
- pyegeria/models.py +1 -1
- pyegeria/project_manager.py +358 -509
- pyegeria/utils.py +1 -3
- {pyegeria-5.4.0.26.dist-info → pyegeria-5.4.0.27.dist-info}/METADATA +1 -1
- {pyegeria-5.4.0.26.dist-info → pyegeria-5.4.0.27.dist-info}/RECORD +44 -38
- md_processing/md_processing_utils/solution_architect_log.log +0 -0
- pyegeria/glossary_browser.py +0 -1259
- {pyegeria-5.4.0.26.dist-info → pyegeria-5.4.0.27.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.0.26.dist-info → pyegeria-5.4.0.27.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.0.26.dist-info → pyegeria-5.4.0.27.dist-info}/entry_points.txt +0 -0
pyegeria/governance_officer.py
CHANGED
@@ -28,7 +28,7 @@ from pyegeria._output_formats import select_output_format_set, get_output_format
|
|
28
28
|
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
|
29
29
|
from pyegeria._exceptions_new import PyegeriaInvalidParameterException
|
30
30
|
from pyegeria._globals import NO_GUID_RETURNED
|
31
|
-
from pyegeria.
|
31
|
+
from pyegeria.config import settings as app_settings
|
32
32
|
from pyegeria.models import (SearchStringRequestBody, FilterRequestBody, NewElementRequestBody,
|
33
33
|
ReferenceableProperties, TemplateRequestBody,
|
34
34
|
UpdateElementRequestBody, UpdateStatusRequestBody, NewRelationshipRequestBody,
|
@@ -45,7 +45,7 @@ GOV_BASIC_TYPES = ["BusinessImperative", "RegulationArticle", "Threat", "Governa
|
|
45
45
|
"GovernanceApproach", "GovernanceProcessingPurpose"]
|
46
46
|
|
47
47
|
|
48
|
-
|
48
|
+
|
49
49
|
EGERIA_LOCAL_QUALIFIER = app_settings.User_Profile.egeria_local_qualifier
|
50
50
|
DEFAULT_BODY_SKELETON = {
|
51
51
|
"effective_time": None, "limitResultsByStatus": ["ACTIVE"], "asOfTime": None, "sequencingOrder": None,
|
@@ -131,10 +131,7 @@ To suppress logging, an application can do the following:
|
|
131
131
|
# application.py (Scenario A: App uses Loguru)
|
132
132
|
import os, sys
|
133
133
|
from loguru import logger
|
134
|
-
from pyegeria.load_config import
|
135
|
-
|
136
|
-
# Load configuration parameters
|
137
|
-
app_settings = get_app_config()
|
134
|
+
from pyegeria.load_config import settings as app_settings
|
138
135
|
|
139
136
|
def console_log_filter(record):
|
140
137
|
if len(record["module"]) > 0:
|
pyegeria/models.py
CHANGED
@@ -333,7 +333,7 @@ class UpdateElementRequestBody(PyegeriaModel):
|
|
333
333
|
|
334
334
|
class UpdateStatusRequestBody(PyegeriaModel):
|
335
335
|
class_: Annotated[Literal["UpdateStatusRequestBody"], Field(alias="class")]
|
336
|
-
|
336
|
+
new_status: str
|
337
337
|
external_source_guid: str | None = None
|
338
338
|
external_source_name: str | None = None
|
339
339
|
effective_time: datetime | None = None
|