pyegeria 5.4.7.2__tar.gz → 5.4.7.4__tar.gz

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 (254) hide show
  1. {pyegeria-5.4.7.2/pyegeria.egg-info → pyegeria-5.4.7.4}/PKG-INFO +1 -1
  2. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/dr_egeria_md.py +1 -1
  3. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_format_set.py +6 -1
  4. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/list_catalog_targets.py +17 -14
  5. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/monitor_engine_activity.py +1 -1
  6. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/monitor_engine_activity_c.py +1 -1
  7. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_gov_action_processes.py +4 -8
  8. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/dr_egeria.py +1 -1
  9. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_commands/ext_ref_commands.py +1 -2
  10. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_commands/glossary_commands.py +1 -2
  11. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_commands/project_commands.py +1 -2
  12. pyegeria-5.4.7.4/pyegeria/__init__.py +99 -0
  13. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/_client_new.py +422 -13
  14. pyegeria-5.4.7.2/pyegeria/__init__.py → pyegeria-5.4.7.4/pyegeria/_globals.py +39 -87
  15. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/_output_formats.py +1 -1
  16. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/asset_catalog_omvs.py +1 -1
  17. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/automated_curation.py +33 -92
  18. pyegeria-5.4.7.4/pyegeria/classification_manager.py +5636 -0
  19. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/classification_manager_omvs.py +1989 -1853
  20. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/collection_manager.py +16 -4
  21. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/data_designer.py +1 -2
  22. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/egeria_tech_client.py +3 -0
  23. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/external_references.py +2 -2
  24. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/format_set_executor.py +8 -9
  25. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/full_omag_server_config.py +1 -1
  26. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/glossary_manager.py +2 -2
  27. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/mcp_adapter.py +1 -1
  28. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/mcp_server.py +36 -21
  29. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/md_processing_utils.py +3 -3
  30. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/md_processing_utils_orig.py +3 -3
  31. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/mermaid_utilities.py +0 -152
  32. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/models.py +5 -0
  33. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/output_formatter.py +1 -1
  34. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/runtime_manager_omvs.py +1 -1
  35. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/solution_architect.py +1 -1
  36. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4/pyegeria.egg-info}/PKG-INFO +1 -1
  37. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria.egg-info/SOURCES.txt +1 -1
  38. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyproject.toml +1 -1
  39. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_automated_curation_omvs.py +15 -17
  40. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_classification_manager_omvs.py +146 -93
  41. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_collection_manager_omvs.py +17 -12
  42. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_governance_officer_omvs.py +1 -1
  43. pyegeria-5.4.7.2/pyegeria/_globals.py +0 -49
  44. pyegeria-5.4.7.2/pyegeria/md_processing_helpers.py +0 -58
  45. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/LICENSE +0 -0
  46. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/MANIFEST.in +0 -0
  47. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/README.md +0 -0
  48. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/__init__.py +0 -0
  49. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/Dr-Egeria_md-orig.py +0 -0
  50. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/__init__.py +0 -0
  51. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/dr_egeria_command_help.py +0 -0
  52. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/dr_egeria_jupyter.py +0 -0
  53. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/exp_list_glossaries.py +0 -0
  54. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/get_asset_graph.py +0 -0
  55. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/get_collection.py +0 -0
  56. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/get_project_dependencies.py +0 -0
  57. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/get_project_structure.py +0 -0
  58. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/get_tech_type_elements.py +0 -0
  59. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/glossary_actions.py +0 -0
  60. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_assets.py +0 -0
  61. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_cert_types.py +0 -0
  62. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_collections.py +0 -0
  63. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_data_designer.py +0 -0
  64. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_data_structures_full.py +0 -0
  65. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_deployed_catalogs.py +0 -0
  66. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_deployed_database_schemas.py +0 -0
  67. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_deployed_databases.py +0 -0
  68. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_deployed_servers.py +0 -0
  69. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_glossaries.py +0 -0
  70. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_projects.py +0 -0
  71. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_tech_type_elements.py +0 -0
  72. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_tech_types.py +0 -0
  73. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_terms.py +0 -0
  74. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_todos.py +0 -0
  75. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cat/list_user_ids.py +0 -0
  76. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cli/__init__.py +0 -0
  77. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cli/egeria.py +0 -0
  78. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cli/egeria_cat.py +0 -0
  79. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cli/egeria_login_tui.py +0 -0
  80. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cli/egeria_my.py +0 -0
  81. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cli/egeria_ops.py +0 -0
  82. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cli/egeria_tech.py +0 -0
  83. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/cli/ops_config.py +0 -0
  84. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/my/__init__.py +0 -0
  85. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/my/list_my_profile.py +0 -0
  86. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/my/list_my_roles.py +0 -0
  87. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/my/monitor_my_todos.py +0 -0
  88. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/my/monitor_open_todos.py +0 -0
  89. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/my/todo_actions.py +0 -0
  90. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/__init__.py +0 -0
  91. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/gov_server_actions.py +0 -0
  92. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/list_archives.py +0 -0
  93. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/load_archive.py +0 -0
  94. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/monitor_asset_events.py +0 -0
  95. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/monitor_gov_eng_status.py +0 -0
  96. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/monitor_integ_daemon_status.py +0 -0
  97. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/monitor_platform_status.py +0 -0
  98. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/monitor_server_startup.py +0 -0
  99. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/monitor_server_status.py +0 -0
  100. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/orig_monitor_server_list.py +0 -0
  101. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/orig_monitor_server_status.py +0 -0
  102. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/refresh_integration_daemon.py +0 -0
  103. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/restart_integration_daemon.py +0 -0
  104. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/table_integ_daemon_status.py +0 -0
  105. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/ops/x_engine_actions.py +0 -0
  106. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/__init__.py +0 -0
  107. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/generic_actions.py +0 -0
  108. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/get_element_info.py +0 -0
  109. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/get_guid_info.py +0 -0
  110. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/get_tech_details.py +0 -0
  111. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/get_tech_type_template.py +0 -0
  112. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_all_om_type_elements.py +0 -0
  113. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_all_om_type_elements_x.py +0 -0
  114. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_all_related_elements.py +0 -0
  115. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_anchored_elements.py +0 -0
  116. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_asset_types.py +0 -0
  117. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_elements_by_classification_by_property_value.py +0 -0
  118. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_elements_by_property_value.py +0 -0
  119. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_elements_by_property_value_x.py +0 -0
  120. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_elements_for_classification.py +0 -0
  121. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_information_supply_chains.py +0 -0
  122. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_registered_services.py +0 -0
  123. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_related_elements_with_prop_value.py +0 -0
  124. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_related_specification.py +0 -0
  125. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_relationship_types.py +0 -0
  126. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_relationships.py +0 -0
  127. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_solution_blueprints.py +0 -0
  128. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_solution_components.py +0 -0
  129. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_solution_roles.py +0 -0
  130. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_tech_templates.py +0 -0
  131. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/list_valid_metadata_values.py +0 -0
  132. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/table_tech_templates.py +0 -0
  133. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/commands/tech/x_list_related_elements.py +0 -0
  134. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/README.md +0 -0
  135. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/__init__.py +0 -0
  136. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_cocoMDS1.py +0 -0
  137. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_cocoMDS2.py +0 -0
  138. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_cocoMDS3.py +0 -0
  139. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_cocoMDS4.py +0 -0
  140. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_cocoMDS5.py +0 -0
  141. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_cocoMDS6.py +0 -0
  142. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_cocoMDSx.py +0 -0
  143. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_cocoView1.py +0 -0
  144. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_coco_core.py +0 -0
  145. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_coco_datalake.py +0 -0
  146. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_exchangeDL01.py +0 -0
  147. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_governDL01.py +0 -0
  148. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_monitorDev01.py +0 -0
  149. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/config_monitorGov01.py +0 -0
  150. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Coco_config/globals.py +0 -0
  151. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/GeoSpatial Products Example.py +0 -0
  152. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Jupyter Notebooks/P-egeria-server-config.ipynb +0 -0
  153. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Jupyter Notebooks/README.md +0 -0
  154. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Jupyter Notebooks/common/P-environment-check.ipynb +0 -0
  155. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Jupyter Notebooks/common/__init__.py +0 -0
  156. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Jupyter Notebooks/common/common-functions.ipynb +0 -0
  157. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Jupyter Notebooks/common/environment-check.ipynb +0 -0
  158. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Jupyter Notebooks/common/globals.ipynb +0 -0
  159. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Jupyter Notebooks/common/globals.py +0 -0
  160. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/Jupyter Notebooks/common/orig_globals.py +0 -0
  161. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/format_sets/all_format_sets.json +0 -0
  162. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/format_sets/custom_format_sets.json +0 -0
  163. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/format_sets/subset_format_sets.json +0 -0
  164. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/format_sets_save_load_example.py +0 -0
  165. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/examples/output_formats_example.py +0 -0
  166. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/__init__.py +0 -0
  167. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/data/commands-working.json +0 -0
  168. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/data/commands.json +0 -0
  169. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/data/generated_format_sets.json +0 -0
  170. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/data/generated_format_sets.py +0 -0
  171. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_commands/__init__.py +0 -0
  172. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_commands/data_designer_commands.py +0 -0
  173. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_commands/governance_officer_commands.py +0 -0
  174. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_commands/product_manager_commands.py +0 -0
  175. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_commands/solution_architect_commands.py +0 -0
  176. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_commands/view_commands.py +0 -0
  177. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/__init__.py +0 -0
  178. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/common_md_proc_utils.py +0 -0
  179. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/common_md_utils.py +0 -0
  180. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/determine_width.py +0 -0
  181. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/extraction_utils.py +0 -0
  182. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/gen_format_sets.py +0 -0
  183. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/generate_dr_help.py +0 -0
  184. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/generate_md_cmd_templates.py +0 -0
  185. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/generate_md_templates.py +0 -0
  186. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/md_processing_constants.py +0 -0
  187. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/md_processing/md_processing_utils/message_constants.py +0 -0
  188. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/_client.py +0 -0
  189. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/_deprecated_gov_engine.py +0 -0
  190. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/_exceptions.py +0 -0
  191. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/_exceptions_new.py +0 -0
  192. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/_output_format_models.py +0 -0
  193. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/_validators.py +0 -0
  194. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/collection_models.py +0 -0
  195. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/config.py +0 -0
  196. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/core_omag_server_config.py +0 -0
  197. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/create_tech_guid_lists.py +0 -0
  198. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/egeria_cat_client.py +0 -0
  199. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/egeria_client.py +0 -0
  200. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/egeria_config_client.py +0 -0
  201. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/egeria_my_client.py +0 -0
  202. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/feedback_manager_omvs.py +0 -0
  203. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/governance_officer.py +0 -0
  204. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/load_config.py +0 -0
  205. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/logging_configuration.py +0 -0
  206. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/metadata_explorer_omvs.py +0 -0
  207. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/my_profile_omvs.py +0 -0
  208. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/platform_services.py +0 -0
  209. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/project_manager.py +0 -0
  210. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/reference_data.py +0 -0
  211. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/registered_info.py +0 -0
  212. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/server_operations.py +0 -0
  213. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/template_manager_omvs.py +0 -0
  214. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/utils.py +0 -0
  215. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/valid_metadata_omvs.py +0 -0
  216. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria/x_action_author_omvs.py +0 -0
  217. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria.egg-info/dependency_links.txt +0 -0
  218. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria.egg-info/entry_points.txt +0 -0
  219. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria.egg-info/requires.txt +0 -0
  220. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/pyegeria.egg-info/top_level.txt +0 -0
  221. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/setup.cfg +0 -0
  222. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_asset_catalog_omvs.py +0 -0
  223. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_client.py +0 -0
  224. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_config.py +0 -0
  225. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_config_unit.py +0 -0
  226. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_core_omag_server_config.py +0 -0
  227. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_data_designer.py +0 -0
  228. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_dr_egeria_command_help_modes.py +0 -0
  229. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_egeria_cat_client.py +0 -0
  230. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_egeria_client.py +0 -0
  231. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_egeria_my_client.py +0 -0
  232. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_env_settings.py +0 -0
  233. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_external_references.py +0 -0
  234. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_feedback_manager_omvs.py +0 -0
  235. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_format_set_dict.py +0 -0
  236. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_full_omag_server_config.py +0 -0
  237. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_glossary_manager_omvs.py +0 -0
  238. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_load_config.py +0 -0
  239. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_mcp_adapter.py +0 -0
  240. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_metadata_explorer_omvs.py +0 -0
  241. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_my_profile_omvs.py +0 -0
  242. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_output_format_models_unit.py +0 -0
  243. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_output_format_sets_unit.py +0 -0
  244. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_output_formats.py +0 -0
  245. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_platform_services.py +0 -0
  246. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_project_manager_omvs.py +0 -0
  247. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_reference_data.py +0 -0
  248. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_registered_info.py +0 -0
  249. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_root_path.py +0 -0
  250. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_runtime_manager.py +0 -0
  251. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_server_operations.py +0 -0
  252. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_solution_architect_omvs.py +0 -0
  253. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_utils.py +0 -0
  254. {pyegeria-5.4.7.2 → pyegeria-5.4.7.4}/tests/test_valid_metadata_omvs.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyegeria
3
- Version: 5.4.7.2
3
+ Version: 5.4.7.4
4
4
  Summary: A python client for Egeria
5
5
  Author-email: Dan Wolfson <dan.wolfson@pdr-associates.com>
6
6
  License-Expression: Apache-2.0
@@ -36,7 +36,7 @@ EGERIA_WIDTH = os.environ.get("EGERIA_WIDTH", 220)
36
36
  EGERIA_JUPYTER = os.environ.get("EGERIA_JUPYTER", False)
37
37
  EGERIA_HOME_GLOSSARY_GUID = os.environ.get("EGERIA_HOME_GLOSSARY_GUID", None)
38
38
  EGERIA_GLOSSARY_PATH = os.environ.get("EGERIA_GLOSSARY_PATH", None)
39
- EGERIA_ROOT_PATH = os.environ.get("EGERIA_ROOT_PATH", "../../")
39
+ EGERIA_ROOT_PATH = os.environ.get("EGERIA_ROOT_PATH", "../..")
40
40
  EGERIA_INBOX_PATH = os.environ.get("EGERIA_INBOX_PATH", "md_processing/dr_egeria_inbox")
41
41
  EGERIA_OUTBOX_PATH = os.environ.get("EGERIA_OUTBOX_PATH", "md_processing/dr_egeria_outbox")
42
42
 
@@ -40,6 +40,7 @@ import os
40
40
  import time
41
41
 
42
42
  from loguru import logger
43
+ from pydantic import ValidationError
43
44
  from rich import box
44
45
  from rich.console import Console
45
46
  from rich.markdown import Markdown
@@ -51,7 +52,7 @@ import pydevd_pycharm
51
52
  from pyegeria import (
52
53
  EgeriaTech,
53
54
  CollectionManager,
54
- NO_ELEMENTS_FOUND, GovernanceOfficer, GlossaryManager,
55
+ NO_ELEMENTS_FOUND, GovernanceOfficer, GlossaryManager, print_validation_error,
55
56
  )
56
57
  from pyegeria.config import settings
57
58
  from pyegeria.external_references import ExternalReferences
@@ -238,6 +239,10 @@ def execute_format_set_action(
238
239
  else:
239
240
  # For standalone functions, call with client as first argument
240
241
  output = func(client, **params)
242
+ except ValidationError as e:
243
+ print_validation_error(e)
244
+ return
245
+
241
246
  except TypeError as e:
242
247
  # Handle parameter mismatch errors
243
248
  print(f"Error calling function: {e}")
@@ -10,6 +10,7 @@ List catalog targets
10
10
  """
11
11
  import argparse
12
12
  import os
13
+ import sys
13
14
  import time
14
15
 
15
16
  from rich import box
@@ -18,13 +19,13 @@ from rich.markdown import Markdown
18
19
  from rich.prompt import Prompt
19
20
  from rich.table import Table
20
21
 
22
+
21
23
  from pyegeria import (
22
24
  INTEGRATION_GUIDS,
23
25
  AutomatedCuration,
24
- InvalidParameterException,
25
- PropertyServerException,
26
- UserNotAuthorizedException,
27
- print_exception_response,
26
+ EgeriaTech,
27
+ PyegeriaException,
28
+ print_basic_exception,
28
29
  )
29
30
 
30
31
  EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
@@ -144,26 +145,28 @@ def display_catalog_targets(
144
145
  return table
145
146
 
146
147
  try:
147
- a_client = AutomatedCuration(view_server, view_url, user)
148
+ a_client = EgeriaTech(view_server, view_url, user)
148
149
  token = a_client.create_egeria_bearer_token(user, user_pass)
149
150
  connector = connector.strip()
150
- if connector not in INTEGRATION_GUIDS.keys():
151
- raise Exception
152
151
 
153
- connector_guid = INTEGRATION_GUIDS[connector]
152
+
153
+ connector_guid = a_client.get_connector_guid(connector)
154
+ if connector_guid is None or connector_guid == "No connector found":
155
+ console.print(f"\n\n===> No connector found with name '{connector}'\n\n")
156
+ sys.exit(1)
157
+
154
158
  cat_targets = a_client.get_catalog_targets(connector_guid)
155
159
  console = Console(force_terminal=not jupyter, width=width, soft_wrap=True)
156
160
  with console.pager(styles=True):
157
161
  console.print(generate_table(), soft_wrap=True)
158
162
 
163
+
164
+ except PyegeriaException as e:
165
+ print(f"\n\n===> Perhaps integration connector {connector} is not known?\n\n")
166
+ print_basic_exception(e)
159
167
  except (
160
- InvalidParameterException,
161
- PropertyServerException,
162
- UserNotAuthorizedException,
168
+ Exception
163
169
  ) as e:
164
- print_exception_response(e)
165
- except Exception as e:
166
- print(f"\n\n===> Perhaps integration connector {connector} is not known?\n\n")
167
170
  console.print_exception()
168
171
  finally:
169
172
  a_client.close_session()
@@ -146,7 +146,7 @@ def display_engine_activity(
146
146
  "ACTIVATING",
147
147
  ):
148
148
  action_status = f"[yellow]{action['actionStatus']}"
149
- elif action["actionStatus"] in ("IN_PROGRESS", "ACTIONED"):
149
+ elif action["actionStatus"] in ("IN_PROGRESS", "COMPLETED"):
150
150
  action_status = f"[green]{action['actionStatus']}"
151
151
  else:
152
152
  action_status = f"[red]{action['actionStatus']}"
@@ -148,7 +148,7 @@ def display_engine_activity_c(
148
148
  "ACTIVATING",
149
149
  ):
150
150
  action_status = f"[yellow]{action['actionStatus']}"
151
- elif action["actionStatus"] in ("IN_PROGRESS", "ACTIONED"):
151
+ elif action["actionStatus"] in ("IN_PROGRESS", "COMPLETED"):
152
152
  action_status = f"[green]{action['actionStatus']}"
153
153
  else:
154
154
  action_status = f"[red]{action['actionStatus']}"
@@ -19,11 +19,9 @@ from rich.table import Table
19
19
 
20
20
  from pyegeria import (
21
21
  EgeriaTech,
22
- InvalidParameterException,
23
- PropertyServerException,
24
- UserNotAuthorizedException,
22
+ PyegeriaException,
25
23
  ValidMetadataManager,
26
- print_exception_response,
24
+ print_basic_exception,
27
25
  )
28
26
 
29
27
  EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
@@ -104,15 +102,13 @@ def display_gov_processes(
104
102
  console.print(generate_table(type_name))
105
103
 
106
104
  except (
107
- InvalidParameterException,
108
- PropertyServerException,
109
- UserNotAuthorizedException,
105
+ PyegeriaException,
110
106
  ValueError,
111
107
  ) as e:
112
108
  if type(e) is str:
113
109
  print(e)
114
110
  else:
115
- print_exception_response(e)
111
+ print_basic_exception(e)
116
112
 
117
113
 
118
114
  def main():
@@ -42,7 +42,7 @@ from md_processing import (extract_command, process_glossary_upsert_command, pro
42
42
  process_link_to_external_reference_command, process_link_to_media_reference_command,
43
43
  process_link_to_cited_document_command, EXT_REF_UPSERT, LINK_CITED_DOC, LINK_MEDIA,LINK_EXT_REF)
44
44
 
45
- from .md_commands.data_designer_commands import (process_data_spec_upsert_command,
45
+ from md_processing.md_commands.data_designer_commands import (process_data_spec_upsert_command,
46
46
  process_data_dict_upsert_command,
47
47
  process_data_field_upsert_command,
48
48
  process_data_structure_upsert_command,
@@ -21,9 +21,8 @@ from md_processing.md_processing_utils.common_md_utils import (update_element_di
21
21
  from md_processing.md_processing_utils.extraction_utils import (extract_command_plus, update_a_command)
22
22
 
23
23
  from pyegeria import PyegeriaException, print_basic_exception, print_validation_error
24
- from pyegeria import body_slimmer
25
24
  from pyegeria.egeria_tech_client import EgeriaTech
26
- from pyegeria.utils import make_format_set_name_from_type
25
+ from pyegeria.utils import make_format_set_name_from_type, body_slimmer
27
26
 
28
27
 
29
28
  # EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "170"))
@@ -32,10 +32,9 @@ from md_processing.md_processing_utils.extraction_utils import (extract_command_
32
32
  update_a_command, extract_attribute,
33
33
  get_element_by_name, process_name_list)
34
34
 
35
- from pyegeria import body_slimmer
36
35
  from pyegeria._globals import (NO_GLOSSARIES_FOUND, NO_ELEMENTS_FOUND, NO_CATEGORIES_FOUND)
37
36
  from pyegeria.egeria_tech_client import EgeriaTech
38
- from pyegeria.utils import make_format_set_name_from_type
37
+ from pyegeria.utils import make_format_set_name_from_type, body_slimmer
39
38
 
40
39
 
41
40
  # EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "170"))
@@ -36,10 +36,9 @@ from md_processing.md_processing_utils.extraction_utils import (extract_command_
36
36
  update_a_command, extract_attribute,
37
37
  get_element_by_name, process_name_list)
38
38
 
39
- from pyegeria import body_slimmer
40
39
  from pyegeria._globals import (NO_GLOSSARIES_FOUND, NO_ELEMENTS_FOUND, NO_CATEGORIES_FOUND)
41
40
  from pyegeria.egeria_tech_client import EgeriaTech
42
- from pyegeria.utils import make_format_set_name_from_type
41
+ from pyegeria.utils import make_format_set_name_from_type, body_slimmer
43
42
 
44
43
 
45
44
  # EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "170"))
@@ -0,0 +1,99 @@
1
+ """
2
+ SPDX-License-Identifier: Apache-2.0
3
+ Copyright Contributors to the ODPi Egeria project.
4
+
5
+ This is the pyegeria client package. The purpose of the package is to provide
6
+ easy access to Egeria (https://egeria-project.org). The package is currently in
7
+ development.
8
+
9
+ The first capabilities are around Egeria's platform services used to start and stop
10
+ the server platform and servers.
11
+
12
+ """
13
+ # from .load_config import load_app_config, get_app_config
14
+ # from .logging_configuration import config_logging, init_logging
15
+ from ._globals import (INTEGRATION_GUIDS, TEMPLATE_GUIDS, default_time_out, disable_ssl_warnings, enable_ssl_check,
16
+ is_debug, max_paging_size, NO_ELEMENTS_FOUND, NO_ASSETS_FOUND, NO_SERVERS_FOUND,
17
+ NO_CATALOGS_FOUND, NO_GLOSSARIES_FOUND, NO_TERMS_FOUND, NO_CATEGORIES_FOUND, NO_ELEMENT_FOUND,
18
+ NO_PROJECTS_FOUND, DEBUG_LEVEL, NO_COLLECTION_FOUND, NO_GUID_RETURNED, TEMPLATE_GUIDS,
19
+ INTEGRATION_GUIDS)
20
+
21
+
22
+
23
+ if disable_ssl_warnings:
24
+ from urllib3 import disable_warnings
25
+ from urllib3.exceptions import InsecureRequestWarning
26
+
27
+ disable_warnings(InsecureRequestWarning)
28
+
29
+ from ._client import Client
30
+ from ._client_new import Client2
31
+ from ._exceptions_new import (PyegeriaInvalidParameterException,PyegeriaAPIException, PyegeriaException,
32
+ PyegeriaUnauthorizedException, PyegeriaClientException, PyegeriaUnknownException,
33
+ PyegeriaConnectionException, PyegeriaNotFoundException,
34
+ print_exception_table, print_basic_exception, print_validation_error)
35
+ from .config import load_app_config, get_app_config, settings
36
+ from .logging_configuration import config_logging, console_log_filter, init_logging
37
+ from ._exceptions import (InvalidParameterException, PropertyServerException, UserNotAuthorizedException,
38
+ print_exception_response, )
39
+ from ._validators import (is_json, validate_guid, validate_name, validate_public, validate_search_string,
40
+ validate_server_name, validate_url, validate_user_id, )
41
+ from .asset_catalog_omvs import AssetCatalog
42
+ from .automated_curation import AutomatedCuration
43
+ from .classification_manager_omvs import ClassificationManager
44
+ from .collection_manager import CollectionManager
45
+ from .core_omag_server_config import CoreServerConfig
46
+ from .create_tech_guid_lists import build_global_guid_lists
47
+ from .egeria_cat_client import EgeriaCat
48
+ from .egeria_client import Egeria
49
+ from .egeria_config_client import EgeriaConfig
50
+ from .egeria_my_client import EgeriaMy
51
+ from .egeria_tech_client import EgeriaTech
52
+ from .feedback_manager_omvs import FeedbackManager
53
+ from .full_omag_server_config import FullServerConfig
54
+ from .glossary_manager import GlossaryManager
55
+ from .governance_officer import GovernanceOfficer
56
+ from .mermaid_utilities import (construct_mermaid_web, construct_mermaid_jup, load_mermaid,
57
+ parse_mermaid_code, render_mermaid, save_mermaid_graph, save_mermaid_html, )
58
+ from .metadata_explorer_omvs import MetadataExplorer
59
+ from .my_profile_omvs import MyProfile
60
+ from .platform_services import Platform
61
+ from .project_manager import ProjectManager
62
+ from .registered_info import RegisteredInfo
63
+ from .runtime_manager_omvs import RuntimeManager
64
+ from .server_operations import ServerOps
65
+ from .solution_architect import SolutionArchitect
66
+ from .utils import body_slimmer,to_pascal_case, to_camel_case, camel_to_title_case
67
+ from .valid_metadata_omvs import ValidMetadataManager
68
+ from .x_action_author_omvs import ActionAuthor
69
+ from .template_manager_omvs import TemplateManager
70
+ from .data_designer import DataDesigner
71
+ from ._output_formats import select_output_format_set
72
+ from .mcp_adapter import list_reports, describe_report, run_report, _async_run_report, _execute_egeria_call_blocking
73
+
74
+ #
75
+ global template_guids, integration_guids
76
+
77
+ # 2/12/25
78
+
79
+ def __getattr__(name):
80
+ """
81
+ Lazy attribute loader to avoid import-time circular dependencies while preserving API.
82
+ Exposes:
83
+ - process_markdown_file via commands.cat.dr_egeria_md
84
+ - md_processing package
85
+ - commands package
86
+ """
87
+ if name == "process_markdown_file":
88
+ from commands.cat.dr_egeria_md import process_markdown_file as _pmf
89
+ return _pmf
90
+ if name == "md_processing":
91
+ import md_processing as _mdp
92
+ return _mdp
93
+ if name == "commands":
94
+ import commands as _cmd
95
+ return _cmd
96
+ raise AttributeError(f"module 'pyegeria' has no attribute {name!r}")
97
+
98
+ if __name__ == "__main__":
99
+ print("Main-Init")