pyegeria 5.2.1.1__py3-none-any.whl → 5.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- commands/cat/.DS_Store +0 -0
- commands/cat/Dr-Egeria_md-orig.py +166 -0
- commands/cat/__init__.py +23 -0
- commands/cat/dr_egeria_jupyter.py +122 -0
- commands/cat/dr_egeria_md.py +247 -0
- {pyegeria/commands → commands}/cat/exp_list_glossaries.py +3 -4
- {pyegeria/commands → commands}/cat/get_asset_graph.py +4 -4
- {pyegeria/commands → commands}/cat/get_collection.py +8 -9
- {pyegeria/commands → commands}/cat/get_project_dependencies.py +6 -8
- {pyegeria/commands → commands}/cat/get_project_structure.py +6 -8
- {pyegeria/commands → commands}/cat/get_tech_type_elements.py +13 -15
- {pyegeria/commands → commands}/cat/glossary_actions.py +184 -34
- {pyegeria/commands → commands}/cat/list_assets.py +9 -6
- commands/cat/list_categories.py +192 -0
- {pyegeria/commands → commands}/cat/list_cert_types.py +6 -6
- {pyegeria/commands → commands}/cat/list_collections.py +62 -19
- commands/cat/list_data_structures.py +223 -0
- {pyegeria/commands → commands}/cat/list_deployed_catalogs.py +9 -8
- {pyegeria/commands → commands}/cat/list_deployed_database_schemas.py +10 -9
- {pyegeria/commands → commands}/cat/list_deployed_databases.py +9 -8
- pyegeria/commands/cat/list_servers_deployed_imp.py → commands/cat/list_deployed_servers.py +3 -3
- {pyegeria/commands → commands}/cat/list_glossaries.py +57 -15
- {pyegeria/commands → commands}/cat/list_projects.py +5 -5
- {pyegeria/commands → commands}/cat/list_tech_type_elements.py +3 -3
- {pyegeria/commands → commands}/cat/list_tech_types.py +4 -4
- {pyegeria/commands → commands}/cat/list_terms.py +93 -45
- {pyegeria/commands → commands}/cat/list_todos.py +3 -3
- {pyegeria/commands → commands}/cat/list_user_ids.py +9 -8
- {pyegeria/commands → commands}/cli/__init__.py +1 -1
- {pyegeria/commands → commands}/cli/egeria.py +506 -250
- {pyegeria/commands → commands}/cli/egeria_cat.py +127 -50
- {pyegeria/commands → commands}/cli/egeria_login_tui.py +15 -17
- {pyegeria/commands → commands}/cli/egeria_my.py +22 -15
- {pyegeria/commands → commands}/cli/egeria_ops.py +54 -55
- {pyegeria/commands → commands}/cli/egeria_tech.py +364 -152
- {pyegeria/commands → commands}/cli/ops_config.py +11 -4
- commands/cli/txt_custom_v2.tcss +19 -0
- commands/my/__init__.py +22 -0
- {pyegeria/commands → commands}/my/list_my_profile.py +6 -8
- {pyegeria/commands → commands}/my/list_my_roles.py +4 -4
- {pyegeria/commands → commands}/my/monitor_my_todos.py +7 -7
- {pyegeria/commands → commands}/my/monitor_open_todos.py +7 -7
- {pyegeria/commands → commands}/my/todo_actions.py +3 -2
- commands/ops/__init__.py +23 -0
- {pyegeria/commands → commands}/ops/gov_server_actions.py +5 -4
- {pyegeria/commands → commands}/ops/list_archives.py +7 -6
- {pyegeria/commands → commands}/ops/list_catalog_targets.py +4 -4
- {pyegeria/commands → commands}/ops/load_archive.py +4 -2
- {pyegeria/commands → commands}/ops/monitor_asset_events.py +8 -7
- {pyegeria/commands → commands}/ops/monitor_engine_activity.py +5 -5
- {pyegeria/commands → commands}/ops/monitor_engine_activity_c.py +3 -3
- {pyegeria/commands → commands}/ops/monitor_gov_eng_status.py +3 -2
- {pyegeria/commands → commands}/ops/monitor_integ_daemon_status.py +23 -15
- {pyegeria/commands → commands}/ops/monitor_platform_status.py +5 -4
- {pyegeria/commands → commands}/ops/monitor_server_startup.py +7 -7
- {pyegeria/commands → commands}/ops/monitor_server_status.py +16 -11
- {pyegeria/commands → commands}/ops/orig_monitor_server_list.py +2 -2
- {pyegeria/commands → commands}/ops/orig_monitor_server_status.py +3 -3
- {pyegeria/commands → commands}/ops/refresh_integration_daemon.py +4 -4
- {pyegeria/commands → commands}/ops/restart_integration_daemon.py +3 -3
- {pyegeria/commands → commands}/ops/table_integ_daemon_status.py +3 -3
- commands/tech/__init__.py +22 -0
- commands/tech/generic_actions.py +74 -0
- {pyegeria/commands → commands}/tech/get_element_info.py +5 -7
- {pyegeria/commands → commands}/tech/get_guid_info.py +4 -5
- {pyegeria/commands → commands}/tech/get_tech_details.py +8 -9
- {pyegeria/commands → commands}/tech/get_tech_type_template.py +4 -4
- pyegeria/commands/tech/list_elements.py → commands/tech/list_all_om_type_elements.py +11 -10
- pyegeria/commands/tech/list_elements_x.py → commands/tech/list_all_om_type_elements_x.py +11 -12
- pyegeria/commands/tech/list_related_elements.py → commands/tech/list_all_related_elements.py +11 -9
- {pyegeria/commands → commands}/tech/list_anchored_elements.py +16 -16
- {pyegeria/commands → commands}/tech/list_asset_types.py +4 -4
- commands/tech/list_elements_by_classification_by_property_value.py +200 -0
- commands/tech/list_elements_by_property_value.py +180 -0
- commands/tech/list_elements_by_property_value_x.py +201 -0
- {pyegeria/commands → commands}/tech/list_elements_for_classification.py +11 -9
- {pyegeria/commands → commands}/tech/list_gov_action_processes.py +5 -6
- commands/tech/list_information_supply_chains.py +167 -0
- {pyegeria/commands → commands}/tech/list_registered_services.py +3 -3
- commands/tech/list_related_elements_with_prop_value.py +221 -0
- {pyegeria/commands → commands}/tech/list_related_specification.py +3 -3
- {pyegeria/commands → commands}/tech/list_relationship_types.py +4 -5
- {pyegeria/commands → commands}/tech/list_relationships.py +3 -3
- commands/tech/list_solution_blueprints.py +181 -0
- commands/tech/list_solution_components.py +185 -0
- commands/tech/list_solution_roles.py +184 -0
- {pyegeria/commands → commands}/tech/list_tech_templates.py +3 -3
- {pyegeria/commands → commands}/tech/list_valid_metadata_values.py +5 -6
- {pyegeria/commands → commands}/tech/table_tech_templates.py +16 -13
- {pyegeria/commands → commands}/tech/x_list_related_elements.py +6 -4
- md_processing/__init__.py +49 -0
- md_processing/data/commands.json +3252 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro.md +254 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_more_terms.md +696 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part1.md +254 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part2.md +298 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part3.md +608 -0
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part4.md +94 -0
- md_processing/dr_egeria_inbox/archive/freddie_intro.md +284 -0
- md_processing/dr_egeria_inbox/archive/freddie_intro_orig.md +275 -0
- md_processing/dr_egeria_inbox/archive/test-term.md +110 -0
- md_processing/dr_egeria_inbox/cat_test.md +100 -0
- md_processing/dr_egeria_inbox/data_field.md +54 -0
- md_processing/dr_egeria_inbox/data_spec.md +77 -0
- md_processing/dr_egeria_inbox/data_spec_test.md +2406 -0
- md_processing/dr_egeria_inbox/data_test.md +86 -0
- md_processing/dr_egeria_inbox/dr_egeria_intro_categories.md +168 -0
- md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md +280 -0
- md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md +313 -0
- md_processing/dr_egeria_inbox/dr_egeria_intro_part3.md +1073 -0
- md_processing/dr_egeria_inbox/dr_egeria_isc1.md +44 -0
- md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb +341 -0
- md_processing/dr_egeria_inbox/glossary_test1.md +324 -0
- md_processing/dr_egeria_inbox/rel.md +8 -0
- md_processing/dr_egeria_inbox/sb.md +119 -0
- md_processing/dr_egeria_inbox/search_test.md +39 -0
- md_processing/dr_egeria_inbox/solution-components.md +154 -0
- md_processing/dr_egeria_inbox/solution_blueprints.md +118 -0
- md_processing/dr_egeria_inbox/synonym_test.md +42 -0
- md_processing/dr_egeria_inbox/t2.md +268 -0
- md_processing/dr_egeria_outbox/processed-2025-05-15 19:52-data_test.md +94 -0
- md_processing/dr_egeria_outbox/processed-2025-05-16 07:39-data_test.md +88 -0
- md_processing/dr_egeria_outbox/processed-2025-05-17 16:01-data_field.md +56 -0
- md_processing/dr_egeria_outbox/processed-2025-05-18 15:51-data_test.md +103 -0
- md_processing/dr_egeria_outbox/processed-2025-05-18 16:47-data_test.md +94 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 07:14-data_test.md +96 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 07:20-data_test.md +100 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 07:22-data_test.md +88 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 09:26-data_test.md +91 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 10:27-data_test.md +91 -0
- md_processing/dr_egeria_outbox/processed-2025-05-19 14:04-data_test.md +91 -0
- md_processing/md_commands/__init__.py +3 -0
- md_processing/md_commands/blueprint_commands.py +303 -0
- md_processing/md_commands/data_designer_commands.py +1182 -0
- md_processing/md_commands/glossary_commands.py +1144 -0
- md_processing/md_commands/project_commands.py +163 -0
- md_processing/md_processing_utils/__init__.py +4 -0
- md_processing/md_processing_utils/common_md_proc_utils.py +724 -0
- md_processing/md_processing_utils/common_md_utils.py +172 -0
- md_processing/md_processing_utils/extraction_utils.py +486 -0
- md_processing/md_processing_utils/md_processing_constants.py +128 -0
- md_processing/md_processing_utils/message_constants.py +19 -0
- pyegeria/.DS_Store +0 -0
- pyegeria/__init__.py +231 -146
- pyegeria/_client.py +36 -13
- pyegeria/_exceptions.py +55 -46
- pyegeria/_globals.py +11 -1
- pyegeria/_validators.py +5 -5
- pyegeria/asset_catalog_omvs.py +78 -21
- pyegeria/automated_curation_omvs.py +11 -6
- pyegeria/classification_manager_omvs.py +41 -37
- pyegeria/collection_manager_omvs.py +722 -705
- pyegeria/core_omag_server_config.py +1 -1
- pyegeria/create_tech_guid_lists.py +13 -13
- pyegeria/data_designer_omvs.py +5104 -0
- pyegeria/dr.egeria spec.md +9 -0
- pyegeria/egeria_cat_client.py +5 -8
- pyegeria/egeria_client.py +39 -24
- pyegeria/egeria_config_client.py +2 -1
- pyegeria/egeria_my_client.py +4 -4
- pyegeria/egeria_tech_client.py +40 -18
- pyegeria/feedback_manager_omvs.py +1 -1
- pyegeria/full_omag_server_config.py +5 -3
- pyegeria/glossary_browser_omvs.py +1915 -694
- pyegeria/glossary_manager_omvs.py +685 -1842
- pyegeria/m_test.py +118 -0
- pyegeria/md_processing_helpers.py +58 -0
- pyegeria/md_processing_utils.py +2147 -0
- pyegeria/md_processing_utils_orig.py +1103 -0
- pyegeria/mermaid_utilities.py +1194 -14
- pyegeria/metadata_explorer_omvs.py +5 -50
- pyegeria/my_profile_omvs.py +3 -2
- pyegeria/output_formatter.py +389 -0
- pyegeria/platform_services.py +5 -5
- pyegeria/project_manager_omvs.py +97 -18
- pyegeria/runtime_manager_omvs.py +8 -10
- pyegeria/server_operations.py +2 -2
- pyegeria/solution_architect_omvs.py +2156 -0
- pyegeria/template_manager_omvs.py +13 -13
- pyegeria/utils.py +3 -1
- pyegeria/valid_metadata_omvs.py +5 -4
- pyegeria/x_action_author_omvs.py +3 -6
- {pyegeria-5.2.1.1.dist-info → pyegeria-5.3.dist-info}/METADATA +9 -8
- pyegeria-5.3.dist-info/RECORD +196 -0
- {pyegeria-5.2.1.1.dist-info → pyegeria-5.3.dist-info}/WHEEL +1 -1
- pyegeria-5.3.dist-info/entry_points.txt +99 -0
- pyegeria/commands/README.md +0 -47
- pyegeria/commands/__init__.py +0 -22
- pyegeria/commands/cat/__init__.py +0 -1
- pyegeria/commands/doc/README.md +0 -145
- pyegeria/commands/doc/Visual Command Reference/README.md +0 -511
- pyegeria/commands/doc/Visual Command Reference/cat/show/assets/asset-graph 2024-11-20 at 15.56.42.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/assets/assets-in-domain 2024-11-20 at 15.49.55@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/assets/elements-of-type 2024-11-20 at 16.01.35.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/assets/tech-type-elements 2024-11-20 at 16.05.05.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs 2024-12-17 at 15.43.27@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-data-catalogs-2024-11-20 at 16.17.43@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-11-25 at 20.14.50@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-schemas 2024-12-17 at 15.48.38@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-servers 2024-11-25 at 20.21.25@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed-servers 2024-12-17 at 15.52.16@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/deployed-data/deployed_databases 2024-12-16 at 16.40.31@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-glossaries 2024-11-25 at 20.30.02.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/glossary/list-terms 2024-11-25 at 20.32.11.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/asset-types 2024-11-25 at 20.34.19@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/certification-types 2024-11-25 at 20.37.07.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/collection-graph 2024-12-12 at 11.33.18@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-collections 2024-12-10 at 14.25.51@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-todos 2024-12-12 at 11.46.30@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/list-user-ids 2024-12-12 at 11.51.09@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/info/tech-types 2024-12-12 at 11.37.20@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/projects/project_dependencies 2024-12-14 at 16.24.39@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/projects/project_structure 2024-12-14 at 16.21.35@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/cat/show/projects/projects 2024-12-14 at 16.18.10@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/hey_egeria tui 2024-12-16 at 16.58.22@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/my/show/my_profile 2024-12-14 at 16.29.27@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/my/show/my_roles 2024-12-14 at 16.32.10@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/my/show/my_todos 2024-12-15 at 16.24.13@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/my/show/open_todos 2024-12-14 at 16.36.12@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/engines/list_engine_activity compressed 2024-12-15 at 16.48.48@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_activity 2024-12-15 at 16.32.55@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_activity compressed 2024-12-15 at 16.38.29@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/engines/monitor_engine_status 2024-12-15 at 16.51.26.jpeg +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/integrations/monitor_integration_daemon_status 2024-12-15 at 16.57.12@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/integrations/monitor_integration_targets 2024-12-15 at 17.02.19@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/platforms/monitor_platform_status 2024-12-15 at 19.53.18@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_server_status 2024-12-15 at 19.59.39@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_server_status full 2024-12-15 at 20.01.57@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/ops/show/servers/monitor_startup_servers 2024-12-15 at 19.56.07@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/get_anchored_elements 2024-12-15 at 21.25.41@2x.png +0 -0
- 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
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/info_for_guid 2024-12-16 at 11.35.29@2x.png +0 -0
- 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
- 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
- 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
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/related_elements 2024-12-16 at 14.55.01@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/elements/show_related_specifications 2024-12-16 at 15.04.55@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/asset_types 2024-12-16 at 15.10.16@2x.png +0 -0
- 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
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/governance_action_processes 2024-12-16 at 15.13.01@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/registered_services 2024-12-16 at 16.44.54@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/relationship_types 2024-12-16 at 16.20.34@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/relationship_types 2024-12-19 at 10.51.54@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-info/valid_metadata_values 2024-12-16 at 15.31.56@2x.png +0 -0
- 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
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/list_technology_types 2024-12-16 at 15.39.20@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_details 2024-12-16 at 15.37.21@2x.png +0 -0
- pyegeria/commands/doc/Visual Command Reference/tech/show/tech-types/tech_type_templates 2024-12-16 at 16.11.48@2x.png +0 -0
- pyegeria/commands/doc/glossary/basic-glossary-tui.md +0 -109
- pyegeria/commands/doc/glossary/images/delete-glossary-step1 2024-11-06 at 15.47.23@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/delete-glossary-step2 2024-11-06 at 15.51.29@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/delete-glossary-step3 2024-11-06 at 15.53.19@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/delete-glossary-step4 2024-11-06 at 15.55.11@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/out-create-glossary example 2024-11-05 at 20.38.04@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/out-create-term 2024-11-06 at 20.48.29.png +0 -0
- pyegeria/commands/doc/glossary/images/out-delete-term 2024-11-07 at 03.57.25.png +0 -0
- pyegeria/commands/doc/glossary/images/out-display-terms-for-glossary-test 2024-11-06 at 20.51.28.png +0 -0
- pyegeria/commands/doc/glossary/images/out-export-example 2024-11-07 at 09.54.57.png +0 -0
- pyegeria/commands/doc/glossary/images/out-exported-terms 2024-11-06 at 21.06.32.png +0 -0
- pyegeria/commands/doc/glossary/images/out-glossary-list example 2024-11-05 at 20.41.02@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/out-import-terms 2024-11-07 at 08.15.18.png +0 -0
- pyegeria/commands/doc/glossary/images/out-list-all-terms 2024-11-06 at 16.22.20@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/out-list-terms-for-example 2024-11-06 at 16.40.12.png +0 -0
- pyegeria/commands/doc/glossary/images/out-list-terms-second 2024-11-06 at 16.45.13.png +0 -0
- pyegeria/commands/doc/glossary/images/out-pipx install pyegeria 2024-11-10 at 18.12.21.png +0 -0
- pyegeria/commands/doc/glossary/images/out-server-status-full 2024-11-10 at 18.25.14.png +0 -0
- pyegeria/commands/doc/glossary/images/out-servers-status 2024-11-10 at 18.15.42.png +0 -0
- pyegeria/commands/doc/glossary/images/out-upsert-import 2024-11-07 at 19.37.00.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-2024-11-10 at 18.26.29.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-create-glossary example 2024-11-05 at 20.34.24@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-create-term 2024-11-06 at 20.46.35.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-delete-term 2024-11-07 at 03.51.57.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-display-terms-for-example 2024-11-06 at 20.56.49.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-export-example 2024-11-07 at 09.52.59.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-hey-egeria 2024-11-10 at 18.31.01.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-import-upsert-example 2024-11-07 at 10.08.37.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-list-terms-second 2024-11-06 at 16.46.34.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-load-archive.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-server-status-full 2024-11-10 at 19.14.36.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-show-glossaries 2024-11-07 at 20.00.05.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-show-glossary-terms 2024-11-05 at 19.37.53@2x.png +0 -0
- pyegeria/commands/doc/glossary/images/tui-upsert 2024-11-07 at 11.49.04.png +0 -0
- pyegeria/commands/doc/glossary/images/upsert-example.om-terms 2024-11-07 at 11.44.05.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/README.md +0 -346
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/CleanShot 2024-11-18 at 21.32.03@2x.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731421782704.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/Xmind 1731422134920.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/hey_egeria 2024-11-12 at 20.38.43.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/hey_egeria cat 2024-11-12 at 21.41.43.png +0 -0
- 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
- 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
- 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
- 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
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/short-cut commands 2024-11-12 at 22.22.13.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-hey-egeria.png +0 -0
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-integration-status-paging.png +0 -0
- 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
- 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
- pyegeria/commands/doc/hey_egeria: a pyegeria command line interface/images/tui-show-server-status-full 2024-11-10.png +0 -0
- 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
- pyegeria/commands/ops/__init__.py +0 -22
- pyegeria/commands/tech/__init__.py +0 -0
- pyegeria-5.2.1.1.dist-info/RECORD +0 -231
- pyegeria-5.2.1.1.dist-info/entry_points.txt +0 -81
- {pyegeria/commands → commands}/cat/README.md +0 -0
- {pyegeria/commands → commands}/my/README.md +0 -0
- {pyegeria/commands → commands}/ops/README.md +0 -0
- {pyegeria/commands → commands}/ops/x_engine_actions.py +0 -0
- {pyegeria/commands → commands}/tech/README.md +0 -0
- /pyegeria/commands/my/__init__.py → /md_processing/dr_egeria_inbox/t1.md +0 -0
- {pyegeria-5.2.1.1.dist-info → pyegeria-5.3.dist-info}/LICENSE +0 -0
@@ -7,7 +7,8 @@ Display the status of cataloged platforms and servers.
|
|
7
7
|
"""
|
8
8
|
|
9
9
|
import argparse
|
10
|
-
import os
|
10
|
+
import os
|
11
|
+
import sys
|
11
12
|
import time
|
12
13
|
|
13
14
|
from rich.console import Console
|
@@ -26,11 +27,11 @@ from pyegeria._exceptions import (
|
|
26
27
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
27
28
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
28
29
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
29
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
30
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
30
31
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
31
32
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
32
33
|
)
|
33
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
34
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
34
35
|
EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
|
35
36
|
"EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
|
36
37
|
)
|
@@ -146,7 +147,7 @@ def display_status(
|
|
146
147
|
platform_url = " "
|
147
148
|
platform_origin = " "
|
148
149
|
platform_started = " "
|
149
|
-
|
150
|
+
token = r_client.refresh_egeria_bearer_token()
|
150
151
|
return table
|
151
152
|
|
152
153
|
try:
|
@@ -8,29 +8,29 @@ Unit tests for the Utils helper functions using the Pytest framework.
|
|
8
8
|
|
9
9
|
A simple server status display using the OMAS services.
|
10
10
|
"""
|
11
|
+
import argparse
|
11
12
|
import os
|
12
13
|
import time
|
13
|
-
|
14
|
+
|
15
|
+
from rich.live import Live
|
16
|
+
from rich.table import Table
|
14
17
|
|
15
18
|
from pyegeria import (
|
16
19
|
InvalidParameterException,
|
17
20
|
PropertyServerException,
|
21
|
+
ServerOps,
|
18
22
|
UserNotAuthorizedException,
|
19
23
|
print_exception_response,
|
20
|
-
ServerOps,
|
21
24
|
)
|
22
|
-
from rich.table import Table
|
23
|
-
from rich.live import Live
|
24
|
-
|
25
25
|
|
26
26
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
27
27
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
28
28
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
29
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
29
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
30
30
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
31
31
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
32
32
|
)
|
33
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
33
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
34
34
|
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
35
35
|
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
36
36
|
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
@@ -24,19 +24,19 @@ from rich.table import Table
|
|
24
24
|
from pyegeria import (
|
25
25
|
InvalidParameterException,
|
26
26
|
PropertyServerException,
|
27
|
+
RuntimeManager,
|
27
28
|
UserNotAuthorizedException,
|
28
29
|
print_exception_response,
|
29
|
-
RuntimeManager,
|
30
30
|
)
|
31
31
|
|
32
32
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
33
33
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
34
34
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
35
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
35
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
36
36
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
37
37
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
38
38
|
)
|
39
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
39
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
40
40
|
EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
|
41
41
|
"EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
|
42
42
|
)
|
@@ -50,10 +50,10 @@ EGERIA_WIDTH = int(os.environ.get("EGERIA_WIDTH", "200"))
|
|
50
50
|
|
51
51
|
def display_status(
|
52
52
|
extended: bool,
|
53
|
-
view_server: str,
|
54
|
-
url: str,
|
55
|
-
username: str,
|
56
|
-
user_pass: str,
|
53
|
+
view_server: str = EGERIA_VIEW_SERVER,
|
54
|
+
url: str = EGERIA_VIEW_SERVER_URL,
|
55
|
+
username: str = EGERIA_USER,
|
56
|
+
user_pass: str = EGERIA_USER_PASSWORD,
|
57
57
|
jupyter: bool = EGERIA_JUPYTER,
|
58
58
|
width: int = EGERIA_WIDTH,
|
59
59
|
):
|
@@ -139,13 +139,18 @@ def display_status(
|
|
139
139
|
"[red]Inactive" "" if status == "Inactive" else "[green]Active",
|
140
140
|
# server_status,
|
141
141
|
)
|
142
|
-
|
142
|
+
p_client.refresh_egeria_bearer_token()
|
143
143
|
return table
|
144
144
|
|
145
145
|
try:
|
146
|
-
with Live(generate_table(), refresh_per_second=
|
146
|
+
# with Live(generate_table(), refresh_per_second=1, screen=True) as live:
|
147
|
+
print(f" Started at {time.asctime()} \n")
|
148
|
+
with Live(
|
149
|
+
generate_table(), refresh_per_second=4, screen=True, transient=True
|
150
|
+
) as live:
|
151
|
+
|
147
152
|
while True:
|
148
|
-
time.sleep(
|
153
|
+
time.sleep(5)
|
149
154
|
live.update(generate_table())
|
150
155
|
|
151
156
|
except (
|
@@ -172,7 +177,7 @@ def main():
|
|
172
177
|
full = args.full if args.full is not None else False
|
173
178
|
server = args.server if args.server is not None else EGERIA_VIEW_SERVER
|
174
179
|
url = args.url if args.url is not None else EGERIA_PLATFORM_URL
|
175
|
-
userid = args.userid if args.userid is not None else
|
180
|
+
userid = args.userid if args.userid is not None else EGERIA_USER
|
176
181
|
user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
177
182
|
|
178
183
|
display_status(full, server, url, userid, user_pass)
|
@@ -29,11 +29,11 @@ disable_ssl_warnings = True
|
|
29
29
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
30
30
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
31
31
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
32
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
32
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
33
33
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
34
34
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
35
35
|
)
|
36
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
36
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
37
37
|
EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
|
38
38
|
"EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
|
39
39
|
)
|
@@ -18,19 +18,19 @@ from rich.table import Table
|
|
18
18
|
from pyegeria import (
|
19
19
|
InvalidParameterException,
|
20
20
|
PropertyServerException,
|
21
|
+
ServerOps,
|
21
22
|
UserNotAuthorizedException,
|
22
23
|
print_exception_response,
|
23
|
-
ServerOps,
|
24
24
|
)
|
25
25
|
|
26
26
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
27
27
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
28
28
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
29
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
29
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
30
30
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
31
31
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
32
32
|
)
|
33
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
33
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
34
34
|
EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
|
35
35
|
"EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
|
36
36
|
)
|
@@ -18,14 +18,14 @@ from pyegeria._exceptions import (
|
|
18
18
|
print_exception_response,
|
19
19
|
)
|
20
20
|
|
21
|
-
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "
|
21
|
+
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "qs-metadata-store")
|
22
22
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
23
23
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
24
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
24
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "qs-view-server")
|
25
25
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
26
26
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
27
27
|
)
|
28
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
28
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "qs-integration-daemon")
|
29
29
|
EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
|
30
30
|
"EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
|
31
31
|
)
|
@@ -44,7 +44,7 @@ def refresh_connector(
|
|
44
44
|
statement = "ALL connectors"
|
45
45
|
else:
|
46
46
|
statement = f"the {connector} "
|
47
|
-
server = "integration_daemon" if server is None else server
|
47
|
+
server = "qs-integration_daemon" if server is None else server
|
48
48
|
|
49
49
|
s_client.refresh_integration_connectors(
|
50
50
|
connector_name=connector, server_guid=None, display_name=server
|
@@ -18,14 +18,14 @@ from pyegeria._exceptions import (
|
|
18
18
|
print_exception_response,
|
19
19
|
)
|
20
20
|
|
21
|
-
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "
|
21
|
+
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "qs-metadata-store")
|
22
22
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
23
23
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
24
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
24
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "qs-view-server")
|
25
25
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
26
26
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
27
27
|
)
|
28
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
28
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "qs-integration-daemon")
|
29
29
|
EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
|
30
30
|
"EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
|
31
31
|
)
|
@@ -25,14 +25,14 @@ from pyegeria._exceptions import (
|
|
25
25
|
print_exception_response,
|
26
26
|
)
|
27
27
|
|
28
|
-
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "
|
28
|
+
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "qs-metadata-store")
|
29
29
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
30
30
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
31
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
31
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "qs-view-server")
|
32
32
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
33
33
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
34
34
|
)
|
35
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
35
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "qs-integration-daemon")
|
36
36
|
EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
|
37
37
|
"EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
|
38
38
|
)
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"""
|
2
|
+
SPDX-License-Identifier: Apache-2.0
|
3
|
+
Copyright Contributors to the ODPi Egeria project.
|
4
|
+
|
5
|
+
"""
|
6
|
+
from pyegeria import (
|
7
|
+
INTEGRATION_GUIDS,
|
8
|
+
TEMPLATE_GUIDS,
|
9
|
+
default_time_out,
|
10
|
+
disable_ssl_warnings,
|
11
|
+
enable_ssl_check,
|
12
|
+
is_debug,
|
13
|
+
max_paging_size,
|
14
|
+
NO_ELEMENTS_FOUND,
|
15
|
+
NO_ASSETS_FOUND,
|
16
|
+
NO_SERVERS_FOUND,
|
17
|
+
NO_CATALOGS_FOUND,
|
18
|
+
NO_GLOSSARIES_FOUND,
|
19
|
+
NO_TERMS_FOUND,
|
20
|
+
NO_CATEGORIES_FOUND,
|
21
|
+
NO_ELEMENT_FOUND,
|
22
|
+
)
|
@@ -0,0 +1,74 @@
|
|
1
|
+
"""
|
2
|
+
SPDX-License-Identifier: Apache-2.0
|
3
|
+
Copyright Contributors to the ODPi Egeria project.
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
Execute Generic actions.
|
8
|
+
|
9
|
+
"""
|
10
|
+
|
11
|
+
import csv
|
12
|
+
import json
|
13
|
+
import os
|
14
|
+
import sys
|
15
|
+
import time
|
16
|
+
from datetime import datetime
|
17
|
+
|
18
|
+
import click
|
19
|
+
|
20
|
+
|
21
|
+
from pyegeria import EgeriaTech, body_slimmer
|
22
|
+
from pyegeria._exceptions import (
|
23
|
+
InvalidParameterException,
|
24
|
+
PropertyServerException,
|
25
|
+
print_exception_response,
|
26
|
+
)
|
27
|
+
|
28
|
+
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
29
|
+
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
30
|
+
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
31
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
32
|
+
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
33
|
+
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
34
|
+
)
|
35
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
36
|
+
EGERIA_INTEGRATION_DAEMON_URL = os.environ.get(
|
37
|
+
"EGERIA_INTEGRATION_DAEMON_URL", "https://localhost:9443"
|
38
|
+
)
|
39
|
+
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
40
|
+
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
41
|
+
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
42
|
+
EGERIA_USER_PASSWORD = os.environ.get("EGERIA_USER_PASSWORD", "secret")
|
43
|
+
EGERIA_WIDTH = os.environ.get("EGERIA_WIDTH", 200)
|
44
|
+
EGERIA_JUPYTER = os.environ.get("EGERIA_JUPYTER", False)
|
45
|
+
EGERIA_HOME_GLOSSARY_GUID = os.environ.get("EGERIA_HOME_GLOSSARY_GUID", None)
|
46
|
+
EGERIA_GLOSSARY_PATH = os.environ.get("EGERIA_GLOSSARY_PATH", None)
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
@click.command("delete-element")
|
51
|
+
@click.option("--cascade", default = True, help = "If True, cascade the delete", is_flag=True)
|
52
|
+
@click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use")
|
53
|
+
@click.option(
|
54
|
+
"--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to"
|
55
|
+
)
|
56
|
+
@click.option("--userid", default=EGERIA_USER, help="Egeria user")
|
57
|
+
@click.option("--password", default=EGERIA_USER_PASSWORD, help="Egeria user password")
|
58
|
+
@click.option("--timeout", default=60, help="Number of seconds to wait")
|
59
|
+
@click.argument("element-guid")
|
60
|
+
def delete_element(cascade, server, url, userid, password, timeout, element_guid):
|
61
|
+
"""Delete the glossary specified"""
|
62
|
+
m_client = EgeriaTech(server, url, user_id=userid, user_pwd=password)
|
63
|
+
token = m_client.create_egeria_bearer_token()
|
64
|
+
try:
|
65
|
+
m_client.delete_metadata_element_in_store(element_guid, cascade = cascade)
|
66
|
+
|
67
|
+
click.echo(f"Deleted element: {element_guid}")
|
68
|
+
|
69
|
+
except (InvalidParameterException, PropertyServerException) as e:
|
70
|
+
print_exception_response(e)
|
71
|
+
finally:
|
72
|
+
m_client.close_session()
|
73
|
+
|
74
|
+
|
@@ -12,32 +12,30 @@ import json
|
|
12
12
|
import os
|
13
13
|
import sys
|
14
14
|
|
15
|
-
from rich import
|
15
|
+
from rich import box, print
|
16
16
|
from rich.console import Console
|
17
17
|
from rich.markdown import Markdown
|
18
18
|
from rich.panel import Panel
|
19
|
-
|
20
19
|
from rich.prompt import Prompt
|
21
20
|
from rich.text import Text
|
22
21
|
from rich.tree import Tree
|
23
22
|
|
24
23
|
from pyegeria import (
|
24
|
+
ClassificationManager,
|
25
|
+
Client,
|
25
26
|
InvalidParameterException,
|
26
27
|
PropertyServerException,
|
27
28
|
UserNotAuthorizedException,
|
28
|
-
Client,
|
29
|
-
ClassificationManager,
|
30
29
|
)
|
31
30
|
|
32
|
-
|
33
31
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
34
32
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
35
33
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
36
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
34
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
37
35
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
38
36
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
39
37
|
)
|
40
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
38
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
41
39
|
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
42
40
|
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
43
41
|
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
@@ -21,22 +21,21 @@ from rich.text import Text
|
|
21
21
|
from rich.tree import Tree
|
22
22
|
|
23
23
|
from pyegeria import (
|
24
|
+
ClassificationManager,
|
25
|
+
Client,
|
24
26
|
InvalidParameterException,
|
25
27
|
PropertyServerException,
|
26
28
|
UserNotAuthorizedException,
|
27
|
-
Client,
|
28
|
-
ClassificationManager,
|
29
29
|
)
|
30
30
|
|
31
|
-
|
32
31
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
33
32
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
34
33
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
35
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
34
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
36
35
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
37
36
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
38
37
|
)
|
39
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
38
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
40
39
|
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
41
40
|
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
42
41
|
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
@@ -7,7 +7,8 @@ A simple viewer for collections - provide the root and we display the hierarchy
|
|
7
7
|
|
8
8
|
"""
|
9
9
|
import argparse
|
10
|
-
import os
|
10
|
+
import os
|
11
|
+
import sys
|
11
12
|
|
12
13
|
from rich import print
|
13
14
|
from rich.console import Console
|
@@ -18,23 +19,21 @@ from rich.text import Text
|
|
18
19
|
from rich.tree import Tree
|
19
20
|
|
20
21
|
from pyegeria import (
|
21
|
-
UserNotAuthorizedException,
|
22
|
-
PropertyServerException,
|
23
|
-
InvalidParameterException,
|
24
22
|
AutomatedCuration,
|
23
|
+
InvalidParameterException,
|
24
|
+
PropertyServerException,
|
25
|
+
UserNotAuthorizedException,
|
25
26
|
)
|
26
|
-
from pyegeria._exceptions import
|
27
|
-
print_exception_response,
|
28
|
-
)
|
27
|
+
from pyegeria._exceptions import print_exception_response
|
29
28
|
|
30
29
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
31
30
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
32
31
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
33
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
32
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
34
33
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
35
34
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
36
35
|
)
|
37
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
36
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
38
37
|
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
39
38
|
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
40
39
|
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
@@ -6,8 +6,8 @@ Copyright Contributors to the ODPi Egeria project.
|
|
6
6
|
Display the status of cataloged platforms and servers.
|
7
7
|
"""
|
8
8
|
import argparse
|
9
|
-
|
10
9
|
import os
|
10
|
+
|
11
11
|
from rich import print
|
12
12
|
from rich.console import Console
|
13
13
|
from rich.markdown import Markdown
|
@@ -16,21 +16,21 @@ from rich.prompt import Prompt
|
|
16
16
|
from rich.tree import Tree
|
17
17
|
|
18
18
|
from pyegeria import (
|
19
|
+
AutomatedCuration,
|
19
20
|
InvalidParameterException,
|
20
21
|
PropertyServerException,
|
21
22
|
UserNotAuthorizedException,
|
22
23
|
print_exception_response,
|
23
|
-
AutomatedCuration,
|
24
24
|
)
|
25
25
|
|
26
26
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
27
27
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
28
28
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
29
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
29
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
30
30
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
31
31
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
32
32
|
)
|
33
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
33
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
34
34
|
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
35
35
|
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
36
36
|
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
@@ -1,32 +1,33 @@
|
|
1
|
-
"""This
|
2
|
-
|
3
|
-
from rich.prompt import Prompt
|
4
|
-
import os
|
1
|
+
"""This lists all elemeents of an oopen metadata type"""
|
2
|
+
|
5
3
|
import argparse
|
6
|
-
import
|
4
|
+
import os
|
7
5
|
import sys
|
6
|
+
import time
|
7
|
+
|
8
8
|
from rich import box
|
9
9
|
from rich.console import Console
|
10
|
+
from rich.markdown import Markdown
|
11
|
+
from rich.prompt import Prompt
|
10
12
|
from rich.table import Table
|
11
13
|
|
12
14
|
from pyegeria import (
|
15
|
+
EgeriaTech,
|
13
16
|
InvalidParameterException,
|
14
17
|
PropertyServerException,
|
15
18
|
UserNotAuthorizedException,
|
16
19
|
print_exception_response,
|
17
|
-
EgeriaTech,
|
18
20
|
)
|
19
21
|
|
20
|
-
|
21
22
|
console = Console()
|
22
23
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
23
24
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
24
25
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
25
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
26
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
26
27
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
27
28
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
28
29
|
)
|
29
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
30
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
30
31
|
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
31
32
|
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
32
33
|
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
@@ -157,7 +158,7 @@ def main():
|
|
157
158
|
|
158
159
|
try:
|
159
160
|
om_type = Prompt.ask(
|
160
|
-
"Enter the Open Metadata Type to find elements of:", default="
|
161
|
+
"Enter the Open Metadata Type to find elements of:", default="Referenceable"
|
161
162
|
)
|
162
163
|
list_elements(om_type, server, url, userid, password)
|
163
164
|
except KeyboardInterrupt:
|
@@ -1,34 +1,33 @@
|
|
1
|
-
"""
|
2
|
-
|
3
|
-
from rich.prompt import Prompt
|
4
|
-
import os
|
1
|
+
"""List elements"""
|
2
|
+
|
5
3
|
import argparse
|
6
|
-
import
|
4
|
+
import os
|
7
5
|
import sys
|
6
|
+
import time
|
7
|
+
|
8
8
|
from rich import box
|
9
9
|
from rich.console import Console
|
10
|
+
from rich.markdown import Markdown
|
11
|
+
from rich.prompt import Prompt
|
10
12
|
from rich.table import Table
|
11
13
|
|
12
14
|
from pyegeria import (
|
15
|
+
EgeriaTech, # ClassificationManager,; FeedbackManager,
|
13
16
|
InvalidParameterException,
|
14
17
|
PropertyServerException,
|
15
18
|
UserNotAuthorizedException,
|
16
19
|
print_exception_response,
|
17
|
-
# ClassificationManager,
|
18
|
-
# FeedbackManager,
|
19
|
-
EgeriaTech,
|
20
20
|
)
|
21
21
|
|
22
|
-
|
23
22
|
console = Console()
|
24
23
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
25
24
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
26
25
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
27
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
26
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
28
27
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
29
28
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
30
29
|
)
|
31
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
30
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
32
31
|
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
33
32
|
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
34
33
|
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
@@ -180,7 +179,7 @@ def main():
|
|
180
179
|
|
181
180
|
try:
|
182
181
|
om_type = Prompt.ask(
|
183
|
-
"Enter the Open Metadata Type to find elements of:", default="
|
182
|
+
"Enter the Open Metadata Type to find elements of:", default="Referenceable"
|
184
183
|
)
|
185
184
|
list_elements_x(om_type, server, url, userid, password)
|
186
185
|
except KeyboardInterrupt:
|
pyegeria/commands/tech/list_related_elements.py → commands/tech/list_all_related_elements.py
RENAMED
@@ -1,32 +1,34 @@
|
|
1
1
|
"""This creates a templates guid file from the core metadata archive"""
|
2
|
-
|
3
|
-
from rich.markdown import Markdown
|
4
|
-
from rich.prompt import Prompt
|
5
|
-
import os
|
2
|
+
|
6
3
|
import argparse
|
7
|
-
import
|
4
|
+
import os
|
8
5
|
import sys
|
6
|
+
import time
|
7
|
+
|
8
|
+
from jedi import Project
|
9
9
|
from rich import box
|
10
10
|
from rich.console import Console
|
11
|
+
from rich.markdown import Markdown
|
12
|
+
from rich.prompt import Prompt
|
11
13
|
from rich.table import Table
|
12
14
|
|
13
15
|
from pyegeria import (
|
16
|
+
EgeriaTech,
|
14
17
|
InvalidParameterException,
|
15
18
|
PropertyServerException,
|
16
19
|
UserNotAuthorizedException,
|
17
20
|
print_exception_response,
|
18
|
-
EgeriaTech,
|
19
21
|
)
|
20
22
|
|
21
23
|
console = Console()
|
22
24
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
23
25
|
EGERIA_KAFKA_ENDPOINT = os.environ.get("KAFKA_ENDPOINT", "localhost:9092")
|
24
26
|
EGERIA_PLATFORM_URL = os.environ.get("EGERIA_PLATFORM_URL", "https://localhost:9443")
|
25
|
-
EGERIA_VIEW_SERVER = os.environ.get("
|
27
|
+
EGERIA_VIEW_SERVER = os.environ.get("EGERIA_VIEW_SERVER", "view-server")
|
26
28
|
EGERIA_VIEW_SERVER_URL = os.environ.get(
|
27
29
|
"EGERIA_VIEW_SERVER_URL", "https://localhost:9443"
|
28
30
|
)
|
29
|
-
EGERIA_INTEGRATION_DAEMON = os.environ.get("
|
31
|
+
EGERIA_INTEGRATION_DAEMON = os.environ.get("EGERIA_INTEGRATION_DAEMON", "integration-daemon")
|
30
32
|
EGERIA_ADMIN_USER = os.environ.get("ADMIN_USER", "garygeeke")
|
31
33
|
EGERIA_ADMIN_PASSWORD = os.environ.get("ADMIN_PASSWORD", "secret")
|
32
34
|
EGERIA_USER = os.environ.get("EGERIA_USER", "erinoverview")
|
@@ -187,7 +189,7 @@ def main():
|
|
187
189
|
try:
|
188
190
|
element_guid = Prompt.ask("Guid of base element").strip()
|
189
191
|
om_type = Prompt.ask(
|
190
|
-
"Enter the Open Metadata Type to find elements of", default=
|
192
|
+
"Enter the Open Metadata Type to find elements of", default="Referenceable"
|
191
193
|
)
|
192
194
|
relationship_type = Prompt.ask("Enter the relationship type to follow")
|
193
195
|
|