pyegeria 5.4.0.25__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.
Files changed (52) hide show
  1. commands/cat/debug_log +868 -7794
  2. commands/cat/debug_log.2025-08-18_11-34-38_088636.zip +0 -0
  3. commands/cat/list_collections.py +1 -1
  4. commands/cat/list_format_set.py +6 -8
  5. commands/cli/egeria.py +2 -2
  6. commands/cli/egeria_cat.py +3 -2
  7. commands/ops/load_archive.py +2 -2
  8. md_processing/data/commands.json +7 -7
  9. md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md +7 -7
  10. md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md +36 -31
  11. md_processing/dr_egeria_outbox/friday/processed-2025-08-22 21:22-dr_egeria_intro_part1.md +312 -0
  12. md_processing/dr_egeria_outbox/friday/processed-2025-08-22 21:23-dr_egeria_intro_part1.md +265 -0
  13. md_processing/dr_egeria_outbox/friday/processed-2025-08-23 15:06-dr_egeria_intro_part1.md +230 -0
  14. md_processing/dr_egeria_outbox/friday/processed-2025-08-23 15:30-dr_egeria_intro_part1.md +296 -0
  15. md_processing/dr_egeria_outbox/friday/processed-2025-08-23 15:31-dr_egeria_intro_part1.md +253 -0
  16. md_processing/dr_egeria_outbox/friday/processed-2025-08-23 16:08-dr_egeria_intro_part2.md +343 -0
  17. md_processing/dr_egeria_outbox/friday/processed-2025-08-23 16:12-dr_egeria_intro_part2.md +343 -0
  18. md_processing/md_commands/glossary_commands.py +888 -951
  19. md_processing/md_commands/product_manager_commands.py +8 -270
  20. md_processing/md_commands/project_commands.py +1 -1
  21. md_processing/md_processing_utils/common_md_proc_utils.py +138 -64
  22. md_processing/md_processing_utils/common_md_utils.py +2 -1
  23. pyegeria/__init__.py +5 -302
  24. pyegeria/_client_new.py +5 -4
  25. pyegeria/_output_formats.py +23 -3
  26. pyegeria/collection_manager.py +31 -28
  27. pyegeria/{load_config.py → config.py} +7 -2
  28. pyegeria/data_designer.py +154 -194
  29. pyegeria/egeria_cat_client.py +48 -30
  30. pyegeria/egeria_client.py +74 -75
  31. pyegeria/egeria_config_client.py +37 -7
  32. pyegeria/egeria_my_client.py +45 -10
  33. pyegeria/egeria_tech_client.py +69 -58
  34. pyegeria/glossary_manager.py +494 -122
  35. pyegeria/governance_officer.py +2 -2
  36. pyegeria/logging_configuration.py +1 -4
  37. pyegeria/models.py +1 -1
  38. pyegeria/project_manager.py +381 -741
  39. pyegeria/solution_architect_omvs.py +1 -1
  40. pyegeria/utils.py +1 -3
  41. {pyegeria-5.4.0.25.dist-info → pyegeria-5.4.0.27.dist-info}/METADATA +1 -1
  42. {pyegeria-5.4.0.25.dist-info → pyegeria-5.4.0.27.dist-info}/RECORD +45 -44
  43. commands/cat/debug_log.2025-08-15_09-14-07_444802.zip +0 -0
  44. commands/cat/debug_log.2025-08-16_10-21-59_388912.zip +0 -0
  45. commands/cat/debug_log.2025-08-17_11-34-27_981852.zip +0 -0
  46. md_processing/md_processing_utils/solution_architect_log.log +0 -0
  47. pyegeria/collection_manager_omvs.py +0 -6541
  48. pyegeria/glossary_browser.py +0 -1259
  49. pyegeria/project_manager_omvs.py +0 -1933
  50. {pyegeria-5.4.0.25.dist-info → pyegeria-5.4.0.27.dist-info}/LICENSE +0 -0
  51. {pyegeria-5.4.0.25.dist-info → pyegeria-5.4.0.27.dist-info}/WHEEL +0 -0
  52. {pyegeria-5.4.0.25.dist-info → pyegeria-5.4.0.27.dist-info}/entry_points.txt +0 -0
@@ -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.load_config import get_app_config
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
- app_settings = get_app_config()
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 get_app_config
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
- status: str
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