pyegeria 5.2.1.1__py3-none-any.whl → 5.3__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 (311) hide show
  1. commands/cat/.DS_Store +0 -0
  2. commands/cat/Dr-Egeria_md-orig.py +166 -0
  3. commands/cat/__init__.py +23 -0
  4. commands/cat/dr_egeria_jupyter.py +122 -0
  5. commands/cat/dr_egeria_md.py +247 -0
  6. {pyegeria/commands → commands}/cat/exp_list_glossaries.py +3 -4
  7. {pyegeria/commands → commands}/cat/get_asset_graph.py +4 -4
  8. {pyegeria/commands → commands}/cat/get_collection.py +8 -9
  9. {pyegeria/commands → commands}/cat/get_project_dependencies.py +6 -8
  10. {pyegeria/commands → commands}/cat/get_project_structure.py +6 -8
  11. {pyegeria/commands → commands}/cat/get_tech_type_elements.py +13 -15
  12. {pyegeria/commands → commands}/cat/glossary_actions.py +184 -34
  13. {pyegeria/commands → commands}/cat/list_assets.py +9 -6
  14. commands/cat/list_categories.py +192 -0
  15. {pyegeria/commands → commands}/cat/list_cert_types.py +6 -6
  16. {pyegeria/commands → commands}/cat/list_collections.py +62 -19
  17. commands/cat/list_data_structures.py +223 -0
  18. {pyegeria/commands → commands}/cat/list_deployed_catalogs.py +9 -8
  19. {pyegeria/commands → commands}/cat/list_deployed_database_schemas.py +10 -9
  20. {pyegeria/commands → commands}/cat/list_deployed_databases.py +9 -8
  21. pyegeria/commands/cat/list_servers_deployed_imp.py → commands/cat/list_deployed_servers.py +3 -3
  22. {pyegeria/commands → commands}/cat/list_glossaries.py +57 -15
  23. {pyegeria/commands → commands}/cat/list_projects.py +5 -5
  24. {pyegeria/commands → commands}/cat/list_tech_type_elements.py +3 -3
  25. {pyegeria/commands → commands}/cat/list_tech_types.py +4 -4
  26. {pyegeria/commands → commands}/cat/list_terms.py +93 -45
  27. {pyegeria/commands → commands}/cat/list_todos.py +3 -3
  28. {pyegeria/commands → commands}/cat/list_user_ids.py +9 -8
  29. {pyegeria/commands → commands}/cli/__init__.py +1 -1
  30. {pyegeria/commands → commands}/cli/egeria.py +506 -250
  31. {pyegeria/commands → commands}/cli/egeria_cat.py +127 -50
  32. {pyegeria/commands → commands}/cli/egeria_login_tui.py +15 -17
  33. {pyegeria/commands → commands}/cli/egeria_my.py +22 -15
  34. {pyegeria/commands → commands}/cli/egeria_ops.py +54 -55
  35. {pyegeria/commands → commands}/cli/egeria_tech.py +364 -152
  36. {pyegeria/commands → commands}/cli/ops_config.py +11 -4
  37. commands/cli/txt_custom_v2.tcss +19 -0
  38. commands/my/__init__.py +22 -0
  39. {pyegeria/commands → commands}/my/list_my_profile.py +6 -8
  40. {pyegeria/commands → commands}/my/list_my_roles.py +4 -4
  41. {pyegeria/commands → commands}/my/monitor_my_todos.py +7 -7
  42. {pyegeria/commands → commands}/my/monitor_open_todos.py +7 -7
  43. {pyegeria/commands → commands}/my/todo_actions.py +3 -2
  44. commands/ops/__init__.py +23 -0
  45. {pyegeria/commands → commands}/ops/gov_server_actions.py +5 -4
  46. {pyegeria/commands → commands}/ops/list_archives.py +7 -6
  47. {pyegeria/commands → commands}/ops/list_catalog_targets.py +4 -4
  48. {pyegeria/commands → commands}/ops/load_archive.py +4 -2
  49. {pyegeria/commands → commands}/ops/monitor_asset_events.py +8 -7
  50. {pyegeria/commands → commands}/ops/monitor_engine_activity.py +5 -5
  51. {pyegeria/commands → commands}/ops/monitor_engine_activity_c.py +3 -3
  52. {pyegeria/commands → commands}/ops/monitor_gov_eng_status.py +3 -2
  53. {pyegeria/commands → commands}/ops/monitor_integ_daemon_status.py +23 -15
  54. {pyegeria/commands → commands}/ops/monitor_platform_status.py +5 -4
  55. {pyegeria/commands → commands}/ops/monitor_server_startup.py +7 -7
  56. {pyegeria/commands → commands}/ops/monitor_server_status.py +16 -11
  57. {pyegeria/commands → commands}/ops/orig_monitor_server_list.py +2 -2
  58. {pyegeria/commands → commands}/ops/orig_monitor_server_status.py +3 -3
  59. {pyegeria/commands → commands}/ops/refresh_integration_daemon.py +4 -4
  60. {pyegeria/commands → commands}/ops/restart_integration_daemon.py +3 -3
  61. {pyegeria/commands → commands}/ops/table_integ_daemon_status.py +3 -3
  62. commands/tech/__init__.py +22 -0
  63. commands/tech/generic_actions.py +74 -0
  64. {pyegeria/commands → commands}/tech/get_element_info.py +5 -7
  65. {pyegeria/commands → commands}/tech/get_guid_info.py +4 -5
  66. {pyegeria/commands → commands}/tech/get_tech_details.py +8 -9
  67. {pyegeria/commands → commands}/tech/get_tech_type_template.py +4 -4
  68. pyegeria/commands/tech/list_elements.py → commands/tech/list_all_om_type_elements.py +11 -10
  69. pyegeria/commands/tech/list_elements_x.py → commands/tech/list_all_om_type_elements_x.py +11 -12
  70. pyegeria/commands/tech/list_related_elements.py → commands/tech/list_all_related_elements.py +11 -9
  71. {pyegeria/commands → commands}/tech/list_anchored_elements.py +16 -16
  72. {pyegeria/commands → commands}/tech/list_asset_types.py +4 -4
  73. commands/tech/list_elements_by_classification_by_property_value.py +200 -0
  74. commands/tech/list_elements_by_property_value.py +180 -0
  75. commands/tech/list_elements_by_property_value_x.py +201 -0
  76. {pyegeria/commands → commands}/tech/list_elements_for_classification.py +11 -9
  77. {pyegeria/commands → commands}/tech/list_gov_action_processes.py +5 -6
  78. commands/tech/list_information_supply_chains.py +167 -0
  79. {pyegeria/commands → commands}/tech/list_registered_services.py +3 -3
  80. commands/tech/list_related_elements_with_prop_value.py +221 -0
  81. {pyegeria/commands → commands}/tech/list_related_specification.py +3 -3
  82. {pyegeria/commands → commands}/tech/list_relationship_types.py +4 -5
  83. {pyegeria/commands → commands}/tech/list_relationships.py +3 -3
  84. commands/tech/list_solution_blueprints.py +181 -0
  85. commands/tech/list_solution_components.py +185 -0
  86. commands/tech/list_solution_roles.py +184 -0
  87. {pyegeria/commands → commands}/tech/list_tech_templates.py +3 -3
  88. {pyegeria/commands → commands}/tech/list_valid_metadata_values.py +5 -6
  89. {pyegeria/commands → commands}/tech/table_tech_templates.py +16 -13
  90. {pyegeria/commands → commands}/tech/x_list_related_elements.py +6 -4
  91. md_processing/__init__.py +49 -0
  92. md_processing/data/commands.json +3252 -0
  93. md_processing/dr_egeria_inbox/archive/dr_egeria_intro.md +254 -0
  94. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_more_terms.md +696 -0
  95. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part1.md +254 -0
  96. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part2.md +298 -0
  97. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part3.md +608 -0
  98. md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part4.md +94 -0
  99. md_processing/dr_egeria_inbox/archive/freddie_intro.md +284 -0
  100. md_processing/dr_egeria_inbox/archive/freddie_intro_orig.md +275 -0
  101. md_processing/dr_egeria_inbox/archive/test-term.md +110 -0
  102. md_processing/dr_egeria_inbox/cat_test.md +100 -0
  103. md_processing/dr_egeria_inbox/data_field.md +54 -0
  104. md_processing/dr_egeria_inbox/data_spec.md +77 -0
  105. md_processing/dr_egeria_inbox/data_spec_test.md +2406 -0
  106. md_processing/dr_egeria_inbox/data_test.md +86 -0
  107. md_processing/dr_egeria_inbox/dr_egeria_intro_categories.md +168 -0
  108. md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md +280 -0
  109. md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md +313 -0
  110. md_processing/dr_egeria_inbox/dr_egeria_intro_part3.md +1073 -0
  111. md_processing/dr_egeria_inbox/dr_egeria_isc1.md +44 -0
  112. md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb +341 -0
  113. md_processing/dr_egeria_inbox/glossary_test1.md +324 -0
  114. md_processing/dr_egeria_inbox/rel.md +8 -0
  115. md_processing/dr_egeria_inbox/sb.md +119 -0
  116. md_processing/dr_egeria_inbox/search_test.md +39 -0
  117. md_processing/dr_egeria_inbox/solution-components.md +154 -0
  118. md_processing/dr_egeria_inbox/solution_blueprints.md +118 -0
  119. md_processing/dr_egeria_inbox/synonym_test.md +42 -0
  120. md_processing/dr_egeria_inbox/t2.md +268 -0
  121. md_processing/dr_egeria_outbox/processed-2025-05-15 19:52-data_test.md +94 -0
  122. md_processing/dr_egeria_outbox/processed-2025-05-16 07:39-data_test.md +88 -0
  123. md_processing/dr_egeria_outbox/processed-2025-05-17 16:01-data_field.md +56 -0
  124. md_processing/dr_egeria_outbox/processed-2025-05-18 15:51-data_test.md +103 -0
  125. md_processing/dr_egeria_outbox/processed-2025-05-18 16:47-data_test.md +94 -0
  126. md_processing/dr_egeria_outbox/processed-2025-05-19 07:14-data_test.md +96 -0
  127. md_processing/dr_egeria_outbox/processed-2025-05-19 07:20-data_test.md +100 -0
  128. md_processing/dr_egeria_outbox/processed-2025-05-19 07:22-data_test.md +88 -0
  129. md_processing/dr_egeria_outbox/processed-2025-05-19 09:26-data_test.md +91 -0
  130. md_processing/dr_egeria_outbox/processed-2025-05-19 10:27-data_test.md +91 -0
  131. md_processing/dr_egeria_outbox/processed-2025-05-19 14:04-data_test.md +91 -0
  132. md_processing/md_commands/__init__.py +3 -0
  133. md_processing/md_commands/blueprint_commands.py +303 -0
  134. md_processing/md_commands/data_designer_commands.py +1182 -0
  135. md_processing/md_commands/glossary_commands.py +1144 -0
  136. md_processing/md_commands/project_commands.py +163 -0
  137. md_processing/md_processing_utils/__init__.py +4 -0
  138. md_processing/md_processing_utils/common_md_proc_utils.py +724 -0
  139. md_processing/md_processing_utils/common_md_utils.py +172 -0
  140. md_processing/md_processing_utils/extraction_utils.py +486 -0
  141. md_processing/md_processing_utils/md_processing_constants.py +128 -0
  142. md_processing/md_processing_utils/message_constants.py +19 -0
  143. pyegeria/.DS_Store +0 -0
  144. pyegeria/__init__.py +231 -146
  145. pyegeria/_client.py +36 -13
  146. pyegeria/_exceptions.py +55 -46
  147. pyegeria/_globals.py +11 -1
  148. pyegeria/_validators.py +5 -5
  149. pyegeria/asset_catalog_omvs.py +78 -21
  150. pyegeria/automated_curation_omvs.py +11 -6
  151. pyegeria/classification_manager_omvs.py +41 -37
  152. pyegeria/collection_manager_omvs.py +722 -705
  153. pyegeria/core_omag_server_config.py +1 -1
  154. pyegeria/create_tech_guid_lists.py +13 -13
  155. pyegeria/data_designer_omvs.py +5104 -0
  156. pyegeria/dr.egeria spec.md +9 -0
  157. pyegeria/egeria_cat_client.py +5 -8
  158. pyegeria/egeria_client.py +39 -24
  159. pyegeria/egeria_config_client.py +2 -1
  160. pyegeria/egeria_my_client.py +4 -4
  161. pyegeria/egeria_tech_client.py +40 -18
  162. pyegeria/feedback_manager_omvs.py +1 -1
  163. pyegeria/full_omag_server_config.py +5 -3
  164. pyegeria/glossary_browser_omvs.py +1915 -694
  165. pyegeria/glossary_manager_omvs.py +685 -1842
  166. pyegeria/m_test.py +118 -0
  167. pyegeria/md_processing_helpers.py +58 -0
  168. pyegeria/md_processing_utils.py +2147 -0
  169. pyegeria/md_processing_utils_orig.py +1103 -0
  170. pyegeria/mermaid_utilities.py +1194 -14
  171. pyegeria/metadata_explorer_omvs.py +5 -50
  172. pyegeria/my_profile_omvs.py +3 -2
  173. pyegeria/output_formatter.py +389 -0
  174. pyegeria/platform_services.py +5 -5
  175. pyegeria/project_manager_omvs.py +97 -18
  176. pyegeria/runtime_manager_omvs.py +8 -10
  177. pyegeria/server_operations.py +2 -2
  178. pyegeria/solution_architect_omvs.py +2156 -0
  179. pyegeria/template_manager_omvs.py +13 -13
  180. pyegeria/utils.py +3 -1
  181. pyegeria/valid_metadata_omvs.py +5 -4
  182. pyegeria/x_action_author_omvs.py +3 -6
  183. {pyegeria-5.2.1.1.dist-info → pyegeria-5.3.dist-info}/METADATA +9 -8
  184. pyegeria-5.3.dist-info/RECORD +196 -0
  185. {pyegeria-5.2.1.1.dist-info → pyegeria-5.3.dist-info}/WHEEL +1 -1
  186. pyegeria-5.3.dist-info/entry_points.txt +99 -0
  187. pyegeria/commands/README.md +0 -47
  188. pyegeria/commands/__init__.py +0 -22
  189. pyegeria/commands/cat/__init__.py +0 -1
  190. pyegeria/commands/doc/README.md +0 -145
  191. pyegeria/commands/doc/Visual Command Reference/README.md +0 -511
  192. pyegeria/commands/doc/Visual Command Reference/cat/show/assets/asset-graph 2024-11-20 at 15.56.42.png +0 -0
  193. pyegeria/commands/doc/Visual Command Reference/cat/show/assets/assets-in-domain 2024-11-20 at 15.49.55@2x.png +0 -0
  194. pyegeria/commands/doc/Visual Command Reference/cat/show/assets/elements-of-type 2024-11-20 at 16.01.35.png +0 -0
  195. pyegeria/commands/doc/Visual Command Reference/cat/show/assets/tech-type-elements 2024-11-20 at 16.05.05.png +0 -0
  196. pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs 2024-12-17 at 15.43.27@2x.png +0 -0
  197. pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs-2024-11-20 at 16.17.43@2x.png +0 -0
  198. pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-11-25 at 20.14.50@2x.png +0 -0
  199. pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-12-17 at 15.48.38@2x.png +0 -0
  200. pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-servers 2024-11-25 at 20.21.25@2x.png +0 -0
  201. pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-servers 2024-12-17 at 15.52.16@2x.png +0 -0
  202. pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed_databases 2024-12-16 at 16.40.31@2x.png +0 -0
  203. pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-glossaries 2024-11-25 at 20.30.02.png +0 -0
  204. pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-terms 2024-11-25 at 20.32.11.png +0 -0
  205. pyegeria/commands/doc/Visual Command Reference/cat/show/info/asset-types 2024-11-25 at 20.34.19@2x.png +0 -0
  206. pyegeria/commands/doc/Visual Command Reference/cat/show/info/certification-types 2024-11-25 at 20.37.07.png +0 -0
  207. pyegeria/commands/doc/Visual Command Reference/cat/show/info/collection-graph 2024-12-12 at 11.33.18@2x.png +0 -0
  208. pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-collections 2024-12-10 at 14.25.51@2x.png +0 -0
  209. pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-todos 2024-12-12 at 11.46.30@2x.png +0 -0
  210. pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-user-ids 2024-12-12 at 11.51.09@2x.png +0 -0
  211. pyegeria/commands/doc/Visual Command Reference/cat/show/info/tech-types 2024-12-12 at 11.37.20@2x.png +0 -0
  212. pyegeria/commands/doc/Visual Command Reference/cat/show/projects/project_dependencies 2024-12-14 at 16.24.39@2x.png +0 -0
  213. pyegeria/commands/doc/Visual Command Reference/cat/show/projects/project_structure 2024-12-14 at 16.21.35@2x.png +0 -0
  214. pyegeria/commands/doc/Visual Command Reference/cat/show/projects/projects 2024-12-14 at 16.18.10@2x.png +0 -0
  215. pyegeria/commands/doc/Visual Command Reference/hey_egeria tui 2024-12-16 at 16.58.22@2x.png +0 -0
  216. pyegeria/commands/doc/Visual Command Reference/my/show/my_profile 2024-12-14 at 16.29.27@2x.png +0 -0
  217. pyegeria/commands/doc/Visual Command Reference/my/show/my_roles 2024-12-14 at 16.32.10@2x.png +0 -0
  218. pyegeria/commands/doc/Visual Command Reference/my/show/my_todos 2024-12-15 at 16.24.13@2x.png +0 -0
  219. pyegeria/commands/doc/Visual Command Reference/my/show/open_todos 2024-12-14 at 16.36.12@2x.png +0 -0
  220. pyegeria/commands/doc/Visual Command Reference/ops/show/engines/list_engine_activity compressed 2024-12-15 at 16.48.48@2x.png +0 -0
  221. pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_activity 2024-12-15 at 16.32.55@2x.png +0 -0
  222. pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_activity compressed 2024-12-15 at 16.38.29@2x.png +0 -0
  223. pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_status 2024-12-15 at 16.51.26.jpeg +0 -0
  224. pyegeria/commands/doc/Visual Command Reference/ops/show/integrations/monitor_integration_daemon_status 2024-12-15 at 16.57.12@2x.png +0 -0
  225. pyegeria/commands/doc/Visual Command Reference/ops/show/integrations/monitor_integration_targets 2024-12-15 at 17.02.19@2x.png +0 -0
  226. pyegeria/commands/doc/Visual Command Reference/ops/show/platforms/monitor_platform_status 2024-12-15 at 19.53.18@2x.png +0 -0
  227. pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_server_status 2024-12-15 at 19.59.39@2x.png +0 -0
  228. pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_server_status full 2024-12-15 at 20.01.57@2x.png +0 -0
  229. pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_startup_servers 2024-12-15 at 19.56.07@2x.png +0 -0
  230. pyegeria/commands/doc/Visual Command Reference/tech/show/elements/get_anchored_elements 2024-12-15 at 21.25.41@2x.png +0 -0
  231. pyegeria/commands/doc/Visual Command Reference/tech/show/elements/get_elements_of_om_type 2024-12-16 at 14.39.59@2x.png +0 -0
  232. pyegeria/commands/doc/Visual Command Reference/tech/show/elements/info_for_guid 2024-12-16 at 11.35.29@2x.png +0 -0
  233. pyegeria/commands/doc/Visual Command Reference/tech/show/elements/list_elements_by_om-type 2024-12-16 at 14.24.18@2x.png +0 -0
  234. pyegeria/commands/doc/Visual Command Reference/tech/show/elements/list_elements_by_om-type extended 2024-12-16 at 14.28.46@2x.png +0 -0
  235. pyegeria/commands/doc/Visual Command Reference/tech/show/elements/list_elements_of_om_type_by_classification 2024-12-16 at 14.35.26@2x.png +0 -0
  236. pyegeria/commands/doc/Visual Command Reference/tech/show/elements/related_elements 2024-12-16 at 14.55.01@2x.png +0 -0
  237. pyegeria/commands/doc/Visual Command Reference/tech/show/elements/show_related_specifications 2024-12-16 at 15.04.55@2x.png +0 -0
  238. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/asset_types 2024-12-16 at 15.10.16@2x.png +0 -0
  239. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/detailed_governance_action_processes 2024-12-16 at 15.16.26@2x.png +0 -0
  240. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/governance_action_processes 2024-12-16 at 15.13.01@2x.png +0 -0
  241. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/registered_services 2024-12-16 at 16.44.54@2x.png +0 -0
  242. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/relationship_types 2024-12-16 at 16.20.34@2x.png +0 -0
  243. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/relationship_types 2024-12-19 at 10.51.54@2x.png +0 -0
  244. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/valid_metadata_values 2024-12-16 at 15.31.56@2x.png +0 -0
  245. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/list_tech_type_template_specs 2024-12-16 at 16.03.22@2x.png +0 -0
  246. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/list_technology_types 2024-12-16 at 15.39.20@2x.png +0 -0
  247. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_details 2024-12-16 at 15.37.21@2x.png +0 -0
  248. pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_templates 2024-12-16 at 16.11.48@2x.png +0 -0
  249. pyegeria/commands/doc/glossary/basic-glossary-tui.md +0 -109
  250. pyegeria/commands/doc/glossary/images/delete-glossary-step1 2024-11-06 at 15.47.23@2x.png +0 -0
  251. pyegeria/commands/doc/glossary/images/delete-glossary-step2 2024-11-06 at 15.51.29@2x.png +0 -0
  252. pyegeria/commands/doc/glossary/images/delete-glossary-step3 2024-11-06 at 15.53.19@2x.png +0 -0
  253. pyegeria/commands/doc/glossary/images/delete-glossary-step4 2024-11-06 at 15.55.11@2x.png +0 -0
  254. pyegeria/commands/doc/glossary/images/out-create-glossary example 2024-11-05 at 20.38.04@2x.png +0 -0
  255. pyegeria/commands/doc/glossary/images/out-create-term 2024-11-06 at 20.48.29.png +0 -0
  256. pyegeria/commands/doc/glossary/images/out-delete-term 2024-11-07 at 03.57.25.png +0 -0
  257. pyegeria/commands/doc/glossary/images/out-display-terms-for-glossary-test 2024-11-06 at 20.51.28.png +0 -0
  258. pyegeria/commands/doc/glossary/images/out-export-example 2024-11-07 at 09.54.57.png +0 -0
  259. pyegeria/commands/doc/glossary/images/out-exported-terms 2024-11-06 at 21.06.32.png +0 -0
  260. pyegeria/commands/doc/glossary/images/out-glossary-list example 2024-11-05 at 20.41.02@2x.png +0 -0
  261. pyegeria/commands/doc/glossary/images/out-import-terms 2024-11-07 at 08.15.18.png +0 -0
  262. pyegeria/commands/doc/glossary/images/out-list-all-terms 2024-11-06 at 16.22.20@2x.png +0 -0
  263. pyegeria/commands/doc/glossary/images/out-list-terms-for-example 2024-11-06 at 16.40.12.png +0 -0
  264. pyegeria/commands/doc/glossary/images/out-list-terms-second 2024-11-06 at 16.45.13.png +0 -0
  265. pyegeria/commands/doc/glossary/images/out-pipx install pyegeria 2024-11-10 at 18.12.21.png +0 -0
  266. pyegeria/commands/doc/glossary/images/out-server-status-full 2024-11-10 at 18.25.14.png +0 -0
  267. pyegeria/commands/doc/glossary/images/out-servers-status 2024-11-10 at 18.15.42.png +0 -0
  268. pyegeria/commands/doc/glossary/images/out-upsert-import 2024-11-07 at 19.37.00.png +0 -0
  269. pyegeria/commands/doc/glossary/images/tui-2024-11-10 at 18.26.29.png +0 -0
  270. pyegeria/commands/doc/glossary/images/tui-create-glossary example 2024-11-05 at 20.34.24@2x.png +0 -0
  271. pyegeria/commands/doc/glossary/images/tui-create-term 2024-11-06 at 20.46.35.png +0 -0
  272. pyegeria/commands/doc/glossary/images/tui-delete-term 2024-11-07 at 03.51.57.png +0 -0
  273. pyegeria/commands/doc/glossary/images/tui-display-terms-for-example 2024-11-06 at 20.56.49.png +0 -0
  274. pyegeria/commands/doc/glossary/images/tui-export-example 2024-11-07 at 09.52.59.png +0 -0
  275. pyegeria/commands/doc/glossary/images/tui-hey-egeria 2024-11-10 at 18.31.01.png +0 -0
  276. pyegeria/commands/doc/glossary/images/tui-import-upsert-example 2024-11-07 at 10.08.37.png +0 -0
  277. pyegeria/commands/doc/glossary/images/tui-list-terms-second 2024-11-06 at 16.46.34.png +0 -0
  278. pyegeria/commands/doc/glossary/images/tui-load-archive.png +0 -0
  279. pyegeria/commands/doc/glossary/images/tui-server-status-full 2024-11-10 at 19.14.36.png +0 -0
  280. pyegeria/commands/doc/glossary/images/tui-show-glossaries 2024-11-07 at 20.00.05.png +0 -0
  281. pyegeria/commands/doc/glossary/images/tui-show-glossary-terms 2024-11-05 at 19.37.53@2x.png +0 -0
  282. pyegeria/commands/doc/glossary/images/tui-upsert 2024-11-07 at 11.49.04.png +0 -0
  283. pyegeria/commands/doc/glossary/images/upsert-example.om-terms 2024-11-07 at 11.44.05.png +0 -0
  284. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/README.md +0 -346
  285. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/CleanShot 2024-11-18 at 21.32.03@2x.png +0 -0
  286. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731421782704.png +0 -0
  287. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731422134920.png +0 -0
  288. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/hey_egeria 2024-11-12 at 20.38.43.png +0 -0
  289. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/hey_egeria cat 2024-11-12 at 21.41.43.png +0 -0
  290. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/out-integ-status-list 2024-11-12 at 16.45.26.png +0 -0
  291. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/out-integ-status-live 2024-11-12 at 16.44.12@2x.png +0 -0
  292. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/out-server-status 2024-11-10 at 18.15.42@2x.png +0 -0
  293. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/out-server-status-full 2024-11-10 at 18.25.14@2x.png +0 -0
  294. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/short-cut commands 2024-11-12 at 22.22.13.png +0 -0
  295. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-hey-egeria.png +0 -0
  296. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-integration-status-paging.png +0 -0
  297. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-load-archive 2024-11-10 at 19.19.09@2x.png +0 -0
  298. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-show-server-status 2024-11-10 at 18.52.01@2x.png +0 -0
  299. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-show-server-status-full 2024-11-10.png +0 -0
  300. pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-status-paging 2024-11-12 at 16.26.14@2x.png +0 -0
  301. pyegeria/commands/ops/__init__.py +0 -22
  302. pyegeria/commands/tech/__init__.py +0 -0
  303. pyegeria-5.2.1.1.dist-info/RECORD +0 -231
  304. pyegeria-5.2.1.1.dist-info/entry_points.txt +0 -81
  305. {pyegeria/commands → commands}/cat/README.md +0 -0
  306. {pyegeria/commands → commands}/my/README.md +0 -0
  307. {pyegeria/commands → commands}/ops/README.md +0 -0
  308. {pyegeria/commands → commands}/ops/x_engine_actions.py +0 -0
  309. {pyegeria/commands → commands}/tech/README.md +0 -0
  310. /pyegeria/commands/my/__init__.py → /md_processing/dr_egeria_inbox/t1.md +0 -0
  311. {pyegeria-5.2.1.1.dist-info → pyegeria-5.3.dist-info}/LICENSE +0 -0
@@ -5,17 +5,12 @@ Copyright Contributors to the ODPi Egeria project.
5
5
  Template manager is a view service that supports managing metadata elements using templates.
6
6
 
7
7
  """
8
- import asyncio
9
8
 
10
- from requests import Response
9
+ import asyncio
11
10
 
12
- from pyegeria import (
13
- Client,
14
- max_paging_size,
15
- body_slimmer,
16
- InvalidParameterException,
17
- default_time_out,
18
- )
11
+ from pyegeria._client import Client
12
+ from pyegeria._globals import default_time_out, NO_ELEMENTS_FOUND
13
+ from pyegeria.utils import body_slimmer
19
14
 
20
15
 
21
16
  class TemplateManager(Client):
@@ -536,7 +531,7 @@ class TemplateManager(Client):
536
531
  return
537
532
 
538
533
  async def _async_delete_metadata_element_in_store(
539
- self, element_guid: str, body: dict
534
+ self, element_guid: str, body: dict, cascade:bool = False
540
535
  ) -> None:
541
536
  """Delete a metadata element.
542
537
  Async version.
@@ -547,6 +542,8 @@ class TemplateManager(Client):
547
542
  The identity of the metadata element to update.
548
543
  body : dict
549
544
  The definition of the element to create. A sample is the notes below.
545
+ cascade : bool, optional, defaults to False
546
+ If true, delete all anchored elements as well.
550
547
 
551
548
  Returns
552
549
  -------
@@ -572,11 +569,12 @@ class TemplateManager(Client):
572
569
  }
573
570
 
574
571
  """
575
- url = f"{self.command_root}/metadata-elements/{element_guid}/delete"
572
+ cascade_str = str(cascade).lower()
573
+ url = f"{self.command_root}/metadata-elements/{element_guid}/delete?cascadedDelete={cascade_str}"
576
574
  await self._async_make_request("POST", url, body_slimmer(body))
577
575
  return
578
576
 
579
- def delete_metadata_element_in_store(self, element_guid: str, body: dict) -> None:
577
+ def delete_metadata_element_in_store(self, element_guid: str, body: dict, cascade:bool = False) -> None:
580
578
  """Delete a metadata element.
581
579
 
582
580
  Parameters
@@ -585,6 +583,8 @@ class TemplateManager(Client):
585
583
  The identity of the metadata element to update.
586
584
  body : dict
587
585
  The definition of the element to create. A sample is the notes below.
586
+ cascade : bool, optional, defaults to False
587
+ If true, delete all anchored elements as well.
588
588
 
589
589
  Returns
590
590
  -------
@@ -612,7 +612,7 @@ class TemplateManager(Client):
612
612
  """
613
613
  loop = asyncio.get_event_loop()
614
614
  loop.run_until_complete(
615
- self._async_delete_metadata_element_in_store(element_guid, body)
615
+ self._async_delete_metadata_element_in_store(element_guid, body, cascade)
616
616
  )
617
617
  return
618
618
 
pyegeria/utils.py CHANGED
@@ -5,9 +5,11 @@ Copyright Contributors to the ODPi Egeria project.
5
5
  General utility functions in support of the Egeria Python Client package.
6
6
 
7
7
  """
8
+
8
9
  import json
9
- from rich import print, print_json
10
10
  from datetime import datetime
11
+
12
+ from rich import print, print_json
11
13
  from rich.console import Console
12
14
 
13
15
  console = Console(width=200)
@@ -5,11 +5,12 @@ Copyright Contributors to the ODPi Egeria project.
5
5
  Maintain and explore the contents of nested collections.
6
6
 
7
7
  """
8
+
8
9
  import asyncio
9
10
 
10
11
  # import json
11
12
  from pyegeria._client import Client
12
- from pyegeria._globals import max_paging_size
13
+ from pyegeria._globals import max_paging_size, NO_ELEMENTS_FOUND
13
14
 
14
15
 
15
16
  class ValidMetadataManager(Client):
@@ -1107,7 +1108,7 @@ class ValidMetadataManager(Client):
1107
1108
  )
1108
1109
 
1109
1110
  resp = await self._async_make_request("GET", url)
1110
- return resp.json().get("elementList", "No elements found")
1111
+ return resp.json().get("elementList", NO_ELEMENTS_FOUND)
1111
1112
 
1112
1113
  def get_valid_metadata_values(
1113
1114
  self,
@@ -1210,7 +1211,7 @@ class ValidMetadataManager(Client):
1210
1211
  )
1211
1212
 
1212
1213
  resp = await self._async_make_request("GET", url)
1213
- return resp.json().get("elementList", "No elements found")
1214
+ return resp.json().get("elementList", NO_ELEMENTS_FOUND)
1214
1215
 
1215
1216
  def get_consistent_metadata_values(
1216
1217
  self,
@@ -1809,7 +1810,7 @@ class ValidMetadataManager(Client):
1809
1810
  return resp.json().get("typeDefs", "No TypeDefs Found")
1810
1811
 
1811
1812
  def get_valid_classification_types(self, entity_type: str) -> list | str:
1812
- """Returns all the TypeDefs for relationships that can be attached to the requested entity type.
1813
+ """Returns all the TypeDefs for classifications that can be attached to the requested entity type.
1813
1814
  Async version.
1814
1815
 
1815
1816
  Parameters
@@ -7,13 +7,10 @@ Copyright Contributors to the ODPi Egeria project.
7
7
 
8
8
  """
9
9
 
10
- from requests import Response
11
10
 
12
- from pyegeria._exceptions import (
13
- InvalidParameterException,
14
- )
15
- from pyegeria import Platform, AutomatedCuration
16
- import asyncio
11
+ from requests import Response
12
+ from pyegeria.automated_curation_omvs import AutomatedCuration
13
+ from pyegeria._globals import NO_ELEMENTS_FOUND
17
14
 
18
15
 
19
16
  class ActionAuthor(AutomatedCuration):
@@ -1,30 +1,31 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: pyegeria
3
- Version: 5.2.1.1
3
+ Version: 5.3
4
4
  Summary: A python client for Egeria
5
- Home-page: https://github.com/odpi/egeria-python
6
5
  License: Apache 2.0
7
6
  Keywords: egeria,metadata,governance
8
7
  Author: Dan Wolfson
9
8
  Author-email: dan.wolfson@pdr-associates.com
10
- Requires-Python: >=3.12.3,<4.0.0
9
+ Requires-Python: >3.12,<4.0.0
11
10
  Classifier: License :: OSI Approved :: Apache Software License
12
11
  Classifier: License :: Other/Proprietary License
13
12
  Classifier: Programming Language :: Python
14
13
  Classifier: Programming Language :: Python :: 3
15
- Requires-Dist: click (>=8.1.7,<9.0.0)
16
- Requires-Dist: confluent-kafka (>=2.5.0,<3.0.0)
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Requires-Dist: click
17
16
  Requires-Dist: httpx
18
- Requires-Dist: jupyter (>=1.0.0,<2.0.0)
17
+ Requires-Dist: jupyter
18
+ Requires-Dist: jupyter-notebook-parser (>=0.1.4,<0.2.0)
19
19
  Requires-Dist: mermaid-py
20
20
  Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0)
21
- Requires-Dist: pytest (>=8.2.2,<9.0.0)
21
+ Requires-Dist: pytest (>=8.3.5,<9.0.0)
22
22
  Requires-Dist: requests
23
23
  Requires-Dist: rich
24
24
  Requires-Dist: textual
25
25
  Requires-Dist: trogon (>=0.6.0,<0.7.0)
26
26
  Requires-Dist: urllib3
27
27
  Requires-Dist: validators
28
+ Project-URL: Homepage, https://github.com/odpi/egeria-python
28
29
  Project-URL: Repository, https://github.com/odpi/egeria-python
29
30
  Description-Content-Type: text/markdown
30
31
 
@@ -0,0 +1,196 @@
1
+ commands/cat/.DS_Store,sha256=RY8U0pzFVjHVb0B2edAfhmtpMWmKhR-YSI4WoPy4apc,6148
2
+ commands/cat/Dr-Egeria_md-orig.py,sha256=ZX20BvRo0fIFisvy5Z-VJDLVyKbQoud89-CUV2S66tU,7336
3
+ commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
4
+ commands/cat/__init__.py,sha256=Ps4MxYlYN-ZX1qaSTFwnqgDZTaqUkN35JTOpZ1TBD1Q,451
5
+ commands/cat/dr_egeria_jupyter.py,sha256=rfLVV_84Q8Pqcq1flmijKvZ7sEZFy7JAcAP_NAbb46Y,5656
6
+ commands/cat/dr_egeria_md.py,sha256=bEi2toFazJPiy6ZM2zRbvr_IfhiA1JOcunpwCfrEVsU,13408
7
+ commands/cat/exp_list_glossaries.py,sha256=dC6Bnfm3YSMTKPP146qeslIFRiZnGu5b7iDYE07p4iU,5817
8
+ commands/cat/get_asset_graph.py,sha256=xnXJfpDTVH1TJ2TwE3dtjaXU36Di6-N6JAyhothzz2o,12461
9
+ commands/cat/get_collection.py,sha256=kXPcP8u-SMWfrVyyBhNoxG8mcgB7EV_5i9N9w_IBU7o,5379
10
+ commands/cat/get_project_dependencies.py,sha256=XwstxuDxDDuP2uN1oJi0PTDZVLbqgcc_3lxh_prBZvY,5987
11
+ commands/cat/get_project_structure.py,sha256=5uxWMqNve592OT73GRCO2KoBkgLWRNuQv_emWpS-Fw8,5975
12
+ commands/cat/get_tech_type_elements.py,sha256=IznytHXwDOFriGM6mypV9wuEeM-vT2s66cUzf-IROog,6147
13
+ commands/cat/glossary_actions.py,sha256=zK26fNiv-lpWUP8tHC3wTmdQ6L0_XxlmuNGUyrnSclc,19606
14
+ commands/cat/list_assets.py,sha256=CdJ2coKvvQv2VwJO0Sp9Eg9Fu_uvpC21tgjrdtT9Yz4,6315
15
+ commands/cat/list_categories.py,sha256=DTKE3yrt3N2EIjCGscxrz-pSREqmch7aFqsVFm-3u7o,7841
16
+ commands/cat/list_cert_types.py,sha256=HmrTks0SSYgSMsYz3LqfX5kwDQ6D9KMcynoR_xlWtnE,7137
17
+ commands/cat/list_collections.py,sha256=fOtMoX71DeSW9ci7KErJ9KR4-rPIHdJESZ0mCTFjCXY,7967
18
+ commands/cat/list_data_structures.py,sha256=E9PY_AU1lzGSqUwy711Bjd5uMfV41kpmNPzhdf0nZjs,8642
19
+ commands/cat/list_deployed_catalogs.py,sha256=VdN6R9kRVWX-fGIgubOigvMVPzhF-hKQepHHlS-w-D8,8258
20
+ commands/cat/list_deployed_database_schemas.py,sha256=1Qicke1R2_7Xi3Qf5sp8KJ3_reAIt0z1iaz2sG8Z0Qs,9458
21
+ commands/cat/list_deployed_databases.py,sha256=ryrBW1CxJRfOeLP978qQwxb5oImqhIsHghtcpWeBIrw,7587
22
+ commands/cat/list_deployed_servers.py,sha256=_xR7EaaCsxIjTphxmoCZlARoja_vQqZ881pFiEuhw-8,5719
23
+ commands/cat/list_glossaries.py,sha256=pKJdiRMrSBpmPv0yOWoR_CdGZP06MuxfPGwCXc-kSQw,7666
24
+ commands/cat/list_projects.py,sha256=NzWTuepTGUEyxK-eWvuUxtBgCtNWubVwmz2eqm2UN1c,7997
25
+ commands/cat/list_tech_type_elements.py,sha256=-9omj5en9dSP1xMSljYVHyfXsuhuE1bO2IFj_bZPhAs,6873
26
+ commands/cat/list_tech_types.py,sha256=uqZcXHCzAznhEG6WWeM5j-spwUh8ycygFqpVDeXOG-0,4653
27
+ commands/cat/list_terms.py,sha256=ndl99V6NbJtlV3xqIGWhif1R8tW6emEVYYos0dkydwE,12076
28
+ commands/cat/list_todos.py,sha256=NitCw0uyVVjmN1hxb1W-I4FbOsa8wQxW2ICyOElHyc8,6556
29
+ commands/cat/list_user_ids.py,sha256=X5Q-YNEp38saPYDuy9VwdQC5Qpa4HyC3WvAdbyp_P6M,5108
30
+ commands/cli/__init__.py,sha256=E6vPW3P3iuVPyrwtDIWvU9P0JXOGqP8KupeIZdxc6wc,298
31
+ commands/cli/egeria.py,sha256=CKqJiwu44Ya6IgFPgjVpoP2kUZmohrIqXs4SiM1ckHo,52096
32
+ commands/cli/egeria_cat.py,sha256=HqmtUpSX1pXiItVQC0zGEXzHdw_y_-rzy4W8dWJof8M,18143
33
+ commands/cli/egeria_login_tui.py,sha256=bh9MvJcZPpixXkEtWh_4NK4YcRdeHSVDUBTIhQncSyY,9498
34
+ commands/cli/egeria_my.py,sha256=pWFgznhBs34a6ldRExAFGmZ7K-wBYqjTUfvdUtPq_uc,6349
35
+ commands/cli/egeria_ops.py,sha256=0cjvlNj1hbilQ17aIx2OrQgQzhVzGiCPlz4f7XdP1t8,12519
36
+ commands/cli/egeria_tech.py,sha256=etLJOEzO7UQyfY8aRcmXqoYvh_fdi5CGtT9X6KEW8p0,20995
37
+ commands/cli/ops_config.py,sha256=aYpZgC5WgbeVX81DNKS34sOqMx2pc6yqDuSO2CYRiOo,1513
38
+ commands/cli/txt_custom_v2.tcss,sha256=ixkzpFyTZ5i3byFO9EmEAeJgzbEa7nZb_3iTgxNtVPk,232
39
+ commands/my/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
40
+ commands/my/__init__.py,sha256=0O3kDAlDfx7ohSg_5tZt55B4B3UItgE0noROQLCIUxs,449
41
+ commands/my/list_my_profile.py,sha256=eoWBNNnxUsVFTJOYufs9QsG6BNrra3-Fc9TbrCl-CGE,5731
42
+ commands/my/list_my_roles.py,sha256=jXkIcA71GRBrx556GROML4QrE3JGt-IPuGzVodDhPx0,5190
43
+ commands/my/monitor_my_todos.py,sha256=mM68RH1DJzf38BqmIZZXJrQgpGyAQDO4VimlPYE4osU,7104
44
+ commands/my/monitor_open_todos.py,sha256=Vi6VOcxdHe_94de_ICTHoIOA94KCcTxDCTRb9-4oKRs,5975
45
+ commands/my/todo_actions.py,sha256=daio-D1dVDkAXIcz15bVogJ-nWA_bMGKrpvkK7tc3cQ,8153
46
+ commands/ops/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
47
+ commands/ops/__init__.py,sha256=v7u-zC3gr8soVbYV0Izc2wuEcGCovO00j5v-IhLg3xs,450
48
+ commands/ops/gov_server_actions.py,sha256=OCff2cajMbZOy_nwG6xIiIX1seiu3tLxn-uP_CPrpTM,5685
49
+ commands/ops/list_archives.py,sha256=jKm_easQUjJNRkuasILvuVpQBFuyyBlBHE-L0i0FGgQ,5456
50
+ commands/ops/list_catalog_targets.py,sha256=piru83lRLV7O-HZ2gYTJbZy3nHptGuBJ62QsVrYTLE0,7702
51
+ commands/ops/load_archive.py,sha256=KL9bSqwqPGUPTvB9iLiQCcVH_CzGpdyjG3Mm6NIFt-k,2708
52
+ commands/ops/monitor_asset_events.py,sha256=5XXWt5yvl9mGq1Lve9gdrWT0dvvTWpFr_lFWO-_WdaU,3883
53
+ commands/ops/monitor_engine_activity.py,sha256=yMNR0MI4Vm7IzOFc6jz-De9xDuWPPgUU31LnrLkI-3M,9896
54
+ commands/ops/monitor_engine_activity_c.py,sha256=Jf9Eo-ZtEPminf5gcz4NsT2wDD2AddcbTPJzSYdD5Sc,10773
55
+ commands/ops/monitor_gov_eng_status.py,sha256=gK5HXewXKnLEjCBRkbEyzbGtWs998P-AoFKaMCAQBLs,9917
56
+ commands/ops/monitor_integ_daemon_status.py,sha256=N09KaP1eA3OiGfRS4GgbjKxnkheMYK6oQojNbuO6KRo,11828
57
+ commands/ops/monitor_platform_status.py,sha256=5Vn8C-vDth9qgzEswqwzR2on3Up1mdFp9oVEudMj5PU,7247
58
+ commands/ops/monitor_server_startup.py,sha256=UNws5paaN0VTVLkJp-8MI07oUMdwCRpKcMNM9oUNCW8,3915
59
+ commands/ops/monitor_server_status.py,sha256=w7uFLR6BXgPtuC4L5cp8nWsw3W1Z-5JB2nCo1N_zEF4,7144
60
+ commands/ops/orig_monitor_server_list.py,sha256=EYmvygmrhNmcXORsRHtCniuZ3C9ko8CBRlH34vZRrPg,4651
61
+ commands/ops/orig_monitor_server_status.py,sha256=QCRi5uxrtZvXnZGcMPvlsLHr6P9v-5m12CqqL691lvc,4033
62
+ commands/ops/refresh_integration_daemon.py,sha256=cOgdWQV6pTajIBWNeJy7MJo32JtMxPDHcxivfT72NWc,2981
63
+ commands/ops/restart_integration_daemon.py,sha256=M8vb-SEIGFd4fnZcwFD1rRNYXGe-jySzFGnizB72dSI,2917
64
+ commands/ops/table_integ_daemon_status.py,sha256=XyHM4LzOslWFmH5q9nFa8tpZNylL9JztOavtQacnP7w,8430
65
+ commands/ops/x_engine_actions.py,sha256=sjoyDJD2_0xQkE2tSlFdBxD2d9C3Nzcy9qi69dWC4Rw,2284
66
+ commands/tech/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
67
+ commands/tech/__init__.py,sha256=0O3kDAlDfx7ohSg_5tZt55B4B3UItgE0noROQLCIUxs,449
68
+ commands/tech/generic_actions.py,sha256=vHwgaADbai61R46QiCvS9pZr4vZXAN1XEtcizaSEidU,2677
69
+ commands/tech/get_element_info.py,sha256=a1msEwL_kKjO8uslJa-tSgrdW6UgKUY4iyLjZqzeG9M,4761
70
+ commands/tech/get_guid_info.py,sha256=7QBMteAd8mbJymkJC8AJW8D2TQ8Roc2zDcNb0tI2l-A,4295
71
+ commands/tech/get_tech_details.py,sha256=m312TXXu5UkJ42g0YopntXWJwSSAil1Udj62erD8cOU,6383
72
+ commands/tech/get_tech_type_template.py,sha256=kyKaqr5gBsmUyxePXM2hfeHCtzef8mQ_e6_rbf4ssYs,6246
73
+ commands/tech/list_all_om_type_elements.py,sha256=xJmI7p4eNWSB09NYANz5wGAg2oqKqs4dv9rfSQA7zuA,5999
74
+ commands/tech/list_all_om_type_elements_x.py,sha256=KkUSWtUWnQEbuK5PwLF5C3whft_V9OOtYD2M-aQfg3c,6570
75
+ commands/tech/list_all_related_elements.py,sha256=2uAYHEuPEjXGM5I_zVblZFOGoyGP02lhR5tPc0u8zog,7782
76
+ commands/tech/list_anchored_elements.py,sha256=OJx3U77QCJadheD0RRiRw-4GvheoqL0gdBqBgHzEKho,7589
77
+ commands/tech/list_asset_types.py,sha256=GbW8Tj9o1wh_qJM6b2oIESyzr9tcYcvjoL-0rnOXViI,4176
78
+ commands/tech/list_elements_by_classification_by_property_value.py,sha256=aCNSpQgyRn6u-8nU9iLCuYzj4kVBKKCnLuBSGKP_w-8,7132
79
+ commands/tech/list_elements_by_property_value.py,sha256=ZObsaQ0jXXN88pVoO68_NVsSXN2CnGjLsOhCuYDzINs,6489
80
+ commands/tech/list_elements_by_property_value_x.py,sha256=rk0cY3fKUE0zEvHe42OYUvXItzl8EqW4euvjbk8vSd0,7011
81
+ commands/tech/list_elements_for_classification.py,sha256=4Opb_dp-p4jR4jO6ZaA3Lc3bapojT95iLkvLN9ehNK0,6216
82
+ commands/tech/list_gov_action_processes.py,sha256=2yhfzlBIJCxciT9AQyfik_-Zkfcca95xjRdaJfMWYRM,4562
83
+ commands/tech/list_information_supply_chains.py,sha256=SydzAK_xp86LL8-IKPTTgVOyM3J5BfwxM2MQqrQILFE,6328
84
+ commands/tech/list_registered_services.py,sha256=yH0C_ge5ZYylrPhKaT0VWFkBMaLJopTzL2ZhJJcAiSE,6548
85
+ commands/tech/list_related_elements_with_prop_value.py,sha256=jNfpfdWmgNsSFKqKfKHTYhrPTu6m0LeOUkmc6DeupdE,8224
86
+ commands/tech/list_related_specification.py,sha256=m72yh1ayud58_BqWhgEgdgnaWIxUYKLxPSulJmCoZ7o,5932
87
+ commands/tech/list_relationship_types.py,sha256=QQZLRhAWUTpu3DCqem6og7sm1W95f3oE-gv5RY5bMnY,5766
88
+ commands/tech/list_relationships.py,sha256=g2Kl6LSvmQ3SCjsaZ3oFk5PuYVVeqRKfEhmD-icJjzo,5940
89
+ commands/tech/list_solution_blueprints.py,sha256=hIW_Q6ess0OKidCEJ_EOb4FDEq2w6eHkxTlQjRE9TAY,7110
90
+ commands/tech/list_solution_components.py,sha256=JxOFyCZ4HFHwg9E2Th7cylGsE7LbzEW3nqRFjoPu2rE,6908
91
+ commands/tech/list_solution_roles.py,sha256=yWjh7_5w2vxFYMycn4kJGKThpQPE8bxnHSp1RwmY2Rk,6680
92
+ commands/tech/list_tech_templates.py,sha256=5hhDJJjrqGyWDPPcFzFeFs-4rsal1M2Bl7EUuJNz8Ns,14144
93
+ commands/tech/list_valid_metadata_values.py,sha256=_zgOdq2N6s7GjLd8iEc5xVfplKfOnKZ-ySM-lSdgYn8,6315
94
+ commands/tech/table_tech_templates.py,sha256=jI1c9YKa3KirArMNXeCRKeaiVdwQSN-ztPqkag6jdZs,9500
95
+ commands/tech/x_list_related_elements.py,sha256=ynaw792VnbMZ9IXBi5mmG7xBfC0kn0esKiFTsjvLGzc,5900
96
+ md_processing/__init__.py,sha256=f1L8o0ewh3YdTm4tinuUyMBQ0PNnCe7kPRPLeVznD6o,4611
97
+ md_processing/data/commands.json,sha256=sRqtASsOSoQBuiscVjbsG_-TOYtDFBgGzeCElB0QHvc,109916
98
+ md_processing/dr_egeria_inbox/archive/dr_egeria_intro.md,sha256=25iXGRIkGUiDbfop8Rpd-QRdsjmI3Jo-S4yzfzAmeDE,8549
99
+ md_processing/dr_egeria_inbox/archive/dr_egeria_intro_more_terms.md,sha256=WY33hougDWyrDRtk8-4Sm2z4CNHG6u1jKNUZX_QbpG8,27000
100
+ md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part1.md,sha256=gI1DmLfqUI9FtVVynYJe0NqSr4PJ0Ej--BXetyA49js,9871
101
+ md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part2.md,sha256=xXBt7J61eLHpVW41OoIPztsyn48U9HLqbLG5h8s9wLw,13666
102
+ md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part3.md,sha256=wlbFOxDn7jiTr43hdwXw_M894kybCQgdSmGR8QC8PWw,24311
103
+ md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part4.md,sha256=JPIDeQjKwXgHhj9FE4oOfRmcZROvH9N9EUq-rbVBZ1E,1381
104
+ md_processing/dr_egeria_inbox/archive/freddie_intro.md,sha256=7srXdwdVO4phWSp0nhbdt6U8KgVG2WCSKfLCYzRHO-0,7437
105
+ md_processing/dr_egeria_inbox/archive/freddie_intro_orig.md,sha256=JRfOtByc57-En5rp5z-g1l93FIbem3ST7plItWr6IKY,7067
106
+ md_processing/dr_egeria_inbox/archive/test-term.md,sha256=9XKBBrpgMBbXB-DRVgyhR4lwy4Z3zX1Tp9H601y06qs,1529
107
+ md_processing/dr_egeria_inbox/cat_test.md,sha256=Xcz8Qwak-TEj-JnXoqZTpX3sy501tRqvFVllB14QX6w,1068
108
+ md_processing/dr_egeria_inbox/data_field.md,sha256=jbjihghaBRAd_14n3LO1-vGCPzS3aNpNrntv1eCLKXY,702
109
+ md_processing/dr_egeria_inbox/data_spec.md,sha256=3VrV2pf0czFzYcWonn5L5W1NZG1CgSBViI0m1y0NBFA,1119
110
+ md_processing/dr_egeria_inbox/data_spec_test.md,sha256=pSRtK0l0vygBv63rsy1Jq7FfyFqa1WQxolhIor0uWCc,16838
111
+ md_processing/dr_egeria_inbox/data_test.md,sha256=nPIvnNNKbwegAWtsSBdko4A9DkhLFES5eBLKCweSDOs,1178
112
+ md_processing/dr_egeria_inbox/dr_egeria_intro_categories.md,sha256=LcsXBuzL_I7972WRXs7-SGMZTfuYVWPtfTVIm995wuk,5557
113
+ md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md,sha256=0nWv-AAfdkoliy6i0xcwGb-LUb7c_BhU2qi7CssP1L0,10415
114
+ md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md,sha256=9Zp04P4zNHxvviy8dJgjEB0AyYB9VwVG05POzlFnvEk,15388
115
+ md_processing/dr_egeria_inbox/dr_egeria_intro_part3.md,sha256=ujoKrf54EOJ9Z32QWneWJL8f6gZ32GxCdG76cYCvwBk,40559
116
+ md_processing/dr_egeria_inbox/dr_egeria_isc1.md,sha256=22mus2pnS55P_LTcnE6AnjSYjnEOB7XhLqEDue4oOIM,449
117
+ md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb,sha256=dbzNu90fCKNohOWVSRBOB1GLyd95x8Qw51I5AkaPtso,11552
118
+ md_processing/dr_egeria_inbox/glossary_test1.md,sha256=H92jI2i25yXrHTQLfT-o5K4BL86Vn-pyJNsQbFwWCZE,4771
119
+ md_processing/dr_egeria_inbox/rel.md,sha256=stIzGh1FTXuCW_GniFKS1_mtmQPTwA1a1OmYeP5TszQ,97
120
+ md_processing/dr_egeria_inbox/sb.md,sha256=aY5QlVMxi5lh91ttr8bMCbl2z4qmsIN6XJ4SojFz8VU,1945
121
+ md_processing/dr_egeria_inbox/search_test.md,sha256=z48ds18XYrdvM8Z2nHwTUQp11epvdqLG4dI7UBsjlIQ,293
122
+ md_processing/dr_egeria_inbox/solution-components.md,sha256=RA57S2C_enXDm_d77Og2bzvsydMATY0-xjzwp6td7qI,2989
123
+ md_processing/dr_egeria_inbox/solution_blueprints.md,sha256=9__-MhIf7u4am_YtV3UsMSKocqzoJrg8qTpmBo0rJUQ,2018
124
+ md_processing/dr_egeria_inbox/synonym_test.md,sha256=lUAfT8E5gT4ml7gMI_G_nB3gsnimuaUEB6crMar3-8w,430
125
+ md_processing/dr_egeria_inbox/t1.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
+ md_processing/dr_egeria_inbox/t2.md,sha256=FP9xUKlP89Y92_9YESChyglS6r8YgvBGgPMTSWI7m_E,6950
127
+ md_processing/dr_egeria_outbox/processed-2025-05-15 19:52-data_test.md,sha256=TMXcpBUl9hSbI65BNf4HkCSlEJiQXfkBlXmm7oKQ-xc,1413
128
+ md_processing/dr_egeria_outbox/processed-2025-05-16 07:39-data_test.md,sha256=zFs-cJva6F4GzbR-X9tiAljbFjVnXPCMM-tWrGv6rOY,1284
129
+ md_processing/dr_egeria_outbox/processed-2025-05-17 16:01-data_field.md,sha256=e5WcI6y-bgn6e43DGoLvg2X7g5pJWUWE4_zQb_crGIA,574
130
+ md_processing/dr_egeria_outbox/processed-2025-05-18 15:51-data_test.md,sha256=wUxzKTewTxIwfJvtBhQfa2N923o4hIIxS3udU3jG_II,1535
131
+ md_processing/dr_egeria_outbox/processed-2025-05-18 16:47-data_test.md,sha256=bhTobhB5ZYG2NLWo2GVjuJ7t6H61x7DKMFcTM8Twsr4,1284
132
+ md_processing/dr_egeria_outbox/processed-2025-05-19 07:14-data_test.md,sha256=UdNYXbkNchtqZuQ8rRTtN22DFVietuSdyzB9KKvV7bY,1529
133
+ md_processing/dr_egeria_outbox/processed-2025-05-19 07:20-data_test.md,sha256=JjUEgVlRW1NmHIjg3uCKTf1a8OIUXEtHEJhGn7kyb58,1525
134
+ md_processing/dr_egeria_outbox/processed-2025-05-19 07:22-data_test.md,sha256=nNKDdZimvmi3QrktkeJdhhfxnU_MNLhnUnzwTnXZ_4M,1284
135
+ md_processing/dr_egeria_outbox/processed-2025-05-19 09:26-data_test.md,sha256=OiBMX1IE0b7FBVE1lmcCo93Nn0kTrgcGj8Gql9jtoPw,1286
136
+ md_processing/dr_egeria_outbox/processed-2025-05-19 10:27-data_test.md,sha256=V-4zCLm4JvfptxZyUEzArwgStWeRvSpB5qmcTItOcIA,1286
137
+ md_processing/dr_egeria_outbox/processed-2025-05-19 14:04-data_test.md,sha256=mKZOkAx2d_8_jqnR21VXNO4xBDc1wBwnPtPtF-UzfiU,1286
138
+ md_processing/md_commands/__init__.py,sha256=ssEojzFlSYtY2bHqqOoKo8PFaANZ_kq_gIbtlXnuc2s,93
139
+ md_processing/md_commands/blueprint_commands.py,sha256=ZiZYK3FqOBTmnVr-mMiD-sj3N4ZMkMPzcJS4q-zoTUk,14889
140
+ md_processing/md_commands/data_designer_commands.py,sha256=8zaJItRZxfdmTaNDxFD3IRpXqQ-DgI3xav8vOoonID4,60816
141
+ md_processing/md_commands/glossary_commands.py,sha256=c4o0MTsdtTTMkPk5LNBgDnCI8PqQn_y_wkcuEYL59yg,54852
142
+ md_processing/md_commands/project_commands.py,sha256=d4kF-ldz6vqZy50ajxWLoupZs4wJvBShJScDqfH8O4U,8050
143
+ md_processing/md_processing_utils/__init__.py,sha256=LxAmxlcji26ziKV4gGar01d95gL9vgToRIeJW8N-Ifs,80
144
+ md_processing/md_processing_utils/common_md_proc_utils.py,sha256=vIjifi4vvdKRuM3zCwq8SPyoN84GO4RC0ucWQA5OkUc,33712
145
+ md_processing/md_processing_utils/common_md_utils.py,sha256=3caJTJL8wxlFOIKPgL-BMxT9ap60EAYKw6cpBziRYYA,5450
146
+ md_processing/md_processing_utils/extraction_utils.py,sha256=780oJsXvW50kX2d64FQIwJQTigQuNiLVRitAEzComQM,20066
147
+ md_processing/md_processing_utils/md_processing_constants.py,sha256=HCVD3polwE-yfWzudm26kv6RSh9YrH7SCidHat1oMd4,6233
148
+ md_processing/md_processing_utils/message_constants.py,sha256=UBf18obM83umM6zplR7ychre4xLRbBnTzidHDZ2gNvM,548
149
+ pyegeria/.DS_Store,sha256=aExDotxdVFK-8C6Es8SJjvtOsGrm-SknQULFzsFDZCQ,6148
150
+ pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
151
+ pyegeria/__init__.py,sha256=NgPs08IQIH25GlvFXjPGDxKB6ln44lAS0EWHg4LJSh4,30874
152
+ pyegeria/_client.py,sha256=JxKPwpq8Q9ZzgFGRiMu1Z426zSpgEM4TXzZMex-STB0,32023
153
+ pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
154
+ pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
155
+ pyegeria/_globals.py,sha256=LQftrioc75zTsDUvAu1aRM3-a5hdPNVgTkoVN7GH_kY,1056
156
+ pyegeria/_validators.py,sha256=vP9nuZwucnCo_LrPU7hkitpWzaych5bTZEKE58TaTnQ,12726
157
+ pyegeria/asset_catalog_omvs.py,sha256=P6FceMP0FgakGSOt3ePxpEbsF7nnypzo1aQahjdL_94,29021
158
+ pyegeria/automated_curation_omvs.py,sha256=tzwCyXL0Hx8UjryBBWcPoEuBRajXZpLuwPQ1vuOg2yc,130349
159
+ pyegeria/classification_manager_omvs.py,sha256=n55-62Mby-_5pxPGaz3nkjM9NWlY4PzSl3tP0WSnGJU,187212
160
+ pyegeria/collection_manager_omvs.py,sha256=Z5Eu_s7l0k5ESzMxUUuasxgT-h1HtZV1b38jZ6BTE_I,120281
161
+ pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
162
+ pyegeria/create_tech_guid_lists.py,sha256=hf5q8Xrdsz-bqeIW3yTORZ1XB6_BrKzLDWWwC_bNG2g,4811
163
+ pyegeria/data_designer_omvs.py,sha256=pCiD5KPuvIktuS3Sm_lfMhW1PI7UT29bqDFNmTUMe5Q,186076
164
+ pyegeria/dr.egeria spec.md,sha256=QC_z3EqJ0WW18NYQFW_AtqO4SMWH5MJNVmM--54VzX4,959
165
+ pyegeria/egeria_cat_client.py,sha256=d8dQNPLzL4efi99OJfH1T-Rt1N0k9Rf9LX8LpuhiFls,2179
166
+ pyegeria/egeria_client.py,sha256=egGv41eb94P_lWIQ54I_90WT_IukJ_J6ZLOYCHpx2js,4676
167
+ pyegeria/egeria_config_client.py,sha256=3TZUeXSl1f7SQ2WWYTbgOu1Cu1YqApilErAgjZLzbWY,1391
168
+ pyegeria/egeria_my_client.py,sha256=eOKLk2zdI6FHZnhAimfR_0yNdBjpUgD41dJZcJODcqE,1607
169
+ pyegeria/egeria_tech_client.py,sha256=FedfavxepFvy6IMSo1YBHh4F_Ahid8uoUsHoSbq9ywM,4200
170
+ pyegeria/feedback_manager_omvs.py,sha256=0xBs0p54vmdfVYYgQ8pOanLC4fxfgTk1Z61Y6D1U7_I,152978
171
+ pyegeria/full_omag_server_config.py,sha256=CQqLCy_3DZFvJZEOcGf50HWdFaWpiAIs6z-kKyjvpDA,47464
172
+ pyegeria/glossary_browser_omvs.py,sha256=j6CJt1_O42OT3bVzwwiAoqsCtH5urC5zfghEl0tO8Vg,167000
173
+ pyegeria/glossary_manager_omvs.py,sha256=aGYZFuzWrPmPLLNwkNpV7-FsalqwDR7gyBzgdubnM04,87989
174
+ pyegeria/m_test.py,sha256=M5-M2ZczsAJLXWfSeqTTADHdx6Ku-y4PbQ4M21JthAE,7778
175
+ pyegeria/md_processing_helpers.py,sha256=xlQuK5eP_PJqUdy4BScQ97NyBD95jMS3EUg0wK5CsZo,2137
176
+ pyegeria/md_processing_utils.py,sha256=KRESCqAYjCgHRAdhHH49lLDDhaq740CUlqTG0bN-6Oo,99119
177
+ pyegeria/md_processing_utils_orig.py,sha256=SToZtXQiysi2_vmIY4-T2NIELRirzQ1zjkho_2jFsNE,52603
178
+ pyegeria/mermaid_utilities.py,sha256=Zcn8JRrqtf62oHoxuvP9tQ5G-BFxOGMNfr7-peuykgY,54290
179
+ pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
180
+ pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
181
+ pyegeria/output_formatter.py,sha256=_4BxCNjzdSa6sda_0qSH52vxxK_npMKtkN2JN_-iwF4,15097
182
+ pyegeria/platform_services.py,sha256=YEpZsGGsbSdesN8ceyFhV0OMzKG6znTZrREMTRimLps,41701
183
+ pyegeria/project_manager_omvs.py,sha256=612rYbu2eLR8Sgv9nBzjkFJ2PuxIBd_b-zwcnpVbXhc,70665
184
+ pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
185
+ pyegeria/runtime_manager_omvs.py,sha256=Z5wY9ignNjil8O6yjihZftxkGoh9A4PQDcXhoIsOIT8,79698
186
+ pyegeria/server_operations.py,sha256=5k0KVz3u8qRLwtz16zT3J86LZY3pkUrMDcps8srmq1A,16831
187
+ pyegeria/solution_architect_omvs.py,sha256=-PrmNGOVbiIniud328PQ3VY6GF9OPxC9OV8hlLhZZmk,87384
188
+ pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDTM-rQ,42755
189
+ pyegeria/utils.py,sha256=GCt1C0bp0Xng1ahzbZhzV9qQwH7Dj93IaCt2dvWb-sg,5417
190
+ pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
191
+ pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
192
+ pyegeria-5.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
193
+ pyegeria-5.3.dist-info/METADATA,sha256=quqtVUrCHsq35Wp1EneuTCfWqwg2WVx-75-wip6-m7k,2753
194
+ pyegeria-5.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
195
+ pyegeria-5.3.dist-info/entry_points.txt,sha256=t-jdafZ1zTF11pehQeRmmXrnzbaH2zKSiQPu2GfD-Eo,5987
196
+ pyegeria-5.3.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,99 @@
1
+ [console_scripts]
2
+ add_term_to_category=commands.cat.glossary_actions:add_term_to_category
3
+ change_todo_status=commands.my.todo_actions:change_todo_status
4
+ create_category=commands.cat.glossary_actions:create_category
5
+ create_glossary=commands.cat.glossary_actions:create_glossary
6
+ create_term=commands.cat.glossary_actions:create_term
7
+ create_todo=commands.my.todo_actions:create_todo
8
+ delete_category=commands.cat.glossary_actions:delete_category
9
+ delete_element=commands.tech.generic_actions:delete_element
10
+ delete_glossary=commands.cat.glossary_actions:delete_glossary
11
+ delete_term=commands.cat.glossary_actions:delete_term
12
+ delete_todo=commands.my.todo_actions:delete_todo
13
+ dr_egeria_jupyter=commands.cat.dr_egeria_jupyter:process_jupyter_notebook
14
+ dr_egeria_md=commands.cat.dr_egeria_md:process_markdown_file
15
+ egeria_login=commands.cli.egeria_login_tui:login
16
+ export_terms_to_csv_file=commands.cat.glossary_actions:export_terms_csv
17
+ get_asset_graph=commands.cat.get_asset_graph:main
18
+ get_collection=commands.cat.get_collection:main
19
+ get_element_info=commands.tech.get_element_info:main
20
+ get_guid_info=commands.tech.get_guid_info:main
21
+ get_project_dependencies=commands.cat.get_project_dependencies:main
22
+ get_project_structure=commands.cat.get_project_structure:main
23
+ get_tech_details=commands.tech.get_tech_details:main
24
+ get_tech_type_elements=commands.cat.get_tech_type_elements:main
25
+ get_tech_type_template=commands.tech.get_tech_type_template:main
26
+ hey_egeria=commands.cli.egeria:cli
27
+ hey_egeria_cat=commands.cli.egeria_cat:cli
28
+ hey_egeria_my=commands.cli.egeria_my:cli
29
+ hey_egeria_ops=commands.cli.egeria_ops:cli
30
+ hey_egeria_tech=commands.cli.egeria_tech:cli
31
+ list_all_related_elements=commands.tech.list_all_related_elements:main
32
+ list_anchored_elements=commands.tech.list_anchored_elements:main
33
+ list_archives=commands.ops.list_archives:main
34
+ list_asset_types=commands.tech.list_asset_types:main
35
+ list_assets=commands.cat.list_assets:main
36
+ list_catalog_targets=commands.ops.list_catalog_targets:main
37
+ list_categories=commands.cat.list_categories:main
38
+ list_cert_types=commands.cat.list_cert_types:main
39
+ list_collections=commands.cat.list_collections:main
40
+ list_deployed_catalogs=commands.cat.list_deployed_catalogs:main
41
+ list_deployed_databases=commands.cat.list_deployed_databases:main
42
+ list_deployed_schemas=commands.cat.list_deployed_database_schemas:main
43
+ list_deployed_servers=commands.cat.list_deployed_servers.py:main
44
+ list_elements=commands.tech.list_all_om_type_elements:main
45
+ list_elements_by_classification_by_prop_value=commands.tech.list_elements_by_classification_by_property_value:main
46
+ list_elements_by_prop_value=commands.tech.list_elements_by_property_value:main
47
+ list_elements_by_prop_value_x=commands.tech.list_elements_by_property_value_x:main
48
+ list_elements_for_classification=commands.tech.list_elements_for_classification:main
49
+ list_elements_x=commands.tech.list_all_om_type_elements_x:main
50
+ list_engine_activity=commands.ops.monitor_engine_activity:main_paging
51
+ list_engine_activity_compressed=commands.ops.monitor_engine_activity_c:main_paging
52
+ list_glossaries=commands.cat.list_glossaries:main
53
+ list_gov_action_processes=commands.tech.list_gov_action_processes:main
54
+ list_gov_eng_status=commands.ops.monitor_gov_eng_status:main_paging
55
+ list_info_supply_chains=commands.tech.list_information_supply_chains:main
56
+ list_integ_daemon_status=commands.ops.monitor_integ_daemon_status:main_paging
57
+ list_my_profile=commands.my.list_my_profile:main
58
+ list_my_roles=commands.my.list_my_roles:main
59
+ list_projects=commands.cat.list_projects:main
60
+ list_registered_services=commands.tech.list_registered_services:main
61
+ list_related_elements_with_prop_value=commands.tech.list_related_elements_with_prop_value:main
62
+ list_related_specification=commands.tech.list_related_specification:main
63
+ list_relationship_types=commands.tech.list_relationship_types:main
64
+ list_relationships=commands.tech.list_relationships:main
65
+ list_solution_blueprints=commands.tech.list_solution_blueprints:main
66
+ list_solution_components=commands.tech.list_solution_components:main
67
+ list_solution_roles=commands.tech.list_solution_roles:main
68
+ list_tech_templates=commands.tech.list_tech_templates:main
69
+ list_tech_type_elements=commands.cat.list_tech_type_elements:main
70
+ list_tech_types=commands.cat.list_tech_types:main
71
+ list_terms=commands.cat.list_terms:main
72
+ list_todos=commands.cat.list_todos:main
73
+ list_user_ids=commands.cat.list_user_ids:main
74
+ list_valid_metadata_values=commands.tech.list_valid_metadata_values:main
75
+ load_archive=commands.ops.load_archive:load_archive
76
+ load_archive_tui=commands.ops.load_archive:tui
77
+ load_terms_from_csv_file=commands.cat.glossary_actions:import_terms_csv
78
+ mark_todo_complete=commands.my.todo_actions:mark_todo_complete
79
+ monitor_asset_events=commands.ops.monitor_asset_events:main
80
+ monitor_coco_status=commands.ops.monitor_coco_status:main
81
+ monitor_engine_activity=commands.ops.monitor_engine_activity:main_live
82
+ monitor_engine_activity_compressed=commands.ops.monitor_engine_activity_c:main_live
83
+ monitor_gov_eng_status=commands.ops.monitor_gov_eng_status:main_live
84
+ monitor_integ_daemon_status=commands.ops.monitor_integ_daemon_status:main_live
85
+ monitor_my_todos=commands.my.monitor_my_todos:main
86
+ monitor_open_todos=commands.my.monitor_open_todos:main
87
+ monitor_platform_status=commands.ops.monitor_platform_status:main
88
+ monitor_server_list=commands.ops.orig_monitor_server_list:main
89
+ monitor_server_startup=commands.ops.monitor_server_startup:main
90
+ monitor_server_status=commands.ops.monitor_server_status:main
91
+ reassign_todo=commands.my.todo_actions:reassign_todo
92
+ refresh_gov_eng_config=commands.ops.gov_server_actions:refresh_gov_eng_config
93
+ refresh_integration_daemon=commands.ops.refresh_integration_daemon:main
94
+ remove_term_from_category=commands.cat.glossary_actions:remove_term_from_category
95
+ restart_integration_daemon=commands.ops.restart_integration_daemon:main
96
+ start_daemon=commands.ops.engine_actions:start_daemon
97
+ stop_daemon=commands.ops.engine_actions:stop_daemon
98
+ update_category=commands.cat.glossary_actions:update_category
99
+
@@ -1,47 +0,0 @@
1
- <!-- SPDX-License-Identifier: CC-BY-4.0 -->
2
- <!-- Copyright Contributors to the Egeria project. -->
3
-
4
- The Commands in this directory provide a simple but useful command line interface for the Egeria environment. They
5
- are built with the **Rich** python package and demonstrate the use of **pyegeria**. More detailed documentation can be
6
- found in the `doc` folder.
7
-
8
- The commands can either be invoked from one of the command line interfaces or executed directly as python scripts.
9
- To invoke the commands directly, install them with pipx by invoking:
10
-
11
- `pipx install pyegeria`
12
-
13
- Some of the widgets are "live" - that is running continuously until ctrl-c is issued to interrupt it. Other widgets are
14
- **paged** to allow you to page through long lists of content. Paged interfaces have a similar behaviour to the unix
15
- `more` command - so, for example you type `q` to quit.
16
-
17
- As the number of widgets has grown, they have been organized by role into different sub-directories:
18
-
19
- * cat (catalog_user) - for users of the Egeria environment
20
- * cli - command line interfaces to simplify finding and using the commands
21
- * my - for visualizing work and individual items
22
- * ops - for configuring and operating Egeria
23
- * tech - for technical users to configure and use Egeria
24
-
25
- The command line interfaces (CLIs) can be invoked with:
26
-
27
- hey_egeria - provides access to all commands
28
- hey_egeria_cat - access for commands used by catalog users
29
- hey_egeria_my - access to personal information commands for all users
30
- hey_egeria_ops - access to operations commands
31
- hey_egeria_tech - access to commands for technical users
32
-
33
- Each of these CLIs have a textual user interface (TUI) that provides a forms based approach
34
- to utilizing each command. You invoke the TUI by adding `tui` to the cli command. For instance:
35
-
36
- `hey_egeria_cat tui`
37
-
38
- To execute a command from the TUI type ctrl-R.
39
-
40
-
41
- To upgrade the CLI commands you can type:
42
-
43
- `pipx upgrade pyegeria`
44
-
45
- ----
46
- License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
47
- Copyright Contributors to the Egeria project.
@@ -1,22 +0,0 @@
1
- """
2
- SPDX-License-Identifier: Apache-2.0
3
- Copyright Contributors to the ODPi Egeria project.
4
-
5
-
6
-
7
- pyegeria commands available also from python.
8
- """
9
-
10
- from .ops.monitor_gov_eng_status import display_gov_eng_status
11
- from .ops.monitor_integ_daemon_status import display_integration_daemon_status
12
- from .ops.table_integ_daemon_status import (
13
- display_integration_daemon_status as table_integ_daemon_status,
14
- )
15
- from .ops.monitor_engine_activity_c import display_engine_activity_c
16
- from .ops.list_catalog_targets import display_catalog_targets
17
-
18
- from .cat.list_glossaries import display_glossaries
19
- from .cat.list_terms import display_glossary_terms
20
- from .cat.list_deployed_catalogs import list_deployed_catalogs
21
- from .cat.list_deployed_database_schemas import list_deployed_database_schemas
22
- from .cat.list_deployed_databases import list_deployed_databases
@@ -1 +0,0 @@
1
- """ Placeholder """