pyegeria 5.3.4.2__tar.gz → 5.3.4.4.dev1__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 (825) hide show
  1. pyegeria-5.3.4.4.dev1/PKG-INFO +71 -0
  2. pyegeria-5.3.4.4.dev1/pyegeria/.DS_Store +0 -0
  3. pyegeria-5.3.4.4.dev1/pyegeria/__init__.py +375 -0
  4. pyegeria-5.3.4.4.dev1/pyegeria/_client.py +770 -0
  5. pyegeria-5.3.4.4.dev1/pyegeria/_exceptions.py +390 -0
  6. pyegeria-5.3.4.4.dev1/pyegeria/_globals.py +36 -0
  7. pyegeria-5.3.4.4.dev1/pyegeria/_validators.py +385 -0
  8. pyegeria-5.3.4.4.dev1/pyegeria/asset_catalog_omvs.py +808 -0
  9. pyegeria-5.3.4.4.dev1/pyegeria/automated_curation_omvs.py +3764 -0
  10. pyegeria-5.3.4.4.dev1/pyegeria/classification_manager_omvs.py +5242 -0
  11. pyegeria-5.3.4.4.dev1/pyegeria/collection_manager_omvs.py +2727 -0
  12. pyegeria-5.3.4.4.dev1/pyegeria/commands/.DS_Store +0 -0
  13. pyegeria-5.3.4.4.dev1/pyegeria/commands/__init__.py +30 -0
  14. pyegeria-5.3.4.4.dev1/pyegeria/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  15. pyegeria-5.3.4.4.dev1/pyegeria/commands/__pycache__/server_status_widget.cpython-312-pytest-7.4.4.pyc +0 -0
  16. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__init__.py +1 -0
  17. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/__init__.cpython-312.pyc +0 -0
  18. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/get_asset_graph.cpython-312.pyc +0 -0
  19. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/get_collection.cpython-312.pyc +0 -0
  20. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/get_project_dependencies.cpython-312.pyc +0 -0
  21. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/get_project_structure.cpython-312.pyc +0 -0
  22. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/get_tech_type_elements.cpython-312.pyc +0 -0
  23. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/glossary_actions.cpython-312.pyc +0 -0
  24. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_assets.cpython-312.pyc +0 -0
  25. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_cert_types.cpython-312.pyc +0 -0
  26. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_collections.cpython-312.pyc +0 -0
  27. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_deployed_catalogs.cpython-312.pyc +0 -0
  28. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_deployed_database_schemas.cpython-312.pyc +0 -0
  29. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_deployed_databases.cpython-312.pyc +0 -0
  30. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_glossaries.cpython-312.pyc +0 -0
  31. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_projects.cpython-312.pyc +0 -0
  32. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_servers_deployed_imp.cpython-312.pyc +0 -0
  33. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_tech_type_elements.cpython-312.pyc +0 -0
  34. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_tech_types.cpython-312.pyc +0 -0
  35. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_terms.cpython-312.pyc +0 -0
  36. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_todos.cpython-312.pyc +0 -0
  37. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/__pycache__/list_user_ids.cpython-312.pyc +0 -0
  38. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/exp_list_glossaries.py +155 -0
  39. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/get_asset_graph.py +319 -0
  40. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/get_collection.py +147 -0
  41. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/get_project_dependencies.py +166 -0
  42. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/get_project_structure.py +166 -0
  43. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/get_tech_type_elements.py +172 -0
  44. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/glossary_actions.py +361 -0
  45. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_assets.py +179 -0
  46. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_cert_types.py +194 -0
  47. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_collections.py +162 -0
  48. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_deployed_catalogs.py +218 -0
  49. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_deployed_database_schemas.py +252 -0
  50. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_deployed_databases.py +203 -0
  51. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_glossaries.py +150 -0
  52. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_projects.py +221 -0
  53. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_servers_deployed_imp.py +158 -0
  54. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_tech_type_elements.py +190 -0
  55. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_tech_types.py +140 -0
  56. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_terms.py +244 -0
  57. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_todos.py +189 -0
  58. pyegeria-5.3.4.4.dev1/pyegeria/commands/cat/list_user_ids.py +146 -0
  59. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  60. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/__pycache__/egeria_login_tui.cpython-312.pyc +0 -0
  61. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/__pycache__/egeria_ops.cpython-312.pyc +0 -0
  62. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/__pycache__/ops_config.cpython-312.pyc +0 -0
  63. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/egeria.py +2065 -0
  64. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/egeria_cat.py +631 -0
  65. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/egeria_login_tui.py +311 -0
  66. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/egeria_my.py +255 -0
  67. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/egeria_ops.py +510 -0
  68. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/egeria_tech.py +830 -0
  69. pyegeria-5.3.4.4.dev1/pyegeria/commands/cli/ops_config.py +46 -0
  70. pyegeria-5.3.4.4.dev1/pyegeria/commands/doc/.DS_Store +0 -0
  71. pyegeria-5.3.4.4.dev1/pyegeria/commands/doc/Visual Command Reference/.DS_Store +0 -0
  72. pyegeria-5.3.4.4.dev1/pyegeria/commands/doc/Visual Command Reference/cat/.DS_Store +0 -0
  73. pyegeria-5.3.4.4.dev1/pyegeria/commands/doc/Visual Command Reference/cat/show/.DS_Store +0 -0
  74. pyegeria-5.3.4.4.dev1/pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/.DS_Store +0 -0
  75. pyegeria-5.3.4.4.dev1/pyegeria/commands/doc/glossary/.DS_Store +0 -0
  76. pyegeria-5.3.4.4.dev1/pyegeria/commands/doc/glossary/images/.DS_Store +0 -0
  77. pyegeria-5.3.4.4.dev1/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/.DS_Store +0 -0
  78. pyegeria-5.3.4.4.dev1/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/.DS_Store +0 -0
  79. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/__pycache__/__init__.cpython-312.pyc +0 -0
  80. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/__pycache__/list_my_profile.cpython-312.pyc +0 -0
  81. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/__pycache__/list_my_roles.cpython-312.pyc +0 -0
  82. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/__pycache__/monitor_my_todos.cpython-312.pyc +0 -0
  83. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/__pycache__/monitor_open_todos.cpython-312.pyc +0 -0
  84. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/__pycache__/todo_actions.cpython-312.pyc +0 -0
  85. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/list_my_profile.py +163 -0
  86. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/list_my_roles.py +151 -0
  87. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/monitor_my_todos.py +205 -0
  88. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/monitor_open_todos.py +175 -0
  89. pyegeria-5.3.4.4.dev1/pyegeria/commands/my/todo_actions.py +243 -0
  90. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__init__.py +23 -0
  91. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/__init__.cpython-312.pyc +0 -0
  92. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/gov_server_actions.cpython-312.pyc +0 -0
  93. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/list_archives.cpython-312.pyc +0 -0
  94. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/list_catalog_targets.cpython-312.pyc +0 -0
  95. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/load_archive.cpython-312.pyc +0 -0
  96. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/monitor_engine_activity.cpython-312.pyc +0 -0
  97. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/monitor_engine_activity_c.cpython-312.pyc +0 -0
  98. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/monitor_gov_eng_status.cpython-312.pyc +0 -0
  99. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/monitor_integ_daemon_status.cpython-312.pyc +0 -0
  100. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/monitor_platform_status.cpython-312.pyc +0 -0
  101. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/monitor_server_startup.cpython-312.pyc +0 -0
  102. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/monitor_server_status.cpython-312.pyc +0 -0
  103. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/refresh_integration_daemon.cpython-312.pyc +0 -0
  104. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/restart_integration_daemon.cpython-312.pyc +0 -0
  105. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/__pycache__/table_integ_daemon_status.cpython-312.pyc +0 -0
  106. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/gov_server_actions.py +178 -0
  107. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/list_archives.py +162 -0
  108. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/list_catalog_targets.py +203 -0
  109. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/load_archive.py +77 -0
  110. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/monitor_asset_events.py +108 -0
  111. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/monitor_engine_activity.py +270 -0
  112. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/monitor_engine_activity_c.py +286 -0
  113. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/monitor_gov_eng_status.py +288 -0
  114. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/monitor_integ_daemon_status.py +325 -0
  115. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/monitor_platform_status.py +189 -0
  116. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/monitor_server_startup.py +117 -0
  117. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/monitor_server_status.py +187 -0
  118. pyegeria-5.3.4.4.dev1/pyegeria/commands/ops/orig_monitor_server_status.py +124 -0
  119. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/.DS_Store +0 -0
  120. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/__init__.cpython-312.pyc +0 -0
  121. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/get_element_info.cpython-312.pyc +0 -0
  122. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/get_guid_info.cpython-312.pyc +0 -0
  123. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/get_tech_details.cpython-312.pyc +0 -0
  124. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/get_tech_type_template.cpython-312.pyc +0 -0
  125. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_all_om_type_elements.cpython-312.pyc +0 -0
  126. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_all_om_type_elements_x.cpython-312.pyc +0 -0
  127. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_all_related_elements.cpython-312.pyc +0 -0
  128. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_anchored_elements.cpython-312.pyc +0 -0
  129. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_asset_types.cpython-312.pyc +0 -0
  130. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_elements_by_classification_by_property_value.cpython-312.pyc +0 -0
  131. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_elements_by_property_value.cpython-312.pyc +0 -0
  132. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_elements_by_property_value_x.cpython-312.pyc +0 -0
  133. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_elements_for_classification.cpython-312.pyc +0 -0
  134. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_gov_action_processes.cpython-312.pyc +0 -0
  135. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_information_supply_chains.cpython-312.pyc +0 -0
  136. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_registered_services.cpython-312.pyc +0 -0
  137. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_related_elements_with_prop_value.cpython-312.pyc +0 -0
  138. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_related_specification.cpython-312.pyc +0 -0
  139. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_relationship_types.cpython-312.pyc +0 -0
  140. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_relationships.cpython-312.pyc +0 -0
  141. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_solution_blueprints.cpython-312.pyc +0 -0
  142. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_solution_components.cpython-312.pyc +0 -0
  143. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_solution_roles.cpython-312.pyc +0 -0
  144. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_tech_templates.cpython-312.pyc +0 -0
  145. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/__pycache__/list_valid_metadata_values.cpython-312.pyc +0 -0
  146. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/get_element_info.py +142 -0
  147. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/get_guid_info.py +133 -0
  148. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/get_tech_details.py +172 -0
  149. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/get_tech_type_template.py +166 -0
  150. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_all_om_type_elements.py +169 -0
  151. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_all_om_type_elements_x.py +190 -0
  152. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_all_related_elements.py +209 -0
  153. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_anchored_elements.py +205 -0
  154. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_asset_types.py +123 -0
  155. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_elements_by_classification_by_property_value.py +200 -0
  156. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_elements_by_property_value.py +180 -0
  157. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_elements_by_property_value_x.py +201 -0
  158. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_elements_for_classification.py +173 -0
  159. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_gov_action_processes.py +138 -0
  160. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_information_supply_chains.py +149 -0
  161. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_registered_services.py +180 -0
  162. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_related_elements_with_prop_value.py +221 -0
  163. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_related_specification.py +169 -0
  164. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_relationship_types.py +163 -0
  165. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_relationships.py +179 -0
  166. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_solution_blueprints.py +180 -0
  167. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_solution_components.py +185 -0
  168. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_solution_roles.py +183 -0
  169. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_tech_templates.py +360 -0
  170. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/list_valid_metadata_values.py +177 -0
  171. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/table_tech_templates.py +241 -0
  172. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Automated Manufacturing Control.html +121 -0
  173. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Clinical Trial Management Solution Blueprint.html +213 -0
  174. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Employee Management Solution Blueprint.html +124 -0
  175. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Hazardous Material Management Solution Blueprint.html +124 -0
  176. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Inventory Management.html +124 -0
  177. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Personalized Medicine Order Fulfillment Solution Blueprint.html +124 -0
  178. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Sustainability Reporting Solution Blueprint.html +149 -0
  179. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/blueprints/{{displayName}}.html +121 -0
  180. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Accounting ledgers.html +121 -0
  181. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Analyse Patient Data.html +133 -0
  182. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Assemble Treatment Assessment Report.html +129 -0
  183. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Certify Hospital.html +125 -0
  184. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Employee Expense Tool.html +121 -0
  185. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Goods Inventory.html +121 -0
  186. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Hazardous Materials (HazMat) Inventory.html +121 -0
  187. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Hospital Landing Area Folder.html +125 -0
  188. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Hospital Processes.html +129 -0
  189. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Landing Folder Cataloguer.html +125 -0
  190. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Nominate Hospital.html +125 -0
  191. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Onboard Hospital.html +125 -0
  192. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Populate Sandbox.html +125 -0
  193. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Set up Data Lake Folder.html +127 -0
  194. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Set up clinical trial.html +125 -0
  195. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Calculators.html +125 -0
  196. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Dashboards.html +125 -0
  197. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Operational Data Store (ODS).html +141 -0
  198. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Assessment Report Validation and Delivery.html +129 -0
  199. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Efficacy Evidence.html +125 -0
  200. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Validation Sandbox.html +125 -0
  201. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Weekly Measurements Data Lake Folder.html +125 -0
  202. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/components/Weekly Measurements Onboarding Pipeline.html +133 -0
  203. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-DC-LEADER.html +118 -0
  204. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-DEPOT-LEADER.html +118 -0
  205. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-LAB-LEADER.html +118 -0
  206. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-OFFICE-LEADER.html +118 -0
  207. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-SITE-LEADER.html +118 -0
  208. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/AUS-DC-LEADER.html +118 -0
  209. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/AUS-FACTORY-LEADER.html +118 -0
  210. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/AUS-OFFICE-LEADER.html +118 -0
  211. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/AUS-SITE-LEADER.html +118 -0
  212. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/C-TRL-SUSTAINABILITY-CHAMP.html +118 -0
  213. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/CAMP-CT:ProjectManager.html +118 -0
  214. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/CAMP-MM:ProjectManager.html +118 -0
  215. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/CertifiedDataEngineer.html +130 -0
  216. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/ClinicalTrialManager.html +138 -0
  217. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/ClinicalTrialParticipatingHospital.html +122 -0
  218. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/ClinicalTrialParticipatingHospitalCoordinator.html +122 -0
  219. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/ClinicalTrialSponsor.html +122 -0
  220. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/Community Leader.html +118 -0
  221. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/CommunityMember.html +118 -0
  222. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/DIST-SUSTAINABILITY-CHAMP.html +118 -0
  223. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-DC-LEADER.html +118 -0
  224. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-DEPOT-LEADER.html +118 -0
  225. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-FACTORY-LEADER.html +118 -0
  226. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-OFFICE-LEADER.html +118 -0
  227. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-SITE-LEADER.html +118 -0
  228. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/FIN-SUSTAINABILITY-CHAMP.html +118 -0
  229. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/GOVERNANCE_LEADER.html +118 -0
  230. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:0.html +118 -0
  231. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:1.html +118 -0
  232. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:2.html +118 -0
  233. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:3.html +118 -0
  234. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:4.html +118 -0
  235. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:5.html +118 -0
  236. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:6.html +118 -0
  237. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:7.html +118 -0
  238. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/HR-SUSTAINABILITY-CHAMP.html +118 -0
  239. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/IT-SUSTAINABILITY-CHAMP.html +118 -0
  240. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/KC-DEPOT-LEADER.html +118 -0
  241. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/KC-OFFICE-LEADER.html +118 -0
  242. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/KC-SITE-LEADER.html +118 -0
  243. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/LDN-DC-LEADER.html +118 -0
  244. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/LDN-LAB-LEADER.html +118 -0
  245. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/LDN-OFFICE-LEADER.html +118 -0
  246. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/LDN-SITE-LEADER.html +118 -0
  247. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/MFG-SUSTAINABILITY-CHAMP.html +118 -0
  248. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/NY-DC-LEADER.html +118 -0
  249. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/NY-LAB-LEADER.html +118 -0
  250. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/NY-OFFICE-LEADER.html +118 -0
  251. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/NY-SITE-LEADER.html +118 -0
  252. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/NewTreatmentDataScientist.html +122 -0
  253. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/NewTreatmentResearcher.html +122 -0
  254. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/PROJ-CT-TBDF-001:ProjectManager.html +118 -0
  255. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/PROJ-CT-TBDF-002:ProjectManager.html +118 -0
  256. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/PROJ-CT-TBDF-003:ProjectManager.html +118 -0
  257. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/PROJ-CT-TBDF:ProjectManager.html +118 -0
  258. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/RES-SUSTAINABILITY-CHAMP.html +118 -0
  259. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/SALES-SUSTAINABILITY-CHAMP.html +118 -0
  260. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/SUSTAINABILITY-LEAD.html +118 -0
  261. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/SUSTAINABILITY-TECH-LEAD.html +118 -0
  262. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/SustainabilityChampion.html +118 -0
  263. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/SustainabilityExecutive.html +118 -0
  264. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/SustainabilityLeader.html +118 -0
  265. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0001.html +118 -0
  266. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0002.html +118 -0
  267. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0003.html +118 -0
  268. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0004.html +118 -0
  269. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0005.html +118 -0
  270. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0006.html +118 -0
  271. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0007.html +118 -0
  272. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0008.html +118 -0
  273. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0009.html +118 -0
  274. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0010.html +118 -0
  275. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0011.html +118 -0
  276. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0012.html +118 -0
  277. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0013.html +118 -0
  278. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0014.html +118 -0
  279. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0015.html +118 -0
  280. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0016.html +118 -0
  281. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0017.html +118 -0
  282. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0018.html +118 -0
  283. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0019.html +118 -0
  284. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0020.html +118 -0
  285. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0021.html +118 -0
  286. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0022.html +118 -0
  287. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0023.html +118 -0
  288. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0024.html +118 -0
  289. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:2343.html +118 -0
  290. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:2373.html +118 -0
  291. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:3067.html +118 -0
  292. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:3082.html +118 -0
  293. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:4051.html +118 -0
  294. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:4302.html +118 -0
  295. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:4332.html +118 -0
  296. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:5656.html +118 -0
  297. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:6788.html +118 -0
  298. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:6877.html +118 -0
  299. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:7432.html +118 -0
  300. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9657.html +118 -0
  301. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9992.html +118 -0
  302. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9993.html +118 -0
  303. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9994.html +118 -0
  304. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9995.html +118 -0
  305. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9996.html +118 -0
  306. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9997.html +118 -0
  307. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9998.html +118 -0
  308. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9999.html +118 -0
  309. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0001.html +118 -0
  310. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0002.html +118 -0
  311. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0003.html +118 -0
  312. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0004.html +118 -0
  313. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0005.html +118 -0
  314. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0006.html +118 -0
  315. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0007.html +118 -0
  316. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0008.html +118 -0
  317. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0009.html +118 -0
  318. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0010.html +118 -0
  319. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0011.html +118 -0
  320. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0012.html +118 -0
  321. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0013.html +118 -0
  322. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0014.html +118 -0
  323. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0015.html +118 -0
  324. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0016.html +118 -0
  325. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0017.html +118 -0
  326. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0018.html +118 -0
  327. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0019.html +118 -0
  328. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0020.html +118 -0
  329. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0021.html +118 -0
  330. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0022.html +118 -0
  331. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0023.html +118 -0
  332. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0024.html +118 -0
  333. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:2343.html +118 -0
  334. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:2373.html +118 -0
  335. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:3067.html +118 -0
  336. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:3082.html +118 -0
  337. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:4051.html +118 -0
  338. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:4302.html +118 -0
  339. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:4332.html +118 -0
  340. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:5656.html +118 -0
  341. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:6788.html +118 -0
  342. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:6877.html +118 -0
  343. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:7432.html +118 -0
  344. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9657.html +118 -0
  345. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9992.html +118 -0
  346. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9993.html +118 -0
  347. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9994.html +118 -0
  348. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9995.html +118 -0
  349. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9996.html +118 -0
  350. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9997.html +118 -0
  351. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9998.html +118 -0
  352. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9999.html +118 -0
  353. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-DC-LEADER.html +118 -0
  354. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-DEPOT-LEADER.html +118 -0
  355. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-FACTORY-LEADER.html +118 -0
  356. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-OFFICE-LEADER.html +118 -0
  357. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-SITE-LEADER.html +118 -0
  358. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Clinical Trial Subject Onboarding.html +142 -0
  359. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Clinical Trial Treatment Validation.html +222 -0
  360. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Employee Expense Payment.html +133 -0
  361. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/New Drug Product Information Distribution.html +148 -0
  362. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/New Employee Onboarding.html +145 -0
  363. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Personalized Treatment Ordering.html +150 -0
  364. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Physical Inventory Tracking.html +185 -0
  365. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Sustainability Reporting.html +210 -0
  366. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/{{displayName}}.html +122 -0
  367. pyegeria-5.3.4.4.dev1/pyegeria/commands/tech/x_list_related_elements.py +167 -0
  368. pyegeria-5.3.4.4.dev1/pyegeria/core_omag_server_config.py +2775 -0
  369. pyegeria-5.3.4.4.dev1/pyegeria/create_tech_guid_lists.py +107 -0
  370. pyegeria-5.3.4.4.dev1/pyegeria/egeria_cat_client.py +75 -0
  371. pyegeria-5.3.4.4.dev1/pyegeria/egeria_client.py +119 -0
  372. pyegeria-5.3.4.4.dev1/pyegeria/egeria_config_client.py +46 -0
  373. pyegeria-5.3.4.4.dev1/pyegeria/egeria_my_client.py +56 -0
  374. pyegeria-5.3.4.4.dev1/pyegeria/egeria_tech_client.py +106 -0
  375. pyegeria-5.3.4.4.dev1/pyegeria/full_omag_server_config.py +1339 -0
  376. pyegeria-5.3.4.4.dev1/pyegeria/glossary_browser_omvs.py +2504 -0
  377. pyegeria-5.3.4.4.dev1/pyegeria/glossary_manager_omvs.py +3594 -0
  378. pyegeria-5.3.4.4.dev1/pyegeria/mermaid_utilities.py +503 -0
  379. pyegeria-5.3.4.4.dev1/pyegeria/metadata_explorer_omvs.py +2327 -0
  380. pyegeria-5.3.4.4.dev1/pyegeria/my_profile_omvs.py +1022 -0
  381. pyegeria-5.3.4.4.dev1/pyegeria/platform_services.py +1123 -0
  382. pyegeria-5.3.4.4.dev1/pyegeria/project_manager_omvs.py +1852 -0
  383. pyegeria-5.3.4.4.dev1/pyegeria/runtime_manager_omvs.py +2297 -0
  384. pyegeria-5.3.4.4.dev1/pyegeria/server_operations.py +468 -0
  385. pyegeria-5.3.4.4.dev1/pyegeria/solution_architect_omvs.py +666 -0
  386. pyegeria-5.3.4.4.dev1/pyegeria/template_manager_omvs.py +1409 -0
  387. pyegeria-5.3.4.4.dev1/pyegeria/utils.py +197 -0
  388. pyegeria-5.3.4.4.dev1/pyegeria/valid_metadata_omvs.py +1912 -0
  389. pyegeria-5.3.4.4.dev1/pyegeria/x_action_author_omvs.py +197 -0
  390. pyegeria-5.3.4.4.dev1/pyproject.toml +159 -0
  391. pyegeria-5.3.4.2/PKG-INFO +0 -71
  392. pyegeria-5.3.4.2/pyegeria/__init__.py +0 -373
  393. pyegeria-5.3.4.2/pyegeria/_client.py +0 -770
  394. pyegeria-5.3.4.2/pyegeria/_exceptions.py +0 -381
  395. pyegeria-5.3.4.2/pyegeria/_globals.py +0 -37
  396. pyegeria-5.3.4.2/pyegeria/_validators.py +0 -385
  397. pyegeria-5.3.4.2/pyegeria/asset_catalog_omvs.py +0 -807
  398. pyegeria-5.3.4.2/pyegeria/automated_curation_omvs.py +0 -3760
  399. pyegeria-5.3.4.2/pyegeria/classification_manager_omvs.py +0 -5240
  400. pyegeria-5.3.4.2/pyegeria/collection_manager_omvs.py +0 -2727
  401. pyegeria-5.3.4.2/pyegeria/commands/__init__.py +0 -28
  402. pyegeria-5.3.4.2/pyegeria/commands/cat/__init__.py +0 -1
  403. pyegeria-5.3.4.2/pyegeria/commands/cat/exp_list_glossaries.py +0 -156
  404. pyegeria-5.3.4.2/pyegeria/commands/cat/get_asset_graph.py +0 -319
  405. pyegeria-5.3.4.2/pyegeria/commands/cat/get_collection.py +0 -148
  406. pyegeria-5.3.4.2/pyegeria/commands/cat/get_project_dependencies.py +0 -168
  407. pyegeria-5.3.4.2/pyegeria/commands/cat/get_project_structure.py +0 -168
  408. pyegeria-5.3.4.2/pyegeria/commands/cat/get_tech_type_elements.py +0 -174
  409. pyegeria-5.3.4.2/pyegeria/commands/cat/glossary_actions.py +0 -362
  410. pyegeria-5.3.4.2/pyegeria/commands/cat/list_assets.py +0 -176
  411. pyegeria-5.3.4.2/pyegeria/commands/cat/list_cert_types.py +0 -194
  412. pyegeria-5.3.4.2/pyegeria/commands/cat/list_collections.py +0 -162
  413. pyegeria-5.3.4.2/pyegeria/commands/cat/list_deployed_catalogs.py +0 -217
  414. pyegeria-5.3.4.2/pyegeria/commands/cat/list_deployed_database_schemas.py +0 -251
  415. pyegeria-5.3.4.2/pyegeria/commands/cat/list_deployed_databases.py +0 -202
  416. pyegeria-5.3.4.2/pyegeria/commands/cat/list_glossaries.py +0 -150
  417. pyegeria-5.3.4.2/pyegeria/commands/cat/list_projects.py +0 -221
  418. pyegeria-5.3.4.2/pyegeria/commands/cat/list_servers_deployed_imp.py +0 -158
  419. pyegeria-5.3.4.2/pyegeria/commands/cat/list_tech_type_elements.py +0 -190
  420. pyegeria-5.3.4.2/pyegeria/commands/cat/list_tech_types.py +0 -140
  421. pyegeria-5.3.4.2/pyegeria/commands/cat/list_terms.py +0 -245
  422. pyegeria-5.3.4.2/pyegeria/commands/cat/list_todos.py +0 -189
  423. pyegeria-5.3.4.2/pyegeria/commands/cat/list_user_ids.py +0 -145
  424. pyegeria-5.3.4.2/pyegeria/commands/cli/egeria.py +0 -2057
  425. pyegeria-5.3.4.2/pyegeria/commands/cli/egeria_cat.py +0 -638
  426. pyegeria-5.3.4.2/pyegeria/commands/cli/egeria_login_tui.py +0 -313
  427. pyegeria-5.3.4.2/pyegeria/commands/cli/egeria_my.py +0 -258
  428. pyegeria-5.3.4.2/pyegeria/commands/cli/egeria_ops.py +0 -512
  429. pyegeria-5.3.4.2/pyegeria/commands/cli/egeria_tech.py +0 -816
  430. pyegeria-5.3.4.2/pyegeria/commands/cli/ops_config.py +0 -45
  431. pyegeria-5.3.4.2/pyegeria/commands/my/list_my_profile.py +0 -163
  432. pyegeria-5.3.4.2/pyegeria/commands/my/list_my_roles.py +0 -151
  433. pyegeria-5.3.4.2/pyegeria/commands/my/monitor_my_todos.py +0 -205
  434. pyegeria-5.3.4.2/pyegeria/commands/my/monitor_open_todos.py +0 -175
  435. pyegeria-5.3.4.2/pyegeria/commands/my/todo_actions.py +0 -242
  436. pyegeria-5.3.4.2/pyegeria/commands/ops/__init__.py +0 -22
  437. pyegeria-5.3.4.2/pyegeria/commands/ops/gov_server_actions.py +0 -177
  438. pyegeria-5.3.4.2/pyegeria/commands/ops/list_archives.py +0 -161
  439. pyegeria-5.3.4.2/pyegeria/commands/ops/list_catalog_targets.py +0 -203
  440. pyegeria-5.3.4.2/pyegeria/commands/ops/load_archive.py +0 -75
  441. pyegeria-5.3.4.2/pyegeria/commands/ops/monitor_asset_events.py +0 -107
  442. pyegeria-5.3.4.2/pyegeria/commands/ops/monitor_engine_activity.py +0 -271
  443. pyegeria-5.3.4.2/pyegeria/commands/ops/monitor_engine_activity_c.py +0 -286
  444. pyegeria-5.3.4.2/pyegeria/commands/ops/monitor_gov_eng_status.py +0 -288
  445. pyegeria-5.3.4.2/pyegeria/commands/ops/monitor_integ_daemon_status.py +0 -319
  446. pyegeria-5.3.4.2/pyegeria/commands/ops/monitor_platform_status.py +0 -188
  447. pyegeria-5.3.4.2/pyegeria/commands/ops/monitor_server_startup.py +0 -117
  448. pyegeria-5.3.4.2/pyegeria/commands/ops/monitor_server_status.py +0 -185
  449. pyegeria-5.3.4.2/pyegeria/commands/ops/orig_monitor_server_status.py +0 -124
  450. pyegeria-5.3.4.2/pyegeria/commands/tech/get_element_info.py +0 -144
  451. pyegeria-5.3.4.2/pyegeria/commands/tech/get_guid_info.py +0 -134
  452. pyegeria-5.3.4.2/pyegeria/commands/tech/get_tech_details.py +0 -173
  453. pyegeria-5.3.4.2/pyegeria/commands/tech/get_tech_type_template.py +0 -166
  454. pyegeria-5.3.4.2/pyegeria/commands/tech/list_all_om_type_elements.py +0 -168
  455. pyegeria-5.3.4.2/pyegeria/commands/tech/list_all_om_type_elements_x.py +0 -191
  456. pyegeria-5.3.4.2/pyegeria/commands/tech/list_all_related_elements.py +0 -207
  457. pyegeria-5.3.4.2/pyegeria/commands/tech/list_anchored_elements.py +0 -205
  458. pyegeria-5.3.4.2/pyegeria/commands/tech/list_asset_types.py +0 -123
  459. pyegeria-5.3.4.2/pyegeria/commands/tech/list_elements_by_classification_by_property_value.py +0 -186
  460. pyegeria-5.3.4.2/pyegeria/commands/tech/list_elements_by_property_value.py +0 -175
  461. pyegeria-5.3.4.2/pyegeria/commands/tech/list_elements_by_property_value_x.py +0 -196
  462. pyegeria-5.3.4.2/pyegeria/commands/tech/list_elements_for_classification.py +0 -171
  463. pyegeria-5.3.4.2/pyegeria/commands/tech/list_gov_action_processes.py +0 -139
  464. pyegeria-5.3.4.2/pyegeria/commands/tech/list_information_supply_chains.py +0 -154
  465. pyegeria-5.3.4.2/pyegeria/commands/tech/list_registered_services.py +0 -180
  466. pyegeria-5.3.4.2/pyegeria/commands/tech/list_related_elements_with_prop_value.py +0 -207
  467. pyegeria-5.3.4.2/pyegeria/commands/tech/list_related_specification.py +0 -169
  468. pyegeria-5.3.4.2/pyegeria/commands/tech/list_relationship_types.py +0 -164
  469. pyegeria-5.3.4.2/pyegeria/commands/tech/list_relationships.py +0 -179
  470. pyegeria-5.3.4.2/pyegeria/commands/tech/list_solution_blueprints.py +0 -177
  471. pyegeria-5.3.4.2/pyegeria/commands/tech/list_solution_components.py +0 -172
  472. pyegeria-5.3.4.2/pyegeria/commands/tech/list_solution_roles.py +0 -176
  473. pyegeria-5.3.4.2/pyegeria/commands/tech/list_tech_templates.py +0 -360
  474. pyegeria-5.3.4.2/pyegeria/commands/tech/list_valid_metadata_values.py +0 -178
  475. pyegeria-5.3.4.2/pyegeria/commands/tech/table_tech_templates.py +0 -238
  476. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Automated Manufacturing Control.html +0 -121
  477. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Clinical Trial Management Solution Blueprint.html +0 -213
  478. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Employee Management Solution Blueprint.html +0 -124
  479. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Hazardous Material Management Solution Blueprint.html +0 -124
  480. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Inventory Management.html +0 -124
  481. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Personalized Medicine Order Fulfillment Solution Blueprint.html +0 -124
  482. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/blueprints/Sustainability Reporting Solution Blueprint.html +0 -149
  483. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/blueprints/{{displayName}}.html +0 -121
  484. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Accounting ledgers.html +0 -121
  485. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Analyse Patient Data.html +0 -133
  486. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Assemble Treatment Assessment Report.html +0 -129
  487. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Certify Hospital.html +0 -125
  488. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Employee Expense Tool.html +0 -121
  489. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Goods Inventory.html +0 -121
  490. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Hazardous Materials (HazMat) Inventory.html +0 -121
  491. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Hospital Landing Area Folder.html +0 -125
  492. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Hospital Processes.html +0 -129
  493. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Landing Folder Cataloguer.html +0 -125
  494. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Nominate Hospital.html +0 -125
  495. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Onboard Hospital.html +0 -125
  496. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Populate Sandbox.html +0 -125
  497. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Set up Data Lake Folder.html +0 -127
  498. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Set up clinical trial.html +0 -125
  499. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Calculators.html +0 -125
  500. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Dashboards.html +0 -125
  501. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Sustainability Operational Data Store (ODS).html +0 -141
  502. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Assessment Report Validation and Delivery.html +0 -129
  503. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Efficacy Evidence.html +0 -125
  504. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Treatment Validation Sandbox.html +0 -125
  505. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Weekly Measurements Data Lake Folder.html +0 -125
  506. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/components/Weekly Measurements Onboarding Pipeline.html +0 -133
  507. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-DC-LEADER.html +0 -118
  508. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-DEPOT-LEADER.html +0 -118
  509. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-LAB-LEADER.html +0 -118
  510. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-OFFICE-LEADER.html +0 -118
  511. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/AMS-SITE-LEADER.html +0 -118
  512. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/AUS-DC-LEADER.html +0 -118
  513. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/AUS-FACTORY-LEADER.html +0 -118
  514. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/AUS-OFFICE-LEADER.html +0 -118
  515. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/AUS-SITE-LEADER.html +0 -118
  516. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/C-TRL-SUSTAINABILITY-CHAMP.html +0 -118
  517. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/CAMP-CT:ProjectManager.html +0 -118
  518. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/CAMP-MM:ProjectManager.html +0 -118
  519. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/CertifiedDataEngineer.html +0 -130
  520. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/ClinicalTrialManager.html +0 -138
  521. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/ClinicalTrialParticipatingHospital.html +0 -122
  522. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/ClinicalTrialParticipatingHospitalCoordinator.html +0 -122
  523. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/ClinicalTrialSponsor.html +0 -122
  524. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/Community Leader.html +0 -118
  525. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/CommunityMember.html +0 -118
  526. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/DIST-SUSTAINABILITY-CHAMP.html +0 -118
  527. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-DC-LEADER.html +0 -118
  528. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-DEPOT-LEADER.html +0 -118
  529. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-FACTORY-LEADER.html +0 -118
  530. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-OFFICE-LEADER.html +0 -118
  531. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/ED-SITE-LEADER.html +0 -118
  532. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/FIN-SUSTAINABILITY-CHAMP.html +0 -118
  533. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/GOVERNANCE_LEADER.html +0 -118
  534. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:0.html +0 -118
  535. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:1.html +0 -118
  536. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:2.html +0 -118
  537. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:3.html +0 -118
  538. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:4.html +0 -118
  539. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:5.html +0 -118
  540. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:6.html +0 -118
  541. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/GOV_OFFICER:7.html +0 -118
  542. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/HR-SUSTAINABILITY-CHAMP.html +0 -118
  543. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/IT-SUSTAINABILITY-CHAMP.html +0 -118
  544. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/KC-DEPOT-LEADER.html +0 -118
  545. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/KC-OFFICE-LEADER.html +0 -118
  546. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/KC-SITE-LEADER.html +0 -118
  547. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/LDN-DC-LEADER.html +0 -118
  548. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/LDN-LAB-LEADER.html +0 -118
  549. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/LDN-OFFICE-LEADER.html +0 -118
  550. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/LDN-SITE-LEADER.html +0 -118
  551. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/MFG-SUSTAINABILITY-CHAMP.html +0 -118
  552. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/NY-DC-LEADER.html +0 -118
  553. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/NY-LAB-LEADER.html +0 -118
  554. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/NY-OFFICE-LEADER.html +0 -118
  555. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/NY-SITE-LEADER.html +0 -118
  556. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/NewTreatmentDataScientist.html +0 -122
  557. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/NewTreatmentResearcher.html +0 -122
  558. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/PROJ-CT-TBDF-001:ProjectManager.html +0 -118
  559. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/PROJ-CT-TBDF-002:ProjectManager.html +0 -118
  560. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/PROJ-CT-TBDF-003:ProjectManager.html +0 -118
  561. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/PROJ-CT-TBDF:ProjectManager.html +0 -118
  562. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/RES-SUSTAINABILITY-CHAMP.html +0 -118
  563. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/SALES-SUSTAINABILITY-CHAMP.html +0 -118
  564. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/SUSTAINABILITY-LEAD.html +0 -118
  565. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/SUSTAINABILITY-TECH-LEAD.html +0 -118
  566. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/SustainabilityChampion.html +0 -118
  567. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/SustainabilityExecutive.html +0 -118
  568. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/SustainabilityLeader.html +0 -118
  569. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0001.html +0 -118
  570. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0002.html +0 -118
  571. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0003.html +0 -118
  572. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0004.html +0 -118
  573. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0005.html +0 -118
  574. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0006.html +0 -118
  575. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0007.html +0 -118
  576. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0008.html +0 -118
  577. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0009.html +0 -118
  578. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0010.html +0 -118
  579. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0011.html +0 -118
  580. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0012.html +0 -118
  581. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0013.html +0 -118
  582. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0014.html +0 -118
  583. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0015.html +0 -118
  584. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0016.html +0 -118
  585. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0017.html +0 -118
  586. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0018.html +0 -118
  587. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0019.html +0 -118
  588. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0020.html +0 -118
  589. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0021.html +0 -118
  590. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0022.html +0 -118
  591. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0023.html +0 -118
  592. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:0024.html +0 -118
  593. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:2343.html +0 -118
  594. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:2373.html +0 -118
  595. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:3067.html +0 -118
  596. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:3082.html +0 -118
  597. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:4051.html +0 -118
  598. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:4302.html +0 -118
  599. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:4332.html +0 -118
  600. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:5656.html +0 -118
  601. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:6788.html +0 -118
  602. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:6877.html +0 -118
  603. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:7432.html +0 -118
  604. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9657.html +0 -118
  605. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9992.html +0 -118
  606. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9993.html +0 -118
  607. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9994.html +0 -118
  608. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9995.html +0 -118
  609. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9996.html +0 -118
  610. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9997.html +0 -118
  611. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9998.html +0 -118
  612. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamLeader:Department:9999.html +0 -118
  613. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0001.html +0 -118
  614. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0002.html +0 -118
  615. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0003.html +0 -118
  616. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0004.html +0 -118
  617. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0005.html +0 -118
  618. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0006.html +0 -118
  619. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0007.html +0 -118
  620. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0008.html +0 -118
  621. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0009.html +0 -118
  622. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0010.html +0 -118
  623. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0011.html +0 -118
  624. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0012.html +0 -118
  625. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0013.html +0 -118
  626. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0014.html +0 -118
  627. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0015.html +0 -118
  628. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0016.html +0 -118
  629. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0017.html +0 -118
  630. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0018.html +0 -118
  631. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0019.html +0 -118
  632. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0020.html +0 -118
  633. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0021.html +0 -118
  634. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0022.html +0 -118
  635. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0023.html +0 -118
  636. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:0024.html +0 -118
  637. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:2343.html +0 -118
  638. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:2373.html +0 -118
  639. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:3067.html +0 -118
  640. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:3082.html +0 -118
  641. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:4051.html +0 -118
  642. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:4302.html +0 -118
  643. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:4332.html +0 -118
  644. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:5656.html +0 -118
  645. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:6788.html +0 -118
  646. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:6877.html +0 -118
  647. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:7432.html +0 -118
  648. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9657.html +0 -118
  649. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9992.html +0 -118
  650. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9993.html +0 -118
  651. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9994.html +0 -118
  652. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9995.html +0 -118
  653. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9996.html +0 -118
  654. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9997.html +0 -118
  655. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9998.html +0 -118
  656. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/TeamMembers:Department:9999.html +0 -118
  657. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-DC-LEADER.html +0 -118
  658. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-DEPOT-LEADER.html +0 -118
  659. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-FACTORY-LEADER.html +0 -118
  660. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-OFFICE-LEADER.html +0 -118
  661. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/roles/WINCH-SITE-LEADER.html +0 -118
  662. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Clinical Trial Subject Onboarding.html +0 -142
  663. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Clinical Trial Treatment Validation.html +0 -222
  664. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Employee Expense Payment.html +0 -133
  665. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/New Drug Product Information Distribution.html +0 -148
  666. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/New Employee Onboarding.html +0 -145
  667. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Personalized Treatment Ordering.html +0 -150
  668. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Physical Inventory Tracking.html +0 -185
  669. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/Sustainability Reporting.html +0 -210
  670. pyegeria-5.3.4.2/pyegeria/commands/tech/work/mermaid_graphs/supply-chains/{{displayName}}.html +0 -122
  671. pyegeria-5.3.4.2/pyegeria/commands/tech/x_list_related_elements.py +0 -165
  672. pyegeria-5.3.4.2/pyegeria/core_omag_server_config.py +0 -2775
  673. pyegeria-5.3.4.2/pyegeria/create_tech_guid_lists.py +0 -105
  674. pyegeria-5.3.4.2/pyegeria/egeria_cat_client.py +0 -78
  675. pyegeria-5.3.4.2/pyegeria/egeria_client.py +0 -122
  676. pyegeria-5.3.4.2/pyegeria/egeria_config_client.py +0 -45
  677. pyegeria-5.3.4.2/pyegeria/egeria_my_client.py +0 -56
  678. pyegeria-5.3.4.2/pyegeria/egeria_tech_client.py +0 -97
  679. pyegeria-5.3.4.2/pyegeria/full_omag_server_config.py +0 -1337
  680. pyegeria-5.3.4.2/pyegeria/glossary_browser_omvs.py +0 -2507
  681. pyegeria-5.3.4.2/pyegeria/glossary_manager_omvs.py +0 -3597
  682. pyegeria-5.3.4.2/pyegeria/mermaid_utilities.py +0 -501
  683. pyegeria-5.3.4.2/pyegeria/metadata_explorer_omvs.py +0 -2328
  684. pyegeria-5.3.4.2/pyegeria/my_profile_omvs.py +0 -1021
  685. pyegeria-5.3.4.2/pyegeria/platform_services.py +0 -1123
  686. pyegeria-5.3.4.2/pyegeria/project_manager_omvs.py +0 -1854
  687. pyegeria-5.3.4.2/pyegeria/runtime_manager_omvs.py +0 -2300
  688. pyegeria-5.3.4.2/pyegeria/server_operations.py +0 -468
  689. pyegeria-5.3.4.2/pyegeria/solution_architect_omvs.py +0 -650
  690. pyegeria-5.3.4.2/pyegeria/template_manager_omvs.py +0 -1414
  691. pyegeria-5.3.4.2/pyegeria/utils.py +0 -195
  692. pyegeria-5.3.4.2/pyegeria/valid_metadata_omvs.py +0 -1911
  693. pyegeria-5.3.4.2/pyegeria/x_action_author_omvs.py +0 -200
  694. pyegeria-5.3.4.2/pyproject.toml +0 -153
  695. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/LICENSE +0 -0
  696. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/README.md +0 -0
  697. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/README.md +0 -0
  698. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/_deprecated_gov_engine.py +0 -0
  699. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/README.md +0 -0
  700. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/cat/README.md +0 -0
  701. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/cli/__init__.py +0 -0
  702. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/cli/txt_custom_v2.tcss +0 -0
  703. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/README.md +0 -0
  704. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/README.md +0 -0
  705. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/assets/asset-graph 2024-11-20 at 15.56.42.png +0 -0
  706. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/assets/assets-in-domain 2024-11-20 at 15.49.55@2x.png +0 -0
  707. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/assets/elements-of-type 2024-11-20 at 16.01.35.png +0 -0
  708. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/assets/tech-type-elements 2024-11-20 at 16.05.05.png +0 -0
  709. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs 2024-12-17 at 15.43.27@2x.png +0 -0
  710. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs-2024-11-20 at 16.17.43@2x.png +0 -0
  711. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-11-25 at 20.14.50@2x.png +0 -0
  712. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-12-17 at 15.48.38@2x.png +0 -0
  713. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-servers 2024-11-25 at 20.21.25@2x.png +0 -0
  714. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-servers 2024-12-17 at 15.52.16@2x.png +0 -0
  715. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed_databases 2024-12-16 at 16.40.31@2x.png +0 -0
  716. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-glossaries 2024-11-25 at 20.30.02.png +0 -0
  717. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-terms 2024-11-25 at 20.32.11.png +0 -0
  718. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/info/asset-types 2024-11-25 at 20.34.19@2x.png +0 -0
  719. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/info/certification-types 2024-11-25 at 20.37.07.png +0 -0
  720. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/info/collection-graph 2024-12-12 at 11.33.18@2x.png +0 -0
  721. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-collections 2024-12-10 at 14.25.51@2x.png +0 -0
  722. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-todos 2024-12-12 at 11.46.30@2x.png +0 -0
  723. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-user-ids 2024-12-12 at 11.51.09@2x.png +0 -0
  724. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/info/tech-types 2024-12-12 at 11.37.20@2x.png +0 -0
  725. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/projects/project_dependencies 2024-12-14 at 16.24.39@2x.png +0 -0
  726. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/projects/project_structure 2024-12-14 at 16.21.35@2x.png +0 -0
  727. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/cat/show/projects/projects 2024-12-14 at 16.18.10@2x.png +0 -0
  728. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/hey_egeria tui 2024-12-16 at 16.58.22@2x.png +0 -0
  729. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/my/show/my_profile 2024-12-14 at 16.29.27@2x.png +0 -0
  730. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/my/show/my_roles 2024-12-14 at 16.32.10@2x.png +0 -0
  731. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/my/show/my_todos 2024-12-15 at 16.24.13@2x.png +0 -0
  732. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/my/show/open_todos 2024-12-14 at 16.36.12@2x.png +0 -0
  733. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/engines/list_engine_activity compressed 2024-12-15 at 16.48.48@2x.png +0 -0
  734. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_activity 2024-12-15 at 16.32.55@2x.png +0 -0
  735. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_activity compressed 2024-12-15 at 16.38.29@2x.png +0 -0
  736. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_status 2024-12-15 at 16.51.26.jpeg +0 -0
  737. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/integrations/monitor_integration_daemon_status 2024-12-15 at 16.57.12@2x.png +0 -0
  738. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/integrations/monitor_integration_targets 2024-12-15 at 17.02.19@2x.png +0 -0
  739. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/platforms/monitor_platform_status 2024-12-15 at 19.53.18@2x.png +0 -0
  740. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_server_status 2024-12-15 at 19.59.39@2x.png +0 -0
  741. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_server_status full 2024-12-15 at 20.01.57@2x.png +0 -0
  742. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_startup_servers 2024-12-15 at 19.56.07@2x.png +0 -0
  743. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/elements/get_anchored_elements 2024-12-15 at 21.25.41@2x.png +0 -0
  744. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  745. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/elements/info_for_guid 2024-12-16 at 11.35.29@2x.png +0 -0
  746. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  747. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  748. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  749. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/elements/related_elements 2024-12-16 at 14.55.01@2x.png +0 -0
  750. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/elements/show_related_specifications 2024-12-16 at 15.04.55@2x.png +0 -0
  751. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/asset_types 2024-12-16 at 15.10.16@2x.png +0 -0
  752. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  753. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/governance_action_processes 2024-12-16 at 15.13.01@2x.png +0 -0
  754. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/registered_services 2024-12-16 at 16.44.54@2x.png +0 -0
  755. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/relationship_types 2024-12-16 at 16.20.34@2x.png +0 -0
  756. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/relationship_types 2024-12-19 at 10.51.54@2x.png +0 -0
  757. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/valid_metadata_values 2024-12-16 at 15.31.56@2x.png +0 -0
  758. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  759. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/list_technology_types 2024-12-16 at 15.39.20@2x.png +0 -0
  760. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_details 2024-12-16 at 15.37.21@2x.png +0 -0
  761. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_templates 2024-12-16 at 16.11.48@2x.png +0 -0
  762. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/basic-glossary-tui.md +0 -0
  763. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/delete-glossary-step1 2024-11-06 at 15.47.23@2x.png +0 -0
  764. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/delete-glossary-step2 2024-11-06 at 15.51.29@2x.png +0 -0
  765. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/delete-glossary-step3 2024-11-06 at 15.53.19@2x.png +0 -0
  766. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/delete-glossary-step4 2024-11-06 at 15.55.11@2x.png +0 -0
  767. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-create-glossary example 2024-11-05 at 20.38.04@2x.png +0 -0
  768. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-create-term 2024-11-06 at 20.48.29.png +0 -0
  769. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-delete-term 2024-11-07 at 03.57.25.png +0 -0
  770. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-display-terms-for-glossary-test 2024-11-06 at 20.51.28.png +0 -0
  771. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-export-example 2024-11-07 at 09.54.57.png +0 -0
  772. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-exported-terms 2024-11-06 at 21.06.32.png +0 -0
  773. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-glossary-list example 2024-11-05 at 20.41.02@2x.png +0 -0
  774. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-import-terms 2024-11-07 at 08.15.18.png +0 -0
  775. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-list-all-terms 2024-11-06 at 16.22.20@2x.png +0 -0
  776. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-list-terms-for-example 2024-11-06 at 16.40.12.png +0 -0
  777. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-list-terms-second 2024-11-06 at 16.45.13.png +0 -0
  778. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-pipx install pyegeria 2024-11-10 at 18.12.21.png +0 -0
  779. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-server-status-full 2024-11-10 at 18.25.14.png +0 -0
  780. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-servers-status 2024-11-10 at 18.15.42.png +0 -0
  781. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/out-upsert-import 2024-11-07 at 19.37.00.png +0 -0
  782. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-2024-11-10 at 18.26.29.png +0 -0
  783. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-create-glossary example 2024-11-05 at 20.34.24@2x.png +0 -0
  784. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-create-term 2024-11-06 at 20.46.35.png +0 -0
  785. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-delete-term 2024-11-07 at 03.51.57.png +0 -0
  786. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-display-terms-for-example 2024-11-06 at 20.56.49.png +0 -0
  787. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-export-example 2024-11-07 at 09.52.59.png +0 -0
  788. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-hey-egeria 2024-11-10 at 18.31.01.png +0 -0
  789. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-import-upsert-example 2024-11-07 at 10.08.37.png +0 -0
  790. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-list-terms-second 2024-11-06 at 16.46.34.png +0 -0
  791. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-load-archive.png +0 -0
  792. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-server-status-full 2024-11-10 at 19.14.36.png +0 -0
  793. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-show-glossaries 2024-11-07 at 20.00.05.png +0 -0
  794. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-show-glossary-terms 2024-11-05 at 19.37.53@2x.png +0 -0
  795. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/tui-upsert 2024-11-07 at 11.49.04.png +0 -0
  796. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/glossary/images/upsert-example.om-terms 2024-11-07 at 11.44.05.png +0 -0
  797. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/README.md +0 -0
  798. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/CleanShot 2024-11-18 at 21.32.03@2x.png +0 -0
  799. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731421782704.png +0 -0
  800. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731422134920.png +0 -0
  801. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/hey_egeria 2024-11-12 at 20.38.43.png +0 -0
  802. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/hey_egeria cat 2024-11-12 at 21.41.43.png +0 -0
  803. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  804. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  805. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  806. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  807. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/short-cut commands 2024-11-12 at 22.22.13.png +0 -0
  808. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-hey-egeria.png +0 -0
  809. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-integration-status-paging.png +0 -0
  810. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  811. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  812. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-show-server-status-full 2024-11-10.png +0 -0
  813. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/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
  814. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/my/README.md +0 -0
  815. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/my/__init__.py +0 -0
  816. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/ops/README.md +0 -0
  817. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/ops/orig_monitor_server_list.py +0 -0
  818. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/ops/refresh_integration_daemon.py +0 -0
  819. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/ops/restart_integration_daemon.py +0 -0
  820. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/ops/table_integ_daemon_status.py +0 -0
  821. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/ops/x_engine_actions.py +0 -0
  822. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/tech/README.md +0 -0
  823. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/commands/tech/__init__.py +0 -0
  824. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/feedback_manager_omvs.py +0 -0
  825. {pyegeria-5.3.4.2 → pyegeria-5.3.4.4.dev1}/pyegeria/registered_info.py +0 -0
@@ -0,0 +1,71 @@
1
+ Metadata-Version: 2.3
2
+ Name: pyegeria
3
+ Version: 5.3.4.4.dev1
4
+ Summary: A python client for Egeria
5
+ License: Apache 2.0
6
+ Keywords: egeria,metadata,governance
7
+ Author: Dan Wolfson
8
+ Author-email: dan.wolfson@pdr-associates.com
9
+ Requires-Python: >=3.12.3,<4.0.0
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: License :: Other/Proprietary License
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Requires-Dist: click
16
+ Requires-Dist: confluent-kafka
17
+ Requires-Dist: httpx
18
+ Requires-Dist: jupyter
19
+ Requires-Dist: mermaid-py
20
+ Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0)
21
+ Requires-Dist: pytest (>=8.2.2,<9.0.0)
22
+ Requires-Dist: requests
23
+ Requires-Dist: rich
24
+ Requires-Dist: textual
25
+ Requires-Dist: trogon (>=0.6.0,<0.7.0)
26
+ Requires-Dist: urllib3
27
+ Requires-Dist: validators
28
+ Project-URL: Homepage, https://github.com/odpi/egeria-python
29
+ Project-URL: Repository, https://github.com/odpi/egeria-python
30
+ Description-Content-Type: text/markdown
31
+
32
+ <!-- SPDX-License-Identifier: CC-BY-4.0 -->
33
+ <!-- Copyright Contributors to the ODPi Egeria project. -->
34
+
35
+ ![Egeria Logo](https://egeria-project.org/assets/images/egeria-header.png)
36
+
37
+ [![GitHub](https://img.shields.io/github/license/odpi/egeria)](LICENSE)
38
+
39
+
40
+ # pyegeria: a python client for Egeria
41
+
42
+ This is a package for easily using the Egeria
43
+ open metadata environment from python. Details about the
44
+ open source Egeria project can be found at [Egeria Project](https://egeria-project.org).
45
+
46
+ This package is in active development. There is initial
47
+ support for many of Egeria's services including configuration and operation. This client depends on
48
+ This release supports Egeria 5.1 - although most of the functions may work on earlier versions of Egeria as well.
49
+
50
+ The code is organized to mimic the existing Egeria Java Client structure.
51
+
52
+ The commands folder holds the Egeria Command Line Interface and corresponding commands
53
+ to visualize and use Egeria. The commands also serve as useful examples.
54
+
55
+ An examples folder holds some useful examples showing different facets of using pyegeria.
56
+
57
+ WARNING: files that start with "X" are in-progress placeholders that are not meant to be used..they will mature and
58
+ evolve.
59
+
60
+ All feedback is welcome. Please engage via our [community](http://egeria-project.org/guides/community/),
61
+ team calls, or via github issues in this repo. If interested in contributing,
62
+ you can engage via the community or directly reach out to
63
+ [dan.wolfson\@pdr-associates.com](mailto:dan.wolfson@pdr-associates.com?subject=pyegeria).
64
+
65
+ This is a learning experience.
66
+
67
+
68
+
69
+ ----
70
+ License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
71
+ Copyright Contributors to the ODPi Egeria project.
Binary file
@@ -0,0 +1,375 @@
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
+
14
+ from ._globals import (
15
+ INTEGRATION_GUIDS,
16
+ TEMPLATE_GUIDS,
17
+ default_time_out,
18
+ disable_ssl_warnings,
19
+ enable_ssl_check,
20
+ is_debug,
21
+ max_paging_size,
22
+ )
23
+
24
+ if disable_ssl_warnings:
25
+ from urllib3 import disable_warnings
26
+ from urllib3.exceptions import InsecureRequestWarning
27
+
28
+ disable_warnings(InsecureRequestWarning)
29
+
30
+ from ._client import Client
31
+ from ._deprecated_gov_engine import GovEng
32
+ from ._exceptions import (
33
+ InvalidParameterException,
34
+ PropertyServerException,
35
+ UserNotAuthorizedException,
36
+ print_exception_response,
37
+ )
38
+ from ._validators import (
39
+ is_json,
40
+ validate_guid,
41
+ validate_name,
42
+ validate_public,
43
+ validate_search_string,
44
+ validate_server_name,
45
+ validate_url,
46
+ validate_user_id,
47
+ )
48
+ from .asset_catalog_omvs import AssetCatalog
49
+ from .automated_curation_omvs import AutomatedCuration
50
+ from .classification_manager_omvs import ClassificationManager
51
+ from .collection_manager_omvs import CollectionManager
52
+ from .core_omag_server_config import CoreServerConfig
53
+ from .create_tech_guid_lists import build_global_guid_lists
54
+ from .egeria_cat_client import EgeriaCat
55
+ from .egeria_client import Egeria
56
+ from .egeria_config_client import EgeriaConfig
57
+ from .egeria_my_client import EgeriaMy
58
+ from .egeria_tech_client import EgeriaTech
59
+ from .feedback_manager_omvs import FeedbackManager
60
+ from .full_omag_server_config import FullServerConfig
61
+ from .glossary_browser_omvs import GlossaryBrowser
62
+ from .glossary_manager_omvs import GlossaryManager
63
+ from .mermaid_utilities import (
64
+ construct_mermaid_html,
65
+ generate_process_graph,
66
+ load_mermaid,
67
+ parse_mermaid_code,
68
+ render_mermaid,
69
+ save_mermaid_graph,
70
+ save_mermaid_html,
71
+ )
72
+ from .metadata_explorer_omvs import MetadataExplorer
73
+ from .my_profile_omvs import MyProfile
74
+ from .platform_services import Platform
75
+ from .project_manager_omvs import ProjectManager
76
+ from .registered_info import RegisteredInfo
77
+ from .runtime_manager_omvs import RuntimeManager
78
+ from .server_operations import ServerOps
79
+ from .solution_architect_omvs import SolutionArchitect
80
+ from .utils import body_slimmer, print_response
81
+ from .valid_metadata_omvs import ValidMetadataManager
82
+ from .x_action_author_omvs import ActionAuthor
83
+
84
+ #
85
+ # The following assignments were generated by the `create_tech_guid_lists.py` utility that uses the pyegeria functions
86
+ # to interrogate Egeria (and the Core Content Pack) for the GUIDS associates with integration connectors and templates.
87
+ # While these GUIDS rarely change, they will evolve as new connectors are built and integrated. This could impact some
88
+ # of the pyegeria methods that, as a convenience, use pre-assigned GUIDS to create new elements and such.
89
+ #
90
+ # This list may also be augmented (and of use) to those wishing to extend the pyegeria methods to automate or simplify
91
+ # the use of custom connectors and templates.
92
+ #
93
+ #
94
+ # global template_guids, integration_guids
95
+ # TEMPLATE_GUIDS["CSV Data File"] = "13770f93-13c8-42be-9bb8-e0b1b1e52b1f"
96
+ # TEMPLATE_GUIDS["Keystore File"] = "fbcfcc0c-1652-421f-b49b-c3e1c108768f"
97
+ # TEMPLATE_GUIDS["Unity Catalog Server"] = "dcca9788-b30f-4007-b1ac-ec634aff6879"
98
+ # INTEGRATION_GUIDS["UnityCatalogInsideCatalog"] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
99
+ # INTEGRATION_GUIDS["UnityCatalogServer"] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
100
+ # INTEGRATION_GUIDS["JDBC"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
101
+ # TEMPLATE_GUIDS["Data File"] = "66d8dda9-00cf-4e59-938c-4b0583596b1e"
102
+ # TEMPLATE_GUIDS["View Server"] = "fd61ca01-390d-4aa2-a55d-426826aa4e1b"
103
+ # TEMPLATE_GUIDS["Archive File"] = "7578e504-d00f-406d-a194-3fc0a351cdf9"
104
+ # TEMPLATE_GUIDS["Unity Catalog Catalog"] = "5ee006aa-a6d6-411b-9b8d-5f720c079cae"
105
+ # TEMPLATE_GUIDS[
106
+ # "PostgreSQL Relational Database"
107
+ # ] = "3d398b3f-7ae6-4713-952a-409f3dea8520"
108
+ # INTEGRATION_GUIDS["JDBC"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
109
+ # TEMPLATE_GUIDS["Program File"] = "32d27e9c-1fdf-455a-ad2a-42b4d7d99108"
110
+ # TEMPLATE_GUIDS["FileFolder"] = "fbdd8efd-1b69-474c-bb6d-0a304b394146"
111
+ # INTEGRATION_GUIDS["ContentPacksMonitor"] = "6bb2181e-7724-4515-ba3c-877cded55980"
112
+ # INTEGRATION_GUIDS["GeneralFilesMonitor"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
113
+ # INTEGRATION_GUIDS["SampleDataFilesMonitor"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
114
+ # INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
115
+ # TEMPLATE_GUIDS["JDBC Endpoint"] = "3d79ce50-1887-4627-ad71-ba4649aba2bc"
116
+ # TEMPLATE_GUIDS["PostgreSQL Server"] = "542134e6-b9ce-4dce-8aef-22e8daf34fdb"
117
+ # INTEGRATION_GUIDS["PostgreSQLServer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
118
+ # TEMPLATE_GUIDS["Audio Data File"] = "39b4b670-7f15-4744-a5ba-62e8edafbcee"
119
+ # TEMPLATE_GUIDS["Document File"] = "eb6f728d-fa54-4350-9807-1199cbf96851"
120
+ # TEMPLATE_GUIDS["Integration Daemon"] = "6b3516f0-dd13-4786-9601-07215f995197"
121
+ # TEMPLATE_GUIDS["XML Data File"] = "ea67ae71-c674-473e-b38b-689879d2a7d9"
122
+ # TEMPLATE_GUIDS["REST API Endpoint"] = "9ea4bff4-d193-492f-bcad-6e68c07c6f9e"
123
+ # TEMPLATE_GUIDS["Unity Catalog Schema"] = "5bf92b0f-3970-41ea-b0a3-aacfbf6fd92e"
124
+ # TEMPLATE_GUIDS["Parquet Data File"] = "7f6cd744-79c3-4d25-a056-eeb1a91574c3"
125
+ # TEMPLATE_GUIDS["3D Image Data File"] = "0059ea2b-6292-4cac-aa6f-a80a605f1114"
126
+ # TEMPLATE_GUIDS["YAML File"] = "2221855b-2b64-4b45-a2ee-c40adc5e2a64"
127
+ # TEMPLATE_GUIDS["Metadata Access Server"] = "bd8de890-fa79-4c24-aab8-20b41b5893dd"
128
+ # TEMPLATE_GUIDS["Properties File"] = "3b281111-a0ef-4fc4-99e7-9a0ef84a7636"
129
+ # TEMPLATE_GUIDS["Vector Data File"] = "db1bec7f-55a9-40d3-91c0-a57b76d422e2"
130
+ # TEMPLATE_GUIDS["Apache Kafka Server"] = "5e1ff810-5418-43f7-b7c4-e6e062f9aff7"
131
+ # INTEGRATION_GUIDS["KafkaTopic"] = "fa1f711c-0b34-4b57-8e6e-16162b132b0c"
132
+ # TEMPLATE_GUIDS["Executable File"] = "3d99a163-7a13-4576-a212-784010a8302a"
133
+ # INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
134
+ # TEMPLATE_GUIDS["Unity Catalog Table"] = "6cc1e5f5-4c1e-4290-a80e-e06643ffb13d"
135
+ # TEMPLATE_GUIDS["JSON Data File"] = "c4836635-7e9e-446a-83b5-15e206b1aff3"
136
+ # TEMPLATE_GUIDS["File System"] = "522f228c-097c-4f90-9efc-26c1f2696f87"
137
+ # TEMPLATE_GUIDS["Source Code File"] = "9c7013ef-f29b-4b01-a8ea-5ea14f64c67a"
138
+ # TEMPLATE_GUIDS["Apple MacBook Pro"] = "32a9fd56-85c9-47fe-a211-9da3871bf4da"
139
+ # TEMPLATE_GUIDS["Build Instruction File"] = "fbb2fa2e-8bcb-402e-9be7-5c6db9f2c504"
140
+ # TEMPLATE_GUIDS["Spreadsheet Data File"] = "e4fabff5-2ba9-4050-9076-6ed917970b4c"
141
+ # TEMPLATE_GUIDS["UNIX File System"] = "27117270-8667-41d0-a99a-9118f9b60199"
142
+ # TEMPLATE_GUIDS["Video Data File"] = "93b2b722-ec0f-4da4-960a-b8d4922f8bf5"
143
+ # TEMPLATE_GUIDS["Unity Catalog Function"] = "a490ba65-6104-4213-9be9-524e16fed8aa"
144
+ # TEMPLATE_GUIDS[
145
+ # "PostgreSQL Relational Database Schema"
146
+ # ] = "82a5417c-d882-4271-8444-4c6a996a8bfc"
147
+ # TEMPLATE_GUIDS["Engine Host"] = "1764a891-4234-45f1-8cc3-536af40c790d"
148
+ # TEMPLATE_GUIDS["Avro Data File"] = "9f5be428-058e-41dd-b506-3a222283b579"
149
+ # TEMPLATE_GUIDS["Unity Catalog Volume"] = "92d2d2dc-0798-41f0-9512-b10548d312b7"
150
+ # TEMPLATE_GUIDS["File"] = "ae3067c7-cc72-4a18-88e1-746803c2c86f"
151
+ # TEMPLATE_GUIDS["Apache Kafka Topic"] = "ea8f81c9-c59c-47de-9525-7cc59d1251e5"
152
+ # TEMPLATE_GUIDS["Script File"] = "dbd5e6bb-1ff8-46f4-a007-fb0485f68c92"
153
+ # TEMPLATE_GUIDS["Apache Atlas Server"] = "fe6dce45-a978-4417-ab55-17f05b8bcea7"
154
+ # TEMPLATE_GUIDS["Raster Data File"] = "47211156-f03f-4881-8526-015e695a3dac"
155
+ # TEMPLATE_GUIDS["Data Folder"] = "372a0379-7060-4c9d-8d84-bc709b31794c"
156
+ # INTEGRATION_GUIDS[
157
+ # "MaintainDataFolderLastUpdateDate"
158
+ # ] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
159
+ # INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
160
+ # TEMPLATE_GUIDS["OMAG Server Platform"] = "9b06c4dc-ddc8-47ae-b56b-28775d3a96f0"
161
+ # INTEGRATION_GUIDS["OpenAPI"] = "b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e"
162
+ # INTEGRATION_GUIDS["OMAGServerPlatform"] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
163
+ # INTEGRATION_GUIDS["PostgreSQLServerCataloguer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
164
+ # INTEGRATION_GUIDS[
165
+ # "UnityCatalogInsideCatalogSynchronizer"
166
+ # ] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
167
+ # INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
168
+ # INTEGRATION_GUIDS["JDBCDatabaseCataloguer"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
169
+ # INTEGRATION_GUIDS["FilesCataloguer"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
170
+ # INTEGRATION_GUIDS["SampleDataCataloguer"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
171
+ # INTEGRATION_GUIDS[
172
+ # "OpenLineageGovernanceActionPublisher"
173
+ # ] = "206f8faf-04da-4b6f-8280-eeee3943afeb"
174
+ # INTEGRATION_GUIDS["OpenAPICataloguer"] = "b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e"
175
+ # INTEGRATION_GUIDS[
176
+ # "OMAGServerPlatformCataloguer"
177
+ # ] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
178
+ # INTEGRATION_GUIDS["ApacheKafkaCataloguer"] = "fa1f711c-0b34-4b57-8e6e-16162b132b0c"
179
+ # INTEGRATION_GUIDS[
180
+ # "UnityCatalogServerSynchronizer"
181
+ # ] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
182
+ # INTEGRATION_GUIDS["MaintainLastUpdateDate"] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
183
+ # INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
184
+ # INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
185
+ # INTEGRATION_GUIDS["ContentPacksCataloguer"] = "6bb2181e-7724-4515-ba3c-877cded55980"
186
+ # INTEGRATION_GUIDS["OpenLineageCataloguer"] = "3347ac71-8dd2-403a-bc16-75a71be64bd7"
187
+ # global template_guids, integration_guids
188
+ # TEMPLATE_GUIDS["CSV Data File"] = "13770f93-13c8-42be-9bb8-e0b1b1e52b1f"
189
+ # TEMPLATE_GUIDS["File System Directory"] = "c353fd5d-9523-4a5e-a5e2-723ae490fe54"
190
+ # INTEGRATION_GUIDS["GeneralFilesMonitor"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
191
+ # INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
192
+ # INTEGRATION_GUIDS["ContentPacksMonitor"] = "6bb2181e-7724-4515-ba3c-877cded55980"
193
+ # INTEGRATION_GUIDS["SampleDataFilesMonitor"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
194
+ # TEMPLATE_GUIDS["Keystore File"] = "fbcfcc0c-1652-421f-b49b-c3e1c108768f"
195
+ # TEMPLATE_GUIDS["Unity Catalog Server"] = "dcca9788-b30f-4007-b1ac-ec634aff6879"
196
+ # INTEGRATION_GUIDS["UnityCatalogInsideCatalog"] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
197
+ # INTEGRATION_GUIDS["UnityCatalogServer"] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
198
+ # INTEGRATION_GUIDS["JDBC"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
199
+ # TEMPLATE_GUIDS["Data File"] = "66d8dda9-00cf-4e59-938c-4b0583596b1e"
200
+ # TEMPLATE_GUIDS["View Server"] = "fd61ca01-390d-4aa2-a55d-426826aa4e1b"
201
+ # TEMPLATE_GUIDS["Archive File"] = "7578e504-d00f-406d-a194-3fc0a351cdf9"
202
+ # TEMPLATE_GUIDS["Unity Catalog Catalog"] = "5ee006aa-a6d6-411b-9b8d-5f720c079cae"
203
+ # TEMPLATE_GUIDS[
204
+ # "PostgreSQL Relational Database"
205
+ # ] = "3d398b3f-7ae6-4713-952a-409f3dea8520"
206
+ # INTEGRATION_GUIDS["PostgreSQLDatabase"] = "ef301220-7dfe-4c6c-bb9d-8f92d9f63823"
207
+ # TEMPLATE_GUIDS["Program File"] = "32d27e9c-1fdf-455a-ad2a-42b4d7d99108"
208
+ # TEMPLATE_GUIDS["JDBC Endpoint"] = "3d79ce50-1887-4627-ad71-ba4649aba2bc"
209
+ # TEMPLATE_GUIDS["PostgreSQL Server"] = "542134e6-b9ce-4dce-8aef-22e8daf34fdb"
210
+ # INTEGRATION_GUIDS["PostgreSQLServer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
211
+ # TEMPLATE_GUIDS["Audio Data File"] = "39b4b670-7f15-4744-a5ba-62e8edafbcee"
212
+ # TEMPLATE_GUIDS["Document File"] = "eb6f728d-fa54-4350-9807-1199cbf96851"
213
+ # TEMPLATE_GUIDS["Integration Daemon"] = "6b3516f0-dd13-4786-9601-07215f995197"
214
+ # TEMPLATE_GUIDS["XML Data File"] = "ea67ae71-c674-473e-b38b-689879d2a7d9"
215
+ # TEMPLATE_GUIDS["REST API Endpoint"] = "9ea4bff4-d193-492f-bcad-6e68c07c6f9e"
216
+ # TEMPLATE_GUIDS["Unity Catalog Schema"] = "5bf92b0f-3970-41ea-b0a3-aacfbf6fd92e"
217
+ # TEMPLATE_GUIDS["Parquet Data File"] = "7f6cd744-79c3-4d25-a056-eeb1a91574c3"
218
+ # TEMPLATE_GUIDS["3D Image Data File"] = "0059ea2b-6292-4cac-aa6f-a80a605f1114"
219
+ # TEMPLATE_GUIDS["YAML File"] = "2221855b-2b64-4b45-a2ee-c40adc5e2a64"
220
+ # TEMPLATE_GUIDS["Metadata Access Server"] = "bd8de890-fa79-4c24-aab8-20b41b5893dd"
221
+ # TEMPLATE_GUIDS["Properties File"] = "3b281111-a0ef-4fc4-99e7-9a0ef84a7636"
222
+ # TEMPLATE_GUIDS["Vector Data File"] = "db1bec7f-55a9-40d3-91c0-a57b76d422e2"
223
+ # TEMPLATE_GUIDS["Executable File"] = "3d99a163-7a13-4576-a212-784010a8302a"
224
+ # INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
225
+ # TEMPLATE_GUIDS["Unity Catalog Table"] = "6cc1e5f5-4c1e-4290-a80e-e06643ffb13d"
226
+ # TEMPLATE_GUIDS["JSON Data File"] = "c4836635-7e9e-446a-83b5-15e206b1aff3"
227
+ # TEMPLATE_GUIDS["File System"] = "522f228c-097c-4f90-9efc-26c1f2696f87"
228
+ # TEMPLATE_GUIDS["Source Code File"] = "9c7013ef-f29b-4b01-a8ea-5ea14f64c67a"
229
+ # TEMPLATE_GUIDS["Apple MacBook Pro"] = "32a9fd56-85c9-47fe-a211-9da3871bf4da"
230
+ # TEMPLATE_GUIDS["Build Instruction File"] = "fbb2fa2e-8bcb-402e-9be7-5c6db9f2c504"
231
+ # TEMPLATE_GUIDS["Spreadsheet Data File"] = "e4fabff5-2ba9-4050-9076-6ed917970b4c"
232
+ # TEMPLATE_GUIDS["UNIX File System"] = "27117270-8667-41d0-a99a-9118f9b60199"
233
+ # TEMPLATE_GUIDS["Video Data File"] = "93b2b722-ec0f-4da4-960a-b8d4922f8bf5"
234
+ # TEMPLATE_GUIDS["Unity Catalog Function"] = "a490ba65-6104-4213-9be9-524e16fed8aa"
235
+ # TEMPLATE_GUIDS[
236
+ # "PostgreSQL Relational Database Schema"
237
+ # ] = "82a5417c-d882-4271-8444-4c6a996a8bfc"
238
+ # TEMPLATE_GUIDS["Engine Host"] = "1764a891-4234-45f1-8cc3-536af40c790d"
239
+ # TEMPLATE_GUIDS["Avro Data File"] = "9f5be428-058e-41dd-b506-3a222283b579"
240
+ # TEMPLATE_GUIDS["Unity Catalog Volume"] = "92d2d2dc-0798-41f0-9512-b10548d312b7"
241
+ # TEMPLATE_GUIDS["File"] = "ae3067c7-cc72-4a18-88e1-746803c2c86f"
242
+ # TEMPLATE_GUIDS["Apache Kafka Topic"] = "ea8f81c9-c59c-47de-9525-7cc59d1251e5"
243
+ # INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
244
+ # TEMPLATE_GUIDS["Script File"] = "dbd5e6bb-1ff8-46f4-a007-fb0485f68c92"
245
+ # TEMPLATE_GUIDS["Raster Data File"] = "47211156-f03f-4881-8526-015e695a3dac"
246
+ # TEMPLATE_GUIDS["Data Folder"] = "372a0379-7060-4c9d-8d84-bc709b31794c"
247
+ # INTEGRATION_GUIDS[
248
+ # "MaintainDataFolderLastUpdateDate"
249
+ # ] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
250
+ # INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
251
+ # TEMPLATE_GUIDS["OMAG Server Platform"] = "9b06c4dc-ddc8-47ae-b56b-28775d3a96f0"
252
+ # INTEGRATION_GUIDS["OMAGServerPlatform"] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
253
+ # INTEGRATION_GUIDS["PostgreSQLServerCataloguer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
254
+ # INTEGRATION_GUIDS[
255
+ # "UnityCatalogInsideCatalogSynchronizer"
256
+ # ] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
257
+ # INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
258
+ # INTEGRATION_GUIDS[
259
+ # "PostgreSQLDatabaseCataloguer"
260
+ # ] = "ef301220-7dfe-4c6c-bb9d-8f92d9f63823"
261
+ # INTEGRATION_GUIDS["JDBCDatabaseCataloguer"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
262
+ # INTEGRATION_GUIDS["FilesCataloguer"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
263
+ # INTEGRATION_GUIDS["SampleDataCataloguer"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
264
+ # INTEGRATION_GUIDS[
265
+ # "OpenLineageGovernanceActionPublisher"
266
+ # ] = "206f8faf-04da-4b6f-8280-eeee3943afeb"
267
+ # INTEGRATION_GUIDS[
268
+ # "OMAGServerPlatformCataloguer"
269
+ # ] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
270
+ # INTEGRATION_GUIDS[
271
+ # "UnityCatalogServerSynchronizer"
272
+ # ] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
273
+ # INTEGRATION_GUIDS["MaintainLastUpdateDate"] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
274
+ # INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
275
+ # INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
276
+ # INTEGRATION_GUIDS["ContentPacksCataloguer"] = "6bb2181e-7724-4515-ba3c-877cded55980"
277
+ # INTEGRATION_GUIDS["OpenLineageCataloguer"] = "3347ac71-8dd2-403a-bc16-75a71be64bd7"
278
+ global template_guids, integration_guids
279
+ TEMPLATE_GUIDS["CSV Data File"] = "13770f93-13c8-42be-9bb8-e0b1b1e52b1f"
280
+ TEMPLATE_GUIDS["File System Directory"] = "c353fd5d-9523-4a5e-a5e2-723ae490fe54"
281
+ INTEGRATION_GUIDS["GeneralFilesMonitor"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
282
+ INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
283
+ INTEGRATION_GUIDS["ContentPacksMonitor"] = "6bb2181e-7724-4515-ba3c-877cded55980"
284
+ INTEGRATION_GUIDS["SampleDataFilesMonitor"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
285
+ TEMPLATE_GUIDS["Keystore File"] = "fbcfcc0c-1652-421f-b49b-c3e1c108768f"
286
+ TEMPLATE_GUIDS["Unity Catalog Server"] = "dcca9788-b30f-4007-b1ac-ec634aff6879"
287
+ INTEGRATION_GUIDS["UnityCatalogInsideCatalog"] = "74dde22f-2249-4ea3-af2b-b39e73f79b81"
288
+ INTEGRATION_GUIDS["UnityCatalogServer"] = "06d068d9-9e08-4e67-8c59-073bbf1013af"
289
+ INTEGRATION_GUIDS["JDBC"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
290
+ TEMPLATE_GUIDS["Data File"] = "66d8dda9-00cf-4e59-938c-4b0583596b1e"
291
+ TEMPLATE_GUIDS["View Server"] = "fd61ca01-390d-4aa2-a55d-426826aa4e1b"
292
+ TEMPLATE_GUIDS["Archive File"] = "7578e504-d00f-406d-a194-3fc0a351cdf9"
293
+ TEMPLATE_GUIDS["Unity Catalog Catalog"] = "5ee006aa-a6d6-411b-9b8d-5f720c079cae"
294
+ TEMPLATE_GUIDS["PostgreSQL Relational Database"] = (
295
+ "3d398b3f-7ae6-4713-952a-409f3dea8520"
296
+ )
297
+ INTEGRATION_GUIDS["PostgreSQLDatabase"] = "ef301220-7dfe-4c6c-bb9d-8f92d9f63823"
298
+ TEMPLATE_GUIDS["Program File"] = "32d27e9c-1fdf-455a-ad2a-42b4d7d99108"
299
+ TEMPLATE_GUIDS["JDBC Endpoint"] = "3d79ce50-1887-4627-ad71-ba4649aba2bc"
300
+ TEMPLATE_GUIDS["PostgreSQL Server"] = "542134e6-b9ce-4dce-8aef-22e8daf34fdb"
301
+ INTEGRATION_GUIDS["PostgreSQLServer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
302
+ TEMPLATE_GUIDS["Audio Data File"] = "39b4b670-7f15-4744-a5ba-62e8edafbcee"
303
+ TEMPLATE_GUIDS["Document File"] = "eb6f728d-fa54-4350-9807-1199cbf96851"
304
+ TEMPLATE_GUIDS["Integration Daemon"] = "6b3516f0-dd13-4786-9601-07215f995197"
305
+ TEMPLATE_GUIDS["XML Data File"] = "ea67ae71-c674-473e-b38b-689879d2a7d9"
306
+ TEMPLATE_GUIDS["REST API Endpoint"] = "9ea4bff4-d193-492f-bcad-6e68c07c6f9e"
307
+ TEMPLATE_GUIDS["Unity Catalog Schema"] = "5bf92b0f-3970-41ea-b0a3-aacfbf6fd92e"
308
+ TEMPLATE_GUIDS["Parquet Data File"] = "7f6cd744-79c3-4d25-a056-eeb1a91574c3"
309
+ TEMPLATE_GUIDS["3D Image Data File"] = "0059ea2b-6292-4cac-aa6f-a80a605f1114"
310
+ TEMPLATE_GUIDS["YAML File"] = "2221855b-2b64-4b45-a2ee-c40adc5e2a64"
311
+ TEMPLATE_GUIDS["Metadata Access Server"] = "bd8de890-fa79-4c24-aab8-20b41b5893dd"
312
+ TEMPLATE_GUIDS["Properties File"] = "3b281111-a0ef-4fc4-99e7-9a0ef84a7636"
313
+ TEMPLATE_GUIDS["Vector Data File"] = "db1bec7f-55a9-40d3-91c0-a57b76d422e2"
314
+ TEMPLATE_GUIDS["Databricks Unity Catalog Server"] = (
315
+ "3f7f62f6-4abc-424e-9f92-523306e7d5d5"
316
+ )
317
+ TEMPLATE_GUIDS["Executable File"] = "3d99a163-7a13-4576-a212-784010a8302a"
318
+ INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
319
+ TEMPLATE_GUIDS["Unity Catalog Table"] = "6cc1e5f5-4c1e-4290-a80e-e06643ffb13d"
320
+ TEMPLATE_GUIDS["JSON Data File"] = "c4836635-7e9e-446a-83b5-15e206b1aff3"
321
+ TEMPLATE_GUIDS["File System"] = "522f228c-097c-4f90-9efc-26c1f2696f87"
322
+ TEMPLATE_GUIDS["Source Code File"] = "9c7013ef-f29b-4b01-a8ea-5ea14f64c67a"
323
+ TEMPLATE_GUIDS["Apple MacBook Pro"] = "32a9fd56-85c9-47fe-a211-9da3871bf4da"
324
+ TEMPLATE_GUIDS["Build Instruction File"] = "fbb2fa2e-8bcb-402e-9be7-5c6db9f2c504"
325
+ TEMPLATE_GUIDS["Spreadsheet Data File"] = "e4fabff5-2ba9-4050-9076-6ed917970b4c"
326
+ TEMPLATE_GUIDS["UNIX File System"] = "27117270-8667-41d0-a99a-9118f9b60199"
327
+ TEMPLATE_GUIDS["Video Data File"] = "93b2b722-ec0f-4da4-960a-b8d4922f8bf5"
328
+ TEMPLATE_GUIDS["Unity Catalog Function"] = "a490ba65-6104-4213-9be9-524e16fed8aa"
329
+ TEMPLATE_GUIDS["PostgreSQL Relational Database Schema"] = (
330
+ "82a5417c-d882-4271-8444-4c6a996a8bfc"
331
+ )
332
+ TEMPLATE_GUIDS["Engine Host"] = "1764a891-4234-45f1-8cc3-536af40c790d"
333
+ TEMPLATE_GUIDS["Avro Data File"] = "9f5be428-058e-41dd-b506-3a222283b579"
334
+ TEMPLATE_GUIDS["Unity Catalog Volume"] = "92d2d2dc-0798-41f0-9512-b10548d312b7"
335
+ TEMPLATE_GUIDS["File"] = "ae3067c7-cc72-4a18-88e1-746803c2c86f"
336
+ TEMPLATE_GUIDS["Apache Kafka Topic"] = "ea8f81c9-c59c-47de-9525-7cc59d1251e5"
337
+ INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
338
+ TEMPLATE_GUIDS["Script File"] = "dbd5e6bb-1ff8-46f4-a007-fb0485f68c92"
339
+ TEMPLATE_GUIDS["Raster Data File"] = "47211156-f03f-4881-8526-015e695a3dac"
340
+ TEMPLATE_GUIDS["Data Folder"] = "372a0379-7060-4c9d-8d84-bc709b31794c"
341
+ INTEGRATION_GUIDS["MaintainDataFolderLastUpdateDate"] = (
342
+ "fd26f07c-ae44-4bc5-b457-37b43112224f"
343
+ )
344
+ INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
345
+ TEMPLATE_GUIDS["OMAG Server Platform"] = "9b06c4dc-ddc8-47ae-b56b-28775d3a96f0"
346
+ INTEGRATION_GUIDS["OMAGServerPlatform"] = "dee84e6e-7a96-4975-86c1-152fb3ab759b"
347
+ INTEGRATION_GUIDS["OpenLineageAPIPublisher"] = "2156bc98-973a-4859-908d-4ccc96f53cc5"
348
+ INTEGRATION_GUIDS["UnityCatalogInsideCatalogSynchronizer"] = (
349
+ "74dde22f-2249-4ea3-af2b-b39e73f79b81"
350
+ )
351
+ INTEGRATION_GUIDS["PostgreSQLServerCataloguer"] = "36f69fd0-54ba-4f59-8a44-11ccf2687a34"
352
+ INTEGRATION_GUIDS["PostgreSQLDatabaseCataloguer"] = (
353
+ "ef301220-7dfe-4c6c-bb9d-8f92d9f63823"
354
+ )
355
+ INTEGRATION_GUIDS["JDBCDatabaseCataloguer"] = "70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa"
356
+ INTEGRATION_GUIDS["FilesCataloguer"] = "1b98cdac-dd0a-4621-93db-99ef5a1098bc"
357
+ INTEGRATION_GUIDS["SampleDataCataloguer"] = "cd6479e1-2fe7-4426-b358-8a0cf70be117"
358
+ INTEGRATION_GUIDS["OpenLineageGovernanceActionPublisher"] = (
359
+ "206f8faf-04da-4b6f-8280-eeee3943afeb"
360
+ )
361
+ INTEGRATION_GUIDS["OMAGServerPlatformCataloguer"] = (
362
+ "dee84e6e-7a96-4975-86c1-152fb3ab759b"
363
+ )
364
+ INTEGRATION_GUIDS["UnityCatalogServerSynchronizer"] = (
365
+ "06d068d9-9e08-4e67-8c59-073bbf1013af"
366
+ )
367
+ INTEGRATION_GUIDS["MaintainLastUpdateDate"] = "fd26f07c-ae44-4bc5-b457-37b43112224f"
368
+ INTEGRATION_GUIDS["OpenLineageKafkaListener"] = "980b989c-de78-4e6a-a58d-51049d7381bf"
369
+ INTEGRATION_GUIDS["OpenLineageFilePublisher"] = "6271b678-7d22-4cdf-87b1-45b366beaf4e"
370
+ INTEGRATION_GUIDS["ContentPacksCataloguer"] = "6bb2181e-7724-4515-ba3c-877cded55980"
371
+ INTEGRATION_GUIDS["OpenLineageCataloguer"] = "3347ac71-8dd2-403a-bc16-75a71be64bd7"
372
+
373
+
374
+ if __name__ == "__main__":
375
+ print("Main-Init")