pyegeria 5.4.0.28__py3-none-any.whl → 5.5.3.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.
Potentially problematic release.
This version of pyegeria might be problematic. Click here for more details.
- commands/__init__.py +24 -0
- commands/cat/Dr-Egeria_md-orig.py +2 -2
- commands/cat/collection_actions.py +197 -0
- commands/cat/dr_egeria_command_help.py +137 -38
- commands/cat/dr_egeria_jupyter.py +7 -7
- commands/cat/dr_egeria_md.py +10 -267
- commands/cat/exp_list_glossaries.py +11 -14
- commands/cat/get_asset_graph.py +37 -267
- commands/cat/{get_collection.py → get_collection_tree.py} +10 -18
- commands/cat/get_project_dependencies.py +14 -14
- commands/cat/get_project_structure.py +15 -14
- commands/cat/get_tech_type_elements.py +16 -116
- commands/cat/glossary_actions.py +145 -298
- commands/cat/list_assets.py +3 -11
- commands/cat/list_cert_types.py +17 -63
- commands/cat/list_collections.py +17 -139
- commands/cat/list_deployed_catalogs.py +15 -27
- commands/cat/list_deployed_database_schemas.py +27 -43
- commands/cat/list_deployed_databases.py +16 -31
- commands/cat/list_deployed_servers.py +35 -54
- commands/cat/list_glossaries.py +18 -17
- commands/cat/list_projects.py +10 -12
- commands/cat/list_tech_type_elements.py +21 -37
- commands/cat/list_tech_types.py +13 -25
- commands/cat/list_terms.py +38 -79
- commands/cat/list_todos.py +4 -11
- commands/cat/list_user_ids.py +3 -10
- commands/cat/my_reports.py +559 -0
- commands/cat/run_report.py +394 -0
- commands/cat/{list_format_set.py → run_report_orig.py} +136 -44
- commands/cli/egeria.py +182 -219
- commands/cli/egeria_cat.py +32 -59
- commands/cli/egeria_my.py +13 -0
- commands/cli/egeria_ops.py +69 -74
- commands/cli/egeria_tech.py +17 -93
- commands/{cat → deprecated}/list_data_designer.py +2 -4
- commands/{cat → deprecated}/list_data_structures_full.py +3 -6
- commands/deprecated/old_get_asset_graph.py +315 -0
- commands/my/__init__.py +0 -2
- commands/my/list_my_profile.py +27 -34
- commands/my/list_my_roles.py +1 -7
- commands/my/monitor_my_todos.py +1 -7
- commands/my/monitor_open_todos.py +6 -7
- commands/my/todo_actions.py +4 -5
- commands/ops/__init__.py +0 -2
- commands/ops/gov_server_actions.py +17 -21
- commands/ops/list_archives.py +17 -38
- commands/ops/list_catalog_targets.py +33 -40
- commands/ops/load_archive.py +14 -11
- commands/ops/{monitor_engine_activity_c.py → monitor_active_engine_activity.py} +51 -82
- commands/ops/{monitor_integ_daemon_status.py → monitor_daemon_status.py} +35 -55
- commands/ops/monitor_engine_activity.py +79 -77
- commands/ops/{monitor_gov_eng_status.py → monitor_engine_status.py} +10 -7
- commands/ops/monitor_platform_status.py +38 -50
- commands/ops/monitor_server_startup.py +6 -11
- commands/ops/monitor_server_status.py +7 -11
- commands/ops/orig_monitor_server_list.py +8 -8
- commands/ops/orig_monitor_server_status.py +1 -5
- commands/ops/refresh_integration_daemon.py +5 -5
- commands/ops/restart_integration_daemon.py +5 -5
- commands/ops/table_integ_daemon_status.py +6 -6
- commands/ops/x_engine_actions.py +7 -7
- commands/tech/__init__.py +0 -2
- commands/tech/{generic_actions.py → element_actions.py} +6 -11
- commands/tech/get_element_info.py +20 -29
- commands/tech/get_guid_info.py +23 -42
- commands/tech/get_tech_details.py +20 -35
- commands/tech/get_tech_type_template.py +28 -39
- commands/tech/list_all_om_type_elements.py +24 -30
- commands/tech/list_all_om_type_elements_x.py +22 -28
- commands/tech/list_all_related_elements.py +19 -28
- commands/tech/list_anchored_elements.py +22 -30
- commands/tech/list_asset_types.py +19 -24
- commands/tech/list_elements_by_classification_by_property_value.py +26 -32
- commands/tech/list_elements_by_property_value.py +19 -25
- commands/tech/list_elements_by_property_value_x.py +20 -28
- commands/tech/list_elements_for_classification.py +28 -41
- commands/tech/list_gov_action_processes.py +16 -27
- commands/tech/list_information_supply_chains.py +22 -30
- commands/tech/list_registered_services.py +14 -26
- commands/tech/list_related_elements_with_prop_value.py +15 -25
- commands/tech/list_related_specification.py +1 -4
- commands/tech/list_relationship_types.py +15 -25
- commands/tech/list_relationships.py +20 -36
- commands/tech/list_solution_blueprints.py +28 -33
- commands/tech/list_solution_components.py +23 -29
- commands/tech/list_solution_roles.py +21 -32
- commands/tech/list_tech_templates.py +51 -54
- commands/tech/list_valid_metadata_values.py +5 -9
- commands/tech/table_tech_templates.py +2 -6
- commands/tech/x_list_related_elements.py +1 -4
- examples/GeoSpatial Products Example.py +524 -0
- examples/Jupyter Notebooks/P-egeria-server-config.ipynb +2137 -0
- examples/Jupyter Notebooks/README.md +2 -0
- examples/Jupyter Notebooks/common/P-environment-check.ipynb +115 -0
- examples/Jupyter Notebooks/common/__init__.py +14 -0
- examples/Jupyter Notebooks/common/common-functions.ipynb +4694 -0
- examples/Jupyter Notebooks/common/environment-check.ipynb +52 -0
- examples/Jupyter Notebooks/common/globals.ipynb +184 -0
- examples/Jupyter Notebooks/common/globals.py +154 -0
- examples/Jupyter Notebooks/common/orig_globals.py +152 -0
- examples/format_sets/all_format_sets.json +910 -0
- examples/format_sets/custom_format_sets.json +268 -0
- examples/format_sets/subset_format_sets.json +187 -0
- examples/format_sets_save_load_example.py +291 -0
- examples/jacquard_data_sets.py +129 -0
- examples/output_formats_example.py +193 -0
- examples/test_jacquard_data_sets.py +54 -0
- examples/test_jacquard_data_sets_scenarios.py +94 -0
- md_processing/__init__.py +33 -24
- md_processing/command_dispatcher.py +33 -0
- md_processing/command_mapping.py +221 -0
- md_processing/data/commands/commands_data_designer.json +537 -0
- md_processing/data/commands/commands_external_reference.json +733 -0
- md_processing/data/commands/commands_feedback.json +155 -0
- md_processing/data/commands/commands_general.json +204 -0
- md_processing/data/commands/commands_glossary.json +218 -0
- md_processing/data/commands/commands_governance.json +3678 -0
- md_processing/data/commands/commands_product_manager.json +865 -0
- md_processing/data/commands/commands_project.json +642 -0
- md_processing/data/commands/commands_solution_architect.json +366 -0
- md_processing/data/commands.json +6489 -30060
- md_processing/data/{commands-working.json → commands_working.json} +9304 -13513
- md_processing/data/gened_report_specs.py +6584 -0
- md_processing/data/generated_format_sets.json +6533 -0
- md_processing/data/generated_format_sets_old.json +4137 -0
- md_processing/data/generated_format_sets_old.py +45 -0
- md_processing/dr_egeria.py +182 -0
- md_processing/md_commands/data_designer_commands.py +195 -583
- md_processing/md_commands/ext_ref_commands.py +530 -0
- md_processing/md_commands/feedback_commands.py +726 -0
- md_processing/md_commands/glossary_commands.py +106 -490
- md_processing/md_commands/governance_officer_commands.py +129 -18
- md_processing/md_commands/product_manager_commands.py +362 -115
- md_processing/md_commands/project_commands.py +351 -134
- md_processing/md_commands/solution_architect_commands.py +276 -232
- md_processing/md_commands/view_commands.py +295 -0
- md_processing/md_processing_utils/common_md_proc_utils.py +258 -166
- md_processing/md_processing_utils/common_md_utils.py +138 -43
- md_processing/md_processing_utils/determine_width.py +103 -0
- md_processing/md_processing_utils/extraction_utils.py +100 -39
- md_processing/md_processing_utils/gen_report_specs.py +643 -0
- md_processing/md_processing_utils/generate_dr_help.py +61 -33
- md_processing/md_processing_utils/generate_md_cmd_templates.py +20 -19
- md_processing/md_processing_utils/generate_md_templates.py +3 -12
- md_processing/md_processing_utils/md_processing_constants.py +1053 -72
- pyegeria/__init__.py +203 -158
- pyegeria/core/__init__.py +40 -0
- pyegeria/core/_base_platform_client.py +574 -0
- pyegeria/core/_base_server_client.py +573 -0
- pyegeria/{_exceptions_new.py → core/_exceptions.py} +62 -30
- pyegeria/{_globals.py → core/_globals.py} +14 -3
- pyegeria/core/_server_client.py +6073 -0
- pyegeria/{_validators.py → core/_validators.py} +7 -8
- pyegeria/core/config.py +654 -0
- pyegeria/{create_tech_guid_lists.py → core/create_tech_guid_lists.py} +0 -1
- pyegeria/core/load_config.py +37 -0
- pyegeria/{logging_configuration.py → core/logging_configuration.py} +1 -1
- pyegeria/core/mcp_adapter.py +144 -0
- pyegeria/core/mcp_server.py +212 -0
- pyegeria/core/utils.py +405 -0
- pyegeria/{_client.py → deprecated/_client.py} +24 -25
- pyegeria/{_deprecated_gov_engine.py → deprecated/_deprecated_gov_engine.py} +16 -16
- pyegeria/{classification_manager_omvs.py → deprecated/classification_manager_omvs.py} +1987 -1877
- pyegeria/{output_formatter.py → deprecated/output_formatter_with_machine_keys.py} +298 -45
- pyegeria/{runtime_manager_omvs.py → deprecated/runtime_manager_omvs.py} +155 -171
- pyegeria/{valid_metadata_omvs.py → deprecated/valid_metadata_omvs.py} +93 -93
- pyegeria/{x_action_author_omvs.py → deprecated/x_action_author_omvs.py} +2 -3
- pyegeria/egeria_cat_client.py +26 -70
- pyegeria/egeria_client.py +130 -93
- pyegeria/egeria_config_client.py +40 -46
- pyegeria/egeria_tech_client.py +141 -54
- pyegeria/models/__init__.py +150 -0
- pyegeria/{models.py → models/models.py} +156 -20
- pyegeria/omvs/__init__.py +84 -0
- pyegeria/omvs/action_author.py +342 -0
- pyegeria/omvs/actor_manager.py +5980 -0
- pyegeria/omvs/asset_catalog.py +842 -0
- pyegeria/omvs/asset_maker.py +2736 -0
- pyegeria/omvs/automated_curation.py +4403 -0
- pyegeria/omvs/classification_manager.py +11213 -0
- pyegeria/{collection_manager.py → omvs/collection_manager.py} +1334 -1160
- pyegeria/omvs/community_matters_omvs.py +468 -0
- pyegeria/{core_omag_server_config.py → omvs/core_omag_server_config.py} +157 -157
- pyegeria/{data_designer.py → omvs/data_designer.py} +1115 -660
- pyegeria/omvs/data_discovery.py +869 -0
- pyegeria/omvs/data_engineer.py +372 -0
- pyegeria/omvs/digital_business.py +1133 -0
- pyegeria/omvs/external_links.py +1752 -0
- pyegeria/omvs/feedback_manager.py +834 -0
- pyegeria/{full_omag_server_config.py → omvs/full_omag_server_config.py} +73 -69
- pyegeria/{glossary_manager.py → omvs/glossary_manager.py} +857 -519
- pyegeria/{governance_officer.py → omvs/governance_officer.py} +964 -468
- pyegeria/omvs/lineage_linker.py +314 -0
- pyegeria/omvs/location_arena.py +1525 -0
- pyegeria/omvs/metadata_expert.py +668 -0
- pyegeria/omvs/metadata_explorer_omvs.py +2943 -0
- pyegeria/omvs/my_profile.py +1042 -0
- pyegeria/omvs/notification_manager.py +358 -0
- pyegeria/omvs/people_organizer.py +394 -0
- pyegeria/{platform_services.py → omvs/platform_services.py} +113 -193
- pyegeria/omvs/product_manager.py +1825 -0
- pyegeria/omvs/project_manager.py +1907 -0
- pyegeria/omvs/reference_data.py +1140 -0
- pyegeria/omvs/registered_info.py +334 -0
- pyegeria/omvs/runtime_manager.py +2817 -0
- pyegeria/omvs/schema_maker.py +446 -0
- pyegeria/{server_operations.py → omvs/server_operations.py} +27 -26
- pyegeria/{solution_architect_omvs.py → omvs/solution_architect.py} +1886 -1505
- pyegeria/omvs/specification_properties.py +37 -0
- pyegeria/omvs/subject_area.py +1042 -0
- pyegeria/omvs/template_manager_omvs.py +236 -0
- pyegeria/omvs/time_keeper.py +1761 -0
- pyegeria/omvs/valid_metadata.py +3221 -0
- pyegeria/omvs/valid_metadata_lists.py +37 -0
- pyegeria/omvs/valid_type_lists.py +37 -0
- pyegeria/view/__init__.py +28 -0
- pyegeria/{_output_format_models.py → view/_output_format_models.py} +160 -24
- pyegeria/view/_output_formats.py +14 -0
- pyegeria/view/base_report_formats.py +2719 -0
- pyegeria/view/dr_egeria_reports.py +56 -0
- pyegeria/view/format_set_executor.py +397 -0
- pyegeria/{md_processing_utils.py → view/md_processing_utils.py} +5 -5
- pyegeria/{mermaid_utilities.py → view/mermaid_utilities.py} +2 -154
- pyegeria/view/output_formatter.py +1297 -0
- pyegeria-5.5.3.3.dist-info/METADATA +218 -0
- pyegeria-5.5.3.3.dist-info/RECORD +241 -0
- {pyegeria-5.4.0.28.dist-info → pyegeria-5.5.3.3.dist-info}/WHEEL +2 -1
- pyegeria-5.5.3.3.dist-info/entry_points.txt +103 -0
- pyegeria-5.5.3.3.dist-info/top_level.txt +4 -0
- commands/cat/.DS_Store +0 -0
- commands/cat/.env +0 -8
- commands/cat/README.md +0 -16
- commands/cat/debug_log +0 -1126
- commands/cat/debug_log.2025-08-18_11-34-38_088636.zip +0 -0
- commands/cat/list_categories.py +0 -192
- commands/cat/logs/pyegeria.log +0 -4
- commands/cli/debug_log +0 -0
- commands/cli/debug_log.log +0 -0
- commands/cli/txt_custom_v2.tcss +0 -19
- commands/my/README.md +0 -17
- commands/ops/README.md +0 -24
- commands/ops/logs/pyegeria.log +0 -0
- commands/ops/monitor_asset_events.py +0 -108
- commands/tech/README.md +0 -24
- md_processing/.DS_Store +0 -0
- md_processing/dr-egeria-outbox/Collections-2025-08-12-13-30-37.md +0 -163
- md_processing/dr-egeria-outbox/Collections-2025-08-12-13-35-58.md +0 -474
- md_processing/dr_egeria_inbox/Derive-Dr-Gov-Defs.md +0 -8
- md_processing/dr_egeria_inbox/Dr.Egeria Templates.md +0 -873
- md_processing/dr_egeria_inbox/arch_test.md +0 -57
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro.md +0 -254
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_more_terms.md +0 -696
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part1.md +0 -254
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part2.md +0 -298
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part3.md +0 -608
- md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part4.md +0 -94
- md_processing/dr_egeria_inbox/archive/freddie_intro.md +0 -284
- md_processing/dr_egeria_inbox/archive/freddie_intro_orig.md +0 -275
- md_processing/dr_egeria_inbox/archive/test-term.md +0 -110
- md_processing/dr_egeria_inbox/cat_test.md +0 -100
- md_processing/dr_egeria_inbox/collections.md +0 -39
- md_processing/dr_egeria_inbox/data_designer_debug.log +0 -6
- md_processing/dr_egeria_inbox/data_designer_out.md +0 -60
- md_processing/dr_egeria_inbox/data_designer_search_test.md +0 -11
- md_processing/dr_egeria_inbox/data_field.md +0 -54
- md_processing/dr_egeria_inbox/data_spec.md +0 -77
- md_processing/dr_egeria_inbox/data_spec_test.md +0 -2406
- md_processing/dr_egeria_inbox/data_test.md +0 -179
- md_processing/dr_egeria_inbox/data_test2.md +0 -429
- md_processing/dr_egeria_inbox/data_test3.md +0 -462
- md_processing/dr_egeria_inbox/dr_egeria_data_designer_1.md +0 -124
- md_processing/dr_egeria_inbox/dr_egeria_intro_categories.md +0 -168
- md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md +0 -280
- md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md +0 -318
- md_processing/dr_egeria_inbox/dr_egeria_intro_part3.md +0 -1073
- md_processing/dr_egeria_inbox/dr_egeria_isc1.md +0 -44
- md_processing/dr_egeria_inbox/generated_help_report.md +0 -9
- md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb +0 -341
- md_processing/dr_egeria_inbox/glossary_list.md +0 -5
- md_processing/dr_egeria_inbox/glossary_search_test.md +0 -40
- md_processing/dr_egeria_inbox/glossary_test1.md +0 -324
- md_processing/dr_egeria_inbox/gov_def.md +0 -482
- md_processing/dr_egeria_inbox/gov_def2.md +0 -447
- md_processing/dr_egeria_inbox/img.png +0 -0
- md_processing/dr_egeria_inbox/product.md +0 -211
- md_processing/dr_egeria_inbox/rel.md +0 -8
- md_processing/dr_egeria_inbox/sb.md +0 -119
- md_processing/dr_egeria_inbox/solution-components.md +0 -136
- md_processing/dr_egeria_inbox/solution_blueprints.md +0 -118
- md_processing/dr_egeria_inbox/synonym_test.md +0 -42
- md_processing/dr_egeria_inbox/t2.md +0 -268
- md_processing/dr_egeria_outbox/.obsidian/app.json +0 -1
- md_processing/dr_egeria_outbox/.obsidian/appearance.json +0 -1
- md_processing/dr_egeria_outbox/.obsidian/community-plugins.json +0 -6
- md_processing/dr_egeria_outbox/.obsidian/core-plugins.json +0 -31
- md_processing/dr_egeria_outbox/.obsidian/plugins/calendar/data.json +0 -10
- md_processing/dr_egeria_outbox/.obsidian/plugins/calendar/main.js +0 -4459
- md_processing/dr_egeria_outbox/.obsidian/plugins/calendar/manifest.json +0 -10
- md_processing/dr_egeria_outbox/.obsidian/plugins/obsidian-kanban/data.json +0 -3
- md_processing/dr_egeria_outbox/.obsidian/plugins/obsidian-kanban/main.js +0 -153
- md_processing/dr_egeria_outbox/.obsidian/plugins/obsidian-kanban/manifest.json +0 -11
- md_processing/dr_egeria_outbox/.obsidian/plugins/obsidian-kanban/styles.css +0 -1
- md_processing/dr_egeria_outbox/.obsidian/plugins/obsidian-tasks-plugin/main.js +0 -500
- md_processing/dr_egeria_outbox/.obsidian/plugins/obsidian-tasks-plugin/manifest.json +0 -12
- md_processing/dr_egeria_outbox/.obsidian/plugins/obsidian-tasks-plugin/styles.css +0 -1
- md_processing/dr_egeria_outbox/.obsidian/plugins/templater-obsidian/main.js +0 -37
- md_processing/dr_egeria_outbox/.obsidian/plugins/templater-obsidian/manifest.json +0 -11
- md_processing/dr_egeria_outbox/.obsidian/plugins/templater-obsidian/styles.css +0 -220
- md_processing/dr_egeria_outbox/.obsidian/types.json +0 -28
- md_processing/dr_egeria_outbox/.obsidian/workspace.json +0 -220
- md_processing/dr_egeria_outbox/Untitled.canvas +0 -1
- md_processing/dr_egeria_outbox/friday/processed-2025-08-22 21:22-dr_egeria_intro_part1.md +0 -312
- md_processing/dr_egeria_outbox/friday/processed-2025-08-22 21:23-dr_egeria_intro_part1.md +0 -265
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 15:06-dr_egeria_intro_part1.md +0 -230
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 15:30-dr_egeria_intro_part1.md +0 -296
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 15:31-dr_egeria_intro_part1.md +0 -253
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 16:08-dr_egeria_intro_part2.md +0 -343
- md_processing/dr_egeria_outbox/friday/processed-2025-08-23 16:12-dr_egeria_intro_part2.md +0 -343
- md_processing/dr_egeria_outbox/monday/processed-2025-08-19 07:05-product.md +0 -426
- md_processing/dr_egeria_outbox/monday/processed-2025-08-19 07:56-product.md +0 -212
- md_processing/dr_egeria_outbox/monday/processed-2025-08-19 09:43-product.md +0 -201
- md_processing/dr_egeria_outbox/sunday/processed-2025-07-20 14:55-product.md +0 -77
- md_processing/dr_egeria_outbox/sunday/processed-2025-07-20 15:05-product.md +0 -75
- md_processing/dr_egeria_outbox/sunday/processed-2025-07-20 15:11-product.md +0 -74
- md_processing/dr_egeria_outbox/sunday/processed-2025-07-20 20:40-collections.md +0 -49
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-17 15:00-Derive-Dr-Gov-Defs.md +0 -719
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-17 20:13-Derive-Dr-Gov-Defs.md +0 -41
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-17 20:14-Derive-Dr-Gov-Defs.md +0 -33
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-17 20:50-Derive-Dr-Gov-Defs.md +0 -192
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-17 22:08-gov_def2.md +0 -486
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-17 22:10-gov_def2.md +0 -486
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-18 08:53-gov_def2.md +0 -486
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-18 08:54-gov_def2.md +0 -486
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-18 09:03-gov_def2.md +0 -486
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-18 09:06-gov_def2.md +0 -486
- md_processing/dr_egeria_outbox/thursday/processed-2025-07-18 09:10-gov_def2.md +0 -486
- md_processing/dr_egeria_outbox/tuesday/processed-2025-07-16 19:15-gov_def2.md +0 -527
- md_processing/dr_egeria_outbox/tuesday/processed-2025-07-17 12:08-gov_def2.md +0 -527
- md_processing/dr_egeria_outbox/tuesday/processed-2025-07-17 14:27-gov_def2.md +0 -485
- md_processing/dr_egeria_outbox/tuesday/processed-2025-08-19 10:55-product.md +0 -209
- md_processing/family_docs/Data Designer/Create_Data_Class.md +0 -164
- md_processing/family_docs/Data Designer/Create_Data_Dictionary.md +0 -30
- md_processing/family_docs/Data Designer/Create_Data_Field.md +0 -162
- md_processing/family_docs/Data Designer/Create_Data_Specification.md +0 -36
- md_processing/family_docs/Data Designer/Create_Data_Structure.md +0 -38
- md_processing/family_docs/Data Designer/View_Data_Classes.md +0 -78
- md_processing/family_docs/Data Designer/View_Data_Dictionaries.md +0 -78
- md_processing/family_docs/Data Designer/View_Data_Fields.md +0 -78
- md_processing/family_docs/Data Designer/View_Data_Specifications.md +0 -78
- md_processing/family_docs/Data Designer/View_Data_Structures.md +0 -78
- md_processing/family_docs/Data Designer.md +0 -842
- md_processing/family_docs/Digital Product Manager/Add_Member->Collection.md +0 -42
- md_processing/family_docs/Digital Product Manager/Attach_Collection->Resource.md +0 -36
- md_processing/family_docs/Digital Product Manager/Create_Agreement.md +0 -96
- md_processing/family_docs/Digital Product Manager/Create_Data_Sharing_Agreement.md +0 -72
- md_processing/family_docs/Digital Product Manager/Create_DigitalSubscription.md +0 -102
- md_processing/family_docs/Digital Product Manager/Create_Digital_Product.md +0 -134
- md_processing/family_docs/Digital Product Manager/Link_Agreement_Items.md +0 -60
- md_processing/family_docs/Digital Product Manager/Link_Contracts.md +0 -26
- md_processing/family_docs/Digital Product Manager/Link_Digital_Product_-_Digital_Product.md +0 -30
- md_processing/family_docs/Digital Product Manager/Link_Subscribers.md +0 -48
- md_processing/family_docs/Digital Product Manager.md +0 -668
- md_processing/family_docs/Glossary/Attach_Category_Parent.md +0 -18
- md_processing/family_docs/Glossary/Attach_Term-Term_Relationship.md +0 -26
- md_processing/family_docs/Glossary/Create_Category.md +0 -38
- md_processing/family_docs/Glossary/Create_Glossary.md +0 -42
- md_processing/family_docs/Glossary/Create_Term.md +0 -70
- md_processing/family_docs/Glossary.md +0 -206
- md_processing/family_docs/Governance Officer/Create_Business_Imperative.md +0 -106
- md_processing/family_docs/Governance Officer/Create_Certification_Type.md +0 -112
- md_processing/family_docs/Governance Officer/Create_Governance_Approach.md +0 -114
- md_processing/family_docs/Governance Officer/Create_Governance_Obligation.md +0 -114
- md_processing/family_docs/Governance Officer/Create_Governance_Principle.md +0 -114
- md_processing/family_docs/Governance Officer/Create_Governance_Procedure.md +0 -128
- md_processing/family_docs/Governance Officer/Create_Governance_Process.md +0 -122
- md_processing/family_docs/Governance Officer/Create_Governance_Processing_Purpose.md +0 -106
- md_processing/family_docs/Governance Officer/Create_Governance_Responsibility.md +0 -122
- md_processing/family_docs/Governance Officer/Create_Governance_Rule.md +0 -122
- md_processing/family_docs/Governance Officer/Create_Governance_Strategy.md +0 -106
- md_processing/family_docs/Governance Officer/Create_License_Type.md +0 -112
- md_processing/family_docs/Governance Officer/Create_Naming_Standard_Rule.md +0 -122
- md_processing/family_docs/Governance Officer/Create_Regulation_Article.md +0 -106
- md_processing/family_docs/Governance Officer/Create_Regulation_Definition.md +0 -118
- md_processing/family_docs/Governance Officer/Create_Security_Access_Control.md +0 -114
- md_processing/family_docs/Governance Officer/Create_Security_Group.md +0 -120
- md_processing/family_docs/Governance Officer/Create_Service_Level_Objectives.md +0 -122
- md_processing/family_docs/Governance Officer/Create_Threat_Definition.md +0 -106
- md_processing/family_docs/Governance Officer/Link_Governance_Controls.md +0 -32
- md_processing/family_docs/Governance Officer/Link_Governance_Drivers.md +0 -32
- md_processing/family_docs/Governance Officer/Link_Governance_Policies.md +0 -32
- md_processing/family_docs/Governance Officer/View_Governance_Definitions.md +0 -82
- md_processing/family_docs/Governance Officer.md +0 -2412
- md_processing/family_docs/Solution Architect/Create_Information_Supply_Chain.md +0 -70
- md_processing/family_docs/Solution Architect/Create_Solution_Blueprint.md +0 -44
- md_processing/family_docs/Solution Architect/Create_Solution_Component.md +0 -96
- md_processing/family_docs/Solution Architect/Create_Solution_Role.md +0 -66
- md_processing/family_docs/Solution Architect/Link_Information_Supply_Chain_Peers.md +0 -32
- md_processing/family_docs/Solution Architect/Link_Solution_Component_Peers.md +0 -32
- md_processing/family_docs/Solution Architect/View_Information_Supply_Chains.md +0 -32
- md_processing/family_docs/Solution Architect/View_Solution_Blueprints.md +0 -32
- md_processing/family_docs/Solution Architect/View_Solution_Components.md +0 -32
- md_processing/family_docs/Solution Architect/View_Solution_Roles.md +0 -32
- md_processing/family_docs/Solution Architect.md +0 -490
- md_processing/md_processing_utils/debug_log +0 -574
- md_processing/md_processing_utils/debug_log.log +0 -0
- md_processing/md_processing_utils/dr-egeria-help-2025-07-17T17:22:09.md +0 -2065
- md_processing/md_processing_utils/generated_help_terms.md +0 -842
- pyegeria/.DS_Store +0 -0
- pyegeria/README.md +0 -35
- pyegeria/_client_new.py +0 -1102
- pyegeria/_output_formats.py +0 -730
- pyegeria/asset_catalog_omvs.py +0 -864
- pyegeria/automated_curation_omvs.py +0 -3765
- pyegeria/config.py +0 -523
- pyegeria/egeria_my_client.py +0 -91
- pyegeria/feedback_manager_omvs.py +0 -4573
- pyegeria/load_config_orig.py +0 -218
- pyegeria/md_processing_helpers.py +0 -58
- pyegeria/md_processing_utils_orig.py +0 -1103
- pyegeria/metadata_explorer_omvs.py +0 -2326
- pyegeria/my_profile_omvs.py +0 -1022
- pyegeria/project_manager.py +0 -1591
- pyegeria/registered_info.py +0 -167
- pyegeria/template_manager_omvs.py +0 -1414
- pyegeria/utils.py +0 -256
- pyegeria-5.4.0.28.dist-info/METADATA +0 -77
- pyegeria-5.4.0.28.dist-info/RECORD +0 -343
- pyegeria-5.4.0.28.dist-info/entry_points.txt +0 -105
- /commands/cat/debug_log.log → /pyegeria/deprecated/__init__.py +0 -0
- /pyegeria/{_exceptions.py → deprecated/_exceptions.py} +0 -0
- /pyegeria/{collection_models.py → models/collection_models.py} +0 -0
- {pyegeria-5.4.0.28.dist-info → pyegeria-5.5.3.3.dist-info/licenses}/LICENSE +0 -0
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyegeria
|
|
3
|
+
Version: 5.5.3.3
|
|
4
|
+
Summary: A python client for Egeria
|
|
5
|
+
Author-email: Dan Wolfson <dan.wolfson@pdr-associates.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Keywords: egeria,metadata,governance
|
|
8
|
+
Classifier: Programming Language :: Python
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >3.12
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: httpx
|
|
14
|
+
Requires-Dist: rich>=14.2
|
|
15
|
+
Requires-Dist: validators
|
|
16
|
+
Requires-Dist: urllib3
|
|
17
|
+
Requires-Dist: requests
|
|
18
|
+
Requires-Dist: jupyter
|
|
19
|
+
Requires-Dist: click==8.3.1
|
|
20
|
+
Requires-Dist: trogon
|
|
21
|
+
Requires-Dist: psycopg2-binary>=2.9.11
|
|
22
|
+
Requires-Dist: jupyter-notebook-parser
|
|
23
|
+
Requires-Dist: loguru
|
|
24
|
+
Requires-Dist: inflect
|
|
25
|
+
Requires-Dist: pydantic>=2.12.3
|
|
26
|
+
Requires-Dist: pydantic-settings>=2.10.1
|
|
27
|
+
Requires-Dist: pydevd-pycharm>=253.27642.35
|
|
28
|
+
Requires-Dist: wcwidth
|
|
29
|
+
Requires-Dist: altair==6.0.0
|
|
30
|
+
Requires-Dist: mcp>=0.1
|
|
31
|
+
Requires-Dist: markers>=0.3.0
|
|
32
|
+
Requires-Dist: pytest-asyncio>=1.2.0
|
|
33
|
+
Requires-Dist: python-dotenv>=1.1.1
|
|
34
|
+
Requires-Dist: pytest>=8.4.2
|
|
35
|
+
Requires-Dist: optional>=0.0.1
|
|
36
|
+
Provides-Extra: test
|
|
37
|
+
Requires-Dist: pytest; extra == "test"
|
|
38
|
+
Dynamic: license-file
|
|
39
|
+
|
|
40
|
+
<!-- SPDX-License-Identifier: CC-BY-4.0 -->
|
|
41
|
+
<!-- Copyright Contributors to the ODPi Egeria project. -->
|
|
42
|
+
|
|
43
|
+

|
|
44
|
+
|
|
45
|
+
[](LICENSE)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
# pyegeria: a python client for Egeria
|
|
49
|
+
|
|
50
|
+
A lightweight Python 3.12+ client and CLI for the Egeria open metadata and governance platform. It helps you configure and operate Egeria services and work with metadata (assets, glossaries, lineage, etc.) from Python, with examples, tests, and documented report formats.
|
|
51
|
+
|
|
52
|
+
This is a package for easily using the Egeria
|
|
53
|
+
open metadata environment from python. Details about the
|
|
54
|
+
open source Egeria project can be found at [Egeria Project](https://egeria-project.org).
|
|
55
|
+
|
|
56
|
+
This package is in active development. There is initial
|
|
57
|
+
support for many of Egeria's services including configuration and operation. This client depends on
|
|
58
|
+
This release supports Egeria 6.0 - although most of the functions may work on earlier versions of Egeria as well.
|
|
59
|
+
|
|
60
|
+
The code is organized to mimic the existing Egeria Java Client structure.
|
|
61
|
+
|
|
62
|
+
The commands folder holds the Egeria Command Line Interface and corresponding commands
|
|
63
|
+
to visualize and use Egeria. The commands also serve as useful examples.
|
|
64
|
+
|
|
65
|
+
An examples folder holds some useful examples showing different facets of using pyegeria.
|
|
66
|
+
|
|
67
|
+
For detailed guidance on report formats (selection and migration from columns→attributes), see:
|
|
68
|
+
- examples/doc_samples/report_formats.md
|
|
69
|
+
|
|
70
|
+
### Report specs: families and filtering
|
|
71
|
+
|
|
72
|
+
Report specs (aka format sets) can be tagged with an optional `family` string to help organize and discover related specs.
|
|
73
|
+
|
|
74
|
+
- Show names with family and sort by family, then name:
|
|
75
|
+
|
|
76
|
+
```python
|
|
77
|
+
from pyegeria.view.base_report_formats import report_spec_list
|
|
78
|
+
|
|
79
|
+
names = report_spec_list(show_family=True, sort_by_family=True)
|
|
80
|
+
for n in names:
|
|
81
|
+
print(n)
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
- Filter specs by family programmatically:
|
|
85
|
+
|
|
86
|
+
```python
|
|
87
|
+
from pyegeria.view.base_report_formats import report_specs
|
|
88
|
+
|
|
89
|
+
# Exact family match (case-insensitive)
|
|
90
|
+
security_specs = report_specs.filter_by_family("Security")
|
|
91
|
+
# Specs with no family assigned
|
|
92
|
+
no_family_specs = report_specs.filter_by_family("")
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
WARNING: files that start with "X" are in-progress placeholders that are not meant to be used..they will mature and
|
|
96
|
+
evolve.
|
|
97
|
+
|
|
98
|
+
All feedback is welcome. Please engage via our [community](http://egeria-project.org/guides/community/),
|
|
99
|
+
team calls, or via github issues in this repo. If interested in contributing,
|
|
100
|
+
you can engage via the community or directly reach out to
|
|
101
|
+
[dan.wolfson\@pdr-associates.com](mailto:dan.wolfson@pdr-associates.com?subject=pyegeria).
|
|
102
|
+
|
|
103
|
+
This is a learning experience.
|
|
104
|
+
|
|
105
|
+
## Configuration
|
|
106
|
+
|
|
107
|
+
pyegeria uses a simple, predictable precedence for configuration:
|
|
108
|
+
|
|
109
|
+
1. Built-in defaults (Pydantic models in pyegeria.config)
|
|
110
|
+
2. Config file (JSON) if found
|
|
111
|
+
3. Environment variables (OS env and optional .env)
|
|
112
|
+
4. Explicit env file passed to get_app_config/load_app_config
|
|
113
|
+
|
|
114
|
+
Environment always overrides config file, which overrides defaults.
|
|
115
|
+
|
|
116
|
+
### Where to put your configuration
|
|
117
|
+
|
|
118
|
+
- Config file: A JSON file named config.json. The loader looks in this order:
|
|
119
|
+
- If PYEGERIA_CONFIG_DIRECTORY is set: $PYEGERIA_CONFIG_DIRECTORY/$PYEGERIA_CONFIG_FILE
|
|
120
|
+
- Else if PYEGERIA_ROOT_PATH is set: $PYEGERIA_ROOT_PATH/$PYEGERIA_CONFIG_FILE
|
|
121
|
+
- Else: ./config.json (the current working directory)
|
|
122
|
+
|
|
123
|
+
- .env file: Optional. If present in the current working directory (.env), variables from it will be loaded. You can also pass a specific env file path to get_app_config(env_file=...) or load_app_config(env_file=...). For sample variables, see config/env in this repo.
|
|
124
|
+
|
|
125
|
+
### Common environment variables
|
|
126
|
+
|
|
127
|
+
- PYEGERIA_CONFIG_DIRECTORY: directory containing your config.json
|
|
128
|
+
- PYEGERIA_ROOT_PATH: root folder used to resolve config.json when CONFIG_DIRECTORY is not set
|
|
129
|
+
- PYEGERIA_CONFIG_FILE: filename of the configuration JSON (default: config.json)
|
|
130
|
+
- PYEGERIA_CONSOLE_WIDTH: integer console width (e.g., 200 or 280)
|
|
131
|
+
- EGERIA_PLATFORM_URL, EGERIA_VIEW_SERVER_URL, EGERIA_ENGINE_HOST_URL: URLs for your Egeria servers
|
|
132
|
+
- EGERIA_USER, EGERIA_USER_PASSWORD: credentials used by some clients
|
|
133
|
+
- Logging related: PYEGERIA_ENABLE_LOGGING, PYEGERIA_LOG_DIRECTORY, PYEGERIA_CONSOLE_LOG_LVL, PYEGERIA_FILE_LOG_LVL, etc.
|
|
134
|
+
|
|
135
|
+
See config/env for more variables and defaults.
|
|
136
|
+
|
|
137
|
+
### Example .env
|
|
138
|
+
|
|
139
|
+
# PYEGERIA_CONFIG_DIRECTORY=/path/to/configs
|
|
140
|
+
# PYEGERIA_ROOT_PATH=/path/to/project
|
|
141
|
+
# PYEGERIA_CONFIG_FILE=config.json
|
|
142
|
+
# EGERIA_PLATFORM_URL=https://localhost:9443
|
|
143
|
+
# EGERIA_VIEW_SERVER=qs-view-server
|
|
144
|
+
# EGERIA_VIEW_SERVER_URL=https://localhost:9443
|
|
145
|
+
# EGERIA_USER=myuser
|
|
146
|
+
# EGERIA_USER_PASSWORD=mypassword
|
|
147
|
+
# PYEGERIA_CONSOLE_WIDTH=280
|
|
148
|
+
|
|
149
|
+
Lines starting with # are comments. Quotes are optional; python-dotenv/pydantic-settings handle both.
|
|
150
|
+
|
|
151
|
+
### Example config.json (minimal)
|
|
152
|
+
|
|
153
|
+
{
|
|
154
|
+
"Environment": {
|
|
155
|
+
"Pyegeria Root": ".",
|
|
156
|
+
"Egeria Platform URL": "https://localhost:9443"
|
|
157
|
+
},
|
|
158
|
+
"User Profile": {
|
|
159
|
+
"Egeria Home Collection": "MyHome"
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
### Programmatic usage
|
|
164
|
+
|
|
165
|
+
from pyegeria import get_app_config
|
|
166
|
+
cfg = get_app_config() # uses OS env and ./.env
|
|
167
|
+
# or with explicit env file
|
|
168
|
+
cfg = get_app_config(env_file="/path/to/dev.env")
|
|
169
|
+
|
|
170
|
+
# Access values via Pydantic models
|
|
171
|
+
print(cfg.Environment.egeria_platform_url)
|
|
172
|
+
print(cfg.Logging.enable_logging)
|
|
173
|
+
|
|
174
|
+
### CLI quick checks
|
|
175
|
+
|
|
176
|
+
- Validate your env file:
|
|
177
|
+
python scripts/validate_env.py --env config/env
|
|
178
|
+
python scripts/validate_env.py # auto-detects ./config/env or ./.env
|
|
179
|
+
|
|
180
|
+
### Testing
|
|
181
|
+
|
|
182
|
+
By default, running pytest executes unit tests that use monkeypatching/fakes and do not contact a live Egeria.
|
|
183
|
+
|
|
184
|
+
- Run unit tests (recommended default):
|
|
185
|
+
poetry install
|
|
186
|
+
poetry run pytest -v
|
|
187
|
+
|
|
188
|
+
You can also run tests live against a local Egeria instance. Enable live mode with either a CLI flag or an environment variable. In live mode, tests marked as `unit` are skipped and live tests run using a real Client2 connection.
|
|
189
|
+
|
|
190
|
+
- Enable live mode via CLI:
|
|
191
|
+
poetry run pytest -q --live-egeria
|
|
192
|
+
|
|
193
|
+
- Or enable via environment variable:
|
|
194
|
+
PYEG_LIVE_EGERIA=1 poetry run pytest -q
|
|
195
|
+
|
|
196
|
+
Default live connection parameters (can be overridden via env):
|
|
197
|
+
- server_name = "qs-view-server" (override with PYEG_SERVER_NAME)
|
|
198
|
+
- platform_url = "https://localhost:9443" (override with PYEG_PLATFORM_URL)
|
|
199
|
+
- user_id = "peterprofile" (override with PYEG_USER_ID)
|
|
200
|
+
- user_pwd = "secret" (override with PYEG_USER_PWD)
|
|
201
|
+
|
|
202
|
+
Notes:
|
|
203
|
+
- SSL verification is controlled by pyegeria._globals.enable_ssl_check, which defaults to False in this repo to support localhost/self-signed certs.
|
|
204
|
+
- See tests/conftest.py for the live test fixtures and switches.
|
|
205
|
+
|
|
206
|
+
### Troubleshooting
|
|
207
|
+
|
|
208
|
+
### Troubleshooting
|
|
209
|
+
|
|
210
|
+
- If your env doesn’t seem to apply, confirm which config.json is used (the loader checks PYEGERIA_CONFIG_DIRECTORY first, then PYEGERIA_ROOT_PATH, then ./config.json).
|
|
211
|
+
- .env files are optional. Missing .env is not an error.
|
|
212
|
+
- You can always override values with OS environment variables (they take precedence over config.json).
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
----
|
|
217
|
+
License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
|
|
218
|
+
Copyright Contributors to the ODPi Egeria project.
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
commands/__init__.py,sha256=jrO1XKhwg9mQzZTnEeJTuayXiRFCfjWQm43BLhcC2Mk,891
|
|
2
|
+
commands/cat/Dr-Egeria_md-orig.py,sha256=Kh7FZJP98i0DRyds3pErPPlfJa7X1s_KAbB4aZ-q7pM,7346
|
|
3
|
+
commands/cat/__init__.py,sha256=l4CImkjEiTQKS7QR-RQwzHIgRpfP032Mn_NZEuIILwg,98
|
|
4
|
+
commands/cat/collection_actions.py,sha256=cIe9KRaC4ogtuwz_qdUeW7c8jo2QaiVzS2x0WfJU8Qs,7876
|
|
5
|
+
commands/cat/dr_egeria_command_help.py,sha256=zY_a0H3b7zyi4JptE4_L3ihA-DezCeXYl1WUgGo2YR4,15480
|
|
6
|
+
commands/cat/dr_egeria_jupyter.py,sha256=oB03qxEEMfV2tnivti_ovrAWfpxj-fXc79pJS-BXR6o,5697
|
|
7
|
+
commands/cat/dr_egeria_md.py,sha256=xYhpD8aEwxS9etUBerzHxPKRu6IoL0bgcmYslUCFbj4,4767
|
|
8
|
+
commands/cat/exp_list_glossaries.py,sha256=4L289BRI_4jiSMiwUf8vejqRtlcQDiqz_FegI197y9Y,5677
|
|
9
|
+
commands/cat/get_asset_graph.py,sha256=sWdA8P97j8IM92z1Q4jhUN_xTLir5-IT6aV_J_siHu8,3253
|
|
10
|
+
commands/cat/get_collection_tree.py,sha256=EHPEXC-bMuEWeII6cn_t7i7CW7YYSJS0dscuuADH-IQ,5302
|
|
11
|
+
commands/cat/get_project_dependencies.py,sha256=fO6ST9QezqIb_AGOPHwZX4dU03iXVqfGxmXs4GXbQqM,6064
|
|
12
|
+
commands/cat/get_project_structure.py,sha256=BMkrXhglfDk16UZZ9S5Efg9rZPPW8NSv6BEDnaJagoc,6070
|
|
13
|
+
commands/cat/get_tech_type_elements.py,sha256=wELn34r4BGtbR3V2DL1LcLz6Uc4BA0sWdvn2GYTeQSQ,2338
|
|
14
|
+
commands/cat/glossary_actions.py,sha256=CvJbpM3tVe6udWJ6KDxHR5zIwyfFGQPS-lBXrTPGg_I,14401
|
|
15
|
+
commands/cat/list_assets.py,sha256=qwvTZ9vnk_0dpoO3ipT5CBDax1py3XPCTbx5K9mRgtE,6189
|
|
16
|
+
commands/cat/list_cert_types.py,sha256=n5-CjzqIGPR42X3wHyvdSLzCS7XO219fiAdl3vVAAh0,4898
|
|
17
|
+
commands/cat/list_collections.py,sha256=1z8nxyREaMOrxHTcWAOfzjcO7WcxctYky84iYXJIjRw,4563
|
|
18
|
+
commands/cat/list_deployed_catalogs.py,sha256=Qp-lLIh9rE7yN2wAzt87mJ05J8WJCeZN3Z0iTdBIeH8,7555
|
|
19
|
+
commands/cat/list_deployed_database_schemas.py,sha256=MDtTCLaXHkKRIB5JaTpMbf3TlMRS4xfydbqycosb8VY,8625
|
|
20
|
+
commands/cat/list_deployed_databases.py,sha256=oLUp7goW_2_qIyP-dAs1zYGFVAK_WmKjkImffxtyVL0,6797
|
|
21
|
+
commands/cat/list_deployed_servers.py,sha256=vXTAoyOaezf0BJ_Z5qDC9YOqofRrgQLhU-czkzzOM-Q,4945
|
|
22
|
+
commands/cat/list_glossaries.py,sha256=SPz7zZff9pHA_BkhH2driy10eQY5mZIXUkn6qLwpHWo,7856
|
|
23
|
+
commands/cat/list_projects.py,sha256=kJx9aCt2ZQRPady15S4_YPJC2GlV-TNQwc5n26xE_EE,7901
|
|
24
|
+
commands/cat/list_tech_type_elements.py,sha256=-WfnrcPmThHfqFKHVDE7wJ1lDKLId1C7040wTcaEnSA,6261
|
|
25
|
+
commands/cat/list_tech_types.py,sha256=IFZs_aLNiZVcXdhclxxizgtPkA3a0-HhnsfjeJsZ_5Y,3888
|
|
26
|
+
commands/cat/list_terms.py,sha256=D_VtzK6ff504kX0Jxdph6bKPiQcJafJjA9hQxqcfGWI,10237
|
|
27
|
+
commands/cat/list_todos.py,sha256=RcTiKmejAgo4p2pjxkFzzHmlUklWENlJE6CZFS6xm5o,6463
|
|
28
|
+
commands/cat/list_user_ids.py,sha256=pPFxHp_b8X_3sM_S_EfF_lyVkxk_xb2m2cmXmULiMps,5011
|
|
29
|
+
commands/cat/my_reports.py,sha256=W9o96v563WDXVhAr-9nZ-XQqLAd8CJk_E0NJvgzpJZs,28121
|
|
30
|
+
commands/cat/run_report.py,sha256=uLTjJEaCHkkVCRzcE-F8Sfb32ukZgilyKvUdPUDDhQ8,15565
|
|
31
|
+
commands/cat/run_report_orig.py,sha256=V9cJrk5_Rtv3MhDhC3w3WydKRwPmXIMb1otRU46-kc8,22095
|
|
32
|
+
commands/cli/__init__.py,sha256=E6vPW3P3iuVPyrwtDIWvU9P0JXOGqP8KupeIZdxc6wc,298
|
|
33
|
+
commands/cli/egeria.py,sha256=ubqcPTx4sHvd_Dxh7fd8EBxUnL86YcTKdMlzvULfsTg,55137
|
|
34
|
+
commands/cli/egeria_cat.py,sha256=B0iEnM9_hzXBBwrBoRtlNhZH_ZUQI_U2ZwCRHbcMCrA,18120
|
|
35
|
+
commands/cli/egeria_login_tui.py,sha256=bh9MvJcZPpixXkEtWh_4NK4YcRdeHSVDUBTIhQncSyY,9498
|
|
36
|
+
commands/cli/egeria_my.py,sha256=b2bXp2pQbgOa4SE9NnqtyWbt_E6RWFoynGTpvAa7Uj4,6657
|
|
37
|
+
commands/cli/egeria_ops.py,sha256=HF6DVJ-GWaIJXlVuduBkPzZ1IDtpN0dJkIgFEYRzE0w,11871
|
|
38
|
+
commands/cli/egeria_tech.py,sha256=22WbCu3feQ82NEeB1fTu_lhEJUH6Ya7TPLBGW3PgF_k,20450
|
|
39
|
+
commands/cli/ops_config.py,sha256=0_aKDNl-AxfeT4aukOXiS1TH72b3ZRszGg_ekTnbgMU,1363
|
|
40
|
+
commands/deprecated/list_data_designer.py,sha256=jlqfD7tB4RP-9jgrH_aXVZ-PbyKoS34mkSYRegbg-k8,6691
|
|
41
|
+
commands/deprecated/list_data_structures_full.py,sha256=FONDEjrgD4hgRpEfFrcXJfLMcVSHYsHIn5vnvE75uWU,8626
|
|
42
|
+
commands/deprecated/old_get_asset_graph.py,sha256=sEobkaS5jc7CZ1gw-CtihvxrsIyJeRRrAySkLpc94Bg,12455
|
|
43
|
+
commands/my/__init__.py,sha256=Dkyww0rDAARkfvrO5w5EIU3zj0XQII8BPjVrPo8xqjA,406
|
|
44
|
+
commands/my/list_my_profile.py,sha256=APtKu5A9XMEFTwJdPw98Wet-k_G-q_JgQU5UKiGO8x8,5748
|
|
45
|
+
commands/my/list_my_roles.py,sha256=TrFiNqJ4KPDgaCHrGgXdQpIepQvDbRcHnXisvZVEse4,5043
|
|
46
|
+
commands/my/monitor_my_todos.py,sha256=L6kxZJ492Pxj-UaIIG-0N7O7es27yz_MAA0jbF60ZtQ,6957
|
|
47
|
+
commands/my/monitor_open_todos.py,sha256=igiFTP0WQN_lrw3bRxgllLt0wIKWlWd4y_gWk2uwnjo,6031
|
|
48
|
+
commands/my/todo_actions.py,sha256=Rp9yu-FrskkURmYxAifirjXpOX4Bucs34-ukqxpJUEE,8183
|
|
49
|
+
commands/ops/__init__.py,sha256=jRR_UmymLlllFVc4zUHrA9EsUFP4iZh4Bi3AqHHm_jY,407
|
|
50
|
+
commands/ops/gov_server_actions.py,sha256=zG3I3Aewd7lJFVMv4OxoInnwI55q2qIYYCp3GY24dFU,5772
|
|
51
|
+
commands/ops/list_archives.py,sha256=aG1MkgVGtTIqYb_PN2Y4FYnF8sATHy1J5QXxtekmQ44,4416
|
|
52
|
+
commands/ops/list_catalog_targets.py,sha256=fbTET7KVnIaMkkBS729zzGxzy8hcq15_tn-rMMIv1kM,7094
|
|
53
|
+
commands/ops/load_archive.py,sha256=_BggHcY-iNTtJRoVoDseErHDHnFjv0_yvKquunOS2mU,3106
|
|
54
|
+
commands/ops/monitor_active_engine_activity.py,sha256=Mwh3dCYfjReeP3lamDAnrf5Op3ZTcTO8oJON6j4cnNo,8987
|
|
55
|
+
commands/ops/monitor_daemon_status.py,sha256=piSA1ptAKBaiCZs48-DYzx8VSQm-FiH_W7kDr3ZflZQ,10818
|
|
56
|
+
commands/ops/monitor_engine_activity.py,sha256=ivvUfrYBr1EIJrWffa3OpbkoSM5QOC3b_iwBL3uy6Hg,10154
|
|
57
|
+
commands/ops/monitor_engine_status.py,sha256=ydxHksmNsFYIFhJhTLO5Z-E01MW51M5YB1K7ZlpKF5o,9985
|
|
58
|
+
commands/ops/monitor_platform_status.py,sha256=Z0IWU0XMyuPRGAf_EV3BP02xi43pPyeaxy7BzsQQ-hk,6693
|
|
59
|
+
commands/ops/monitor_server_startup.py,sha256=YZCsWVOmqAipiQMAJnXvKYSHXkcvWsCILc0B6w0SOWY,3712
|
|
60
|
+
commands/ops/monitor_server_status.py,sha256=nJP0moxfnKMFPUzxPfqYHK2fTy62KqxRiGW6nbaNzVY,7123
|
|
61
|
+
commands/ops/orig_monitor_server_list.py,sha256=ZBCNu5PEaobrT_9FQTaK5wOHHhSpktsJf-ia5LO2xz0,4764
|
|
62
|
+
commands/ops/orig_monitor_server_status.py,sha256=oPaaB5Lqs3gUo-HULEXk_Tu1JvjII9Cdo29vMVukDMA,4001
|
|
63
|
+
commands/ops/refresh_integration_daemon.py,sha256=UW9Ikpdz6dUGjtaxgeWp91mYKiyDz7SKa6gsPSDqZJE,3051
|
|
64
|
+
commands/ops/restart_integration_daemon.py,sha256=s6aQouJW2EW5tck_ExpcU3x2d0SiGOLIJ__CFI57Vs0,2987
|
|
65
|
+
commands/ops/table_integ_daemon_status.py,sha256=p5ZwrAciuiVyHPTv7tHl2cGILCp-7jf28yCcGROgpt4,8533
|
|
66
|
+
commands/ops/x_engine_actions.py,sha256=AvwuSR_NXhb0BeqC7gnRkUgamXGsVDseN7t0KJcvYHs,2370
|
|
67
|
+
commands/tech/__init__.py,sha256=Dkyww0rDAARkfvrO5w5EIU3zj0XQII8BPjVrPo8xqjA,406
|
|
68
|
+
commands/tech/element_actions.py,sha256=RemkjispmZBLrKR6wgs1q18_B5BbDwRT7ZcHHQEWzAE,2657
|
|
69
|
+
commands/tech/get_element_info.py,sha256=Jrz-XLDM7WRqXF6jTppYDbXYjPoDys5kBM8xzcn8QK0,4265
|
|
70
|
+
commands/tech/get_guid_info.py,sha256=CvpGN5PBQeYyTvjh2A6c0t1a2LJkg-5NSZbHW4ld4fg,3305
|
|
71
|
+
commands/tech/get_tech_details.py,sha256=mmOvdejJiHudtPEKIoqWTyrObu_kam9pGwtQoMx0oms,5540
|
|
72
|
+
commands/tech/get_tech_type_template.py,sha256=FUESxh4tjrx0l6PTU3oasaLwRIsuJsGRe0kSZXeF5Rw,5895
|
|
73
|
+
commands/tech/list_all_om_type_elements.py,sha256=DivOWqv1dkilEgd9WHx_kkZt1Zj5e7FGIu3kueTFIcY,5579
|
|
74
|
+
commands/tech/list_all_om_type_elements_x.py,sha256=swk0dhDltwdynixCWqLvJ9XHuUxiTUKMiOGDyBM4H7o,6109
|
|
75
|
+
commands/tech/list_all_related_elements.py,sha256=UTZSUHVPoL9Gg-gX0qfDxDYhXHf-cUa21Cu3EFBAj1Y,7265
|
|
76
|
+
commands/tech/list_anchored_elements.py,sha256=9CRBpbehG3bhMqhb5DeEiXgST0EsWi6LHDRP5gjP1us,7232
|
|
77
|
+
commands/tech/list_asset_types.py,sha256=DLad5I5-9RzKG-ewcGdsW1iRVY3H4t21MuH3qQHqWUA,3821
|
|
78
|
+
commands/tech/list_elements_by_classification_by_property_value.py,sha256=TLOOxPSuQYtBQgo4DrJfM6RJhMI0rmdZEINT7J6Urvw,6890
|
|
79
|
+
commands/tech/list_elements_by_property_value.py,sha256=VNwIu66Q06u_NK9bgr35RONPnUNeelEF9MCGSQ_J_3k,6114
|
|
80
|
+
commands/tech/list_elements_by_property_value_x.py,sha256=wu-2mqmvb4MTWP62W3Q7uZrdKJK_bEur2naC7b3PLoQ,6615
|
|
81
|
+
commands/tech/list_elements_for_classification.py,sha256=Tw_xXdDdfPtQ-pM66koA1j7K-A38CcASb_wEZU43X80,6019
|
|
82
|
+
commands/tech/list_gov_action_processes.py,sha256=bh_w7B1j6FV9P1zj61Gzv9XPszc5ODYPysHE8iJIdfQ,3893
|
|
83
|
+
commands/tech/list_information_supply_chains.py,sha256=8HmgtFh-R3Q61g4FKyXAuMKlcXkfX7KI6FoYUlZtr38,5770
|
|
84
|
+
commands/tech/list_registered_services.py,sha256=TmK6KUs-IR1QDBkn6_tfjJmPK8ld7959Qpal0pbu6vs,5817
|
|
85
|
+
commands/tech/list_related_elements_with_prop_value.py,sha256=cEUC8PxAHcSgPCBIUTABRglRfVfsx5FlB_zvEsrtcms,7490
|
|
86
|
+
commands/tech/list_related_specification.py,sha256=RUJAjjCqTPXO8IXJlDFS6usRZoXqIYz1TG68KMXRGf0,5902
|
|
87
|
+
commands/tech/list_relationship_types.py,sha256=n22qU7MFoKBhOwf7kTAywY47aYaZctkXeiah4L0S1_I,5047
|
|
88
|
+
commands/tech/list_relationships.py,sha256=oFM-r49FyZDUVDz0Tk3cKYpsGzOeN0jKEz_aP9xkgJA,5184
|
|
89
|
+
commands/tech/list_solution_blueprints.py,sha256=isgTme9VugG5rdosqzT-rizK3W8jRLFLoP7INvbJCpg,6555
|
|
90
|
+
commands/tech/list_solution_components.py,sha256=kEMgKcL8IQ6UpHEAyfv7Hz1e1wc2MNihSrgOm_V4R48,6299
|
|
91
|
+
commands/tech/list_solution_roles.py,sha256=6x50bUfc7fXBjAAF9eEGMhV1oyzoCO8vvI1a-qkazI4,6013
|
|
92
|
+
commands/tech/list_tech_templates.py,sha256=_KVqyYcdLBLEpaRKbKmsKGM-V9Kwgj10EDeXin1K-7Q,13884
|
|
93
|
+
commands/tech/list_valid_metadata_values.py,sha256=s1AuevkckkdZu27HkIxg6gqxPl-GMsGAJFr5JfwLF7E,6160
|
|
94
|
+
commands/tech/table_tech_templates.py,sha256=h2edJ0HBsYIx7xA6UXEs1FvptdFNkoiEc5qerIs0uws,9463
|
|
95
|
+
commands/tech/x_list_related_elements.py,sha256=0dV05wZ_8UhhP-wp4UsU_Vi1PDB-3bJw5I6jPlUTTo0,5870
|
|
96
|
+
examples/GeoSpatial Products Example.py,sha256=1S7qGjalDW70A8c8j53s_PFcIhY2zDVuEeXKLydyYLk,20158
|
|
97
|
+
examples/format_sets_save_load_example.py,sha256=CQUbxRlrmLWJM-SoaK9scpL6PPgpBf5SPCgahVvcHCQ,10383
|
|
98
|
+
examples/jacquard_data_sets.py,sha256=wMut_Pbi48A3vQm3eQxn65dSih3oIcHOIOPmw6Qwkmo,4355
|
|
99
|
+
examples/output_formats_example.py,sha256=HLMp9WMV7M36hYxGQXag456H0J-J0mUO_ih2HK6oeY8,6900
|
|
100
|
+
examples/test_jacquard_data_sets.py,sha256=PRW1jXNPpZME-22GxPZRJLdPJt8fswKiJgsiw_HB5YE,1646
|
|
101
|
+
examples/test_jacquard_data_sets_scenarios.py,sha256=YRK8Q2uZUY1wrqfZtzoGjVSHe9zLjGoN884GTaP9rII,3099
|
|
102
|
+
examples/Jupyter Notebooks/P-egeria-server-config.ipynb,sha256=IOuDa3Q6SqiIyXEDGMWC8y_DzSaGoU4mWxJxuWL-MzY,111675
|
|
103
|
+
examples/Jupyter Notebooks/README.md,sha256=1ZqEQWu3nrNcf8KG2b7q08OIx2J6iZ6sPyuwSdkRy40,170
|
|
104
|
+
examples/Jupyter Notebooks/common/P-environment-check.ipynb,sha256=W2I_Ek_927zTEz8VHNWPKvIksOyRhHQfyUFDCW1vI2c,2901
|
|
105
|
+
examples/Jupyter Notebooks/common/__init__.py,sha256=iA_4Q_V3MbNseuq7PFWunX9GmJo3FvJhz-fv7xpIGbU,407
|
|
106
|
+
examples/Jupyter Notebooks/common/common-functions.ipynb,sha256=ctOqx8zG-Yk5elPMWgM6lNx2hUCFSVMzYIjxWYwsGvs,276828
|
|
107
|
+
examples/Jupyter Notebooks/common/environment-check.ipynb,sha256=kV6GIxAJ2_KComc1g0FDEbvTKN7hOyBQqEOzEJnONcU,1385
|
|
108
|
+
examples/Jupyter Notebooks/common/globals.ipynb,sha256=egoxpNUevuSeNTBV1d909u6W9NzfDPKcbgY_aZgX4Sg,7845
|
|
109
|
+
examples/Jupyter Notebooks/common/globals.py,sha256=Gn4Iij9DvVjinGqUPqtijfhewnU0vuramdmtk-Fs-8U,5710
|
|
110
|
+
examples/Jupyter Notebooks/common/orig_globals.py,sha256=VtwTB336p9WyNJaFEtE9keo9vdDl-GnvkZPaKiVa1VA,5659
|
|
111
|
+
examples/format_sets/all_format_sets.json,sha256=rPesOiP-Vgooe78Y_epuQjyk_KrabTV6icHwXF73p3s,19991
|
|
112
|
+
examples/format_sets/custom_format_sets.json,sha256=X3NG9Qe8L0KlfrUfjd2ju15I2IayV1mFEQxC4rdW2Fg,5614
|
|
113
|
+
examples/format_sets/subset_format_sets.json,sha256=cRgpGuuQht9KkJR6nLxQ8GaEAZtc-ZmbCgU8syHcNkc,4009
|
|
114
|
+
md_processing/__init__.py,sha256=-osURzNPWTtii-moqS1fBSTriEBZeJGMRT293-c-cME,7727
|
|
115
|
+
md_processing/command_dispatcher.py,sha256=8ak2wohJjBZev25rMDWind5TexG4rn9cFsmK5Joep4U,1084
|
|
116
|
+
md_processing/command_mapping.py,sha256=noVPoKbzj3oEzzAKN9UX-bdDu6aD1tmf_tfQp6XB1Po,10870
|
|
117
|
+
md_processing/dr_egeria.py,sha256=iZTMTpJ7Jew3num55mNDZxfTU5uK3NSI-HFmuZ3WWKY,7906
|
|
118
|
+
md_processing/data/commands.json,sha256=Urp7s8Ms2BLOnvLUYIRSEl1U7J-CW6rdzOfWM3AcQ0U,567740
|
|
119
|
+
md_processing/data/commands_working.json,sha256=s3mpFOfX447cFLax8uSW6nYcmPL1OBqys1WHgZL1Qkk,1036091
|
|
120
|
+
md_processing/data/gened_report_specs.py,sha256=tV97UtDB_3p2gS1199-hw6R_gppZXWxhCm_lPCfIJMk,157444
|
|
121
|
+
md_processing/data/generated_format_sets.json,sha256=_uRpk6y8iy1WqaoEdnZs_udZbOcYezHqgHezQNdspyw,155679
|
|
122
|
+
md_processing/data/generated_format_sets_old.json,sha256=RlX25e-HWJbqhpIPynIDVHc1NJ_c94Z6GllMNk5sRv8,98646
|
|
123
|
+
md_processing/data/generated_format_sets_old.py,sha256=joRR_Il3IOvhVGm5nvaFMHjXDqL5SbL3ELeS-UkUoEY,36390
|
|
124
|
+
md_processing/data/commands/commands_data_designer.json,sha256=6cGMi5LV0kRrs-ZgltZkeOeMwvXMJxxq5HOXulRKKSE,18619
|
|
125
|
+
md_processing/data/commands/commands_external_reference.json,sha256=wDaoq13v8-MX9TeDU2nikFfOD7ST4qxx7tc-rFk0Mho,22822
|
|
126
|
+
md_processing/data/commands/commands_feedback.json,sha256=RAhP0dtULIcQClzvkotopsSO8Gq190VSZrDVaTzKLVs,5039
|
|
127
|
+
md_processing/data/commands/commands_general.json,sha256=VGiH2gdJxjzmUpU9za2s4atw_-iQ0wKFs4C5TTQmKbM,7585
|
|
128
|
+
md_processing/data/commands/commands_glossary.json,sha256=mKfG0eKWrEHBJCRznSt_paN7mq4McenLu1eqM5_iHso,6745
|
|
129
|
+
md_processing/data/commands/commands_governance.json,sha256=fXjuUG7lukVIqgD_HNPmzFeg7buhTzdEXIc88ip4Yaw,116963
|
|
130
|
+
md_processing/data/commands/commands_product_manager.json,sha256=LvMOsup0hWCo7on9oLmC5Mvnkh8-k3lmf1Ps7bjwGV8,29823
|
|
131
|
+
md_processing/data/commands/commands_project.json,sha256=D4UViOzpJA2MZhfHj6v8es89pERzuCThhHktzNWCHDQ,19902
|
|
132
|
+
md_processing/data/commands/commands_solution_architect.json,sha256=EIWS7N6OHINVccUR_nh8Wrr81yPKKFwGSjPfvSBnEW8,12771
|
|
133
|
+
md_processing/md_commands/__init__.py,sha256=ssEojzFlSYtY2bHqqOoKo8PFaANZ_kq_gIbtlXnuc2s,93
|
|
134
|
+
md_processing/md_commands/data_designer_commands.py,sha256=ErQ4_0dozmKvBWIQeKooOe0V85UThErTaLHiuPge7-0,65365
|
|
135
|
+
md_processing/md_commands/ext_ref_commands.py,sha256=Ee6Exyfa21YXYJQS2h36IP4kq6c91lRHj4KmG7zZdR0,23563
|
|
136
|
+
md_processing/md_commands/feedback_commands.py,sha256=oMtUFS2L8LyFQyr9amYlw1_rshRO1fuEMpsAaoHx_uI,30317
|
|
137
|
+
md_processing/md_commands/glossary_commands.py,sha256=anwbndEYVbUjE1nSjg7z5VewTV9C77o9Mv0hGEkaFA8,32345
|
|
138
|
+
md_processing/md_commands/governance_officer_commands.py,sha256=6kiX47962EXx61ET3V3m6HLNTFSm9uQGcibC_l7-164,26472
|
|
139
|
+
md_processing/md_commands/product_manager_commands.py,sha256=pQB5AS-Re3SqRoUeIJ4ZGylSUW7pcTCzf_4GZYo169I,57737
|
|
140
|
+
md_processing/md_commands/project_commands.py,sha256=Trs34Zw22aD0DPTKqMp0POcaTu-dMVQ8NTDJ4GFgmnM,16095
|
|
141
|
+
md_processing/md_commands/solution_architect_commands.py,sha256=W2mEOrkLZMHmYAnHu9y8ztjcybZZPIhNFFvSKUQxvRM,56667
|
|
142
|
+
md_processing/md_commands/view_commands.py,sha256=4mw0XlheQY9ohnR5aYHoN5XVwha2FOWQUWvOZuGw5G0,11887
|
|
143
|
+
md_processing/md_processing_utils/__init__.py,sha256=LxAmxlcji26ziKV4gGar01d95gL9vgToRIeJW8N-Ifs,80
|
|
144
|
+
md_processing/md_processing_utils/common_md_proc_utils.py,sha256=bSsbHsyc-X-jyHxgjsMk88EsJqP_f_GJomq3AJoIIOU,59192
|
|
145
|
+
md_processing/md_processing_utils/common_md_utils.py,sha256=U3tWgzoiAkbGbo4VOBZJkVmNh9GYSf1pTIx9RGt7YvM,28447
|
|
146
|
+
md_processing/md_processing_utils/determine_width.py,sha256=nzinSuSF9SeuVOfKXsg-l1cqLkNYKZnF6HYfJpft44A,4236
|
|
147
|
+
md_processing/md_processing_utils/extraction_utils.py,sha256=4-4j2GoNEZbFwtU7dsfB-WW_kEmZkvWuZHKTkGw30iw,22584
|
|
148
|
+
md_processing/md_processing_utils/gen_report_specs.py,sha256=N1iPxHW3fZxWKq_F0oiPYvsnB9XqKzqe7ovQ0Th01TU,25988
|
|
149
|
+
md_processing/md_processing_utils/generate_dr_help.py,sha256=PTBeLDa0s3LzZI1YT_AVa83AQXfPD1Y88nvIZql_QZg,7417
|
|
150
|
+
md_processing/md_processing_utils/generate_md_cmd_templates.py,sha256=aY7OSJtgQagxcU106G-27B3LtxefUJ0suh65PGUYBC8,5745
|
|
151
|
+
md_processing/md_processing_utils/generate_md_templates.py,sha256=GU_jLDT6L-Bbacev72EictS0z6GeU0PBTLauD1WhqX4,2790
|
|
152
|
+
md_processing/md_processing_utils/md_processing_constants.py,sha256=2EbPVXhE1prjWcVxhhkI5nv0Oiv02n6ypqcif3BK1-k,50659
|
|
153
|
+
md_processing/md_processing_utils/message_constants.py,sha256=UBf18obM83umM6zplR7ychre4xLRbBnTzidHDZ2gNvM,548
|
|
154
|
+
pyegeria/__init__.py,sha256=MchdaCq8GRXnYOXbgpLEJxWp4PfR5Ljdh1qbQVaz4Zo,6601
|
|
155
|
+
pyegeria/egeria_cat_client.py,sha256=bgUeQDBvQ6L_DbHu94xCR-iD__NEzyiRdL0-rPXHwiI,1793
|
|
156
|
+
pyegeria/egeria_client.py,sha256=3LTIx0j_weldLL6Va3jdJ9EPqwcGh8pDPSMu0GsFLXY,7663
|
|
157
|
+
pyegeria/egeria_config_client.py,sha256=TQtjfkaE5Odd8YGP-Y1Q3asIYyyrfxXIwQQ8nZLxlBg,2348
|
|
158
|
+
pyegeria/egeria_tech_client.py,sha256=K4jMcGJdOKRTy6rQZ0BnxSJPzT3CP_7j-1--U3_wfnw,8448
|
|
159
|
+
pyegeria/core/__init__.py,sha256=8efWfm6ojYwrUT9Ml6VjiACaOCG6XIDUy9MDoK2bQUM,980
|
|
160
|
+
pyegeria/core/_base_platform_client.py,sha256=CWAu4iuRF6cQ1esJaPaRczK39gFuz0gWYwmDdzbekKk,20539
|
|
161
|
+
pyegeria/core/_base_server_client.py,sha256=hbr0XkKdEfkBefutvgq2iRN4Cx95Rf-webTyidlj7qU,20540
|
|
162
|
+
pyegeria/core/_exceptions.py,sha256=Mml6qgWo7AYNHdL3zqAbssXLRZ0mZQSWF04f-RuCBO0,21123
|
|
163
|
+
pyegeria/core/_globals.py,sha256=10Zp7_gWzOUddIcCGDHag4KSn7xQYBh8VR8F_iqjeOo,2031
|
|
164
|
+
pyegeria/core/_server_client.py,sha256=tXrz1cvCS_jrjS6u1l3tdYMeak_u9Wm8yyAXBeoE_oA,225213
|
|
165
|
+
pyegeria/core/_validators.py,sha256=gFsclAo4sYIrLXzM3KjX_Q9nbKehI6_FHzkThaIDRDY,7394
|
|
166
|
+
pyegeria/core/config.py,sha256=AP6d7TrYkwM4efeQ0mzmiHSLK1p6brEBYPnP2SpLHCg,30316
|
|
167
|
+
pyegeria/core/create_tech_guid_lists.py,sha256=LknFJXqMMaZgl3NH93pPN9GkorHyo3SxYY7-60zGpu8,4763
|
|
168
|
+
pyegeria/core/load_config.py,sha256=43Fk0sadh6_nOa2suOCk-x1XsnZZtagLQojYw67q64Q,1201
|
|
169
|
+
pyegeria/core/logging_configuration.py,sha256=G91r9mpvXSB_Qw1R8foJxuYhGG13s1pDBPTrSN816L0,7679
|
|
170
|
+
pyegeria/core/mcp_adapter.py,sha256=6u7jcWEHDEGYDgykEM9-brSxMHNO3VQoWTghvxddq7s,6063
|
|
171
|
+
pyegeria/core/mcp_server.py,sha256=TITPcSXox70Gzy1VnWmcNAlHF3jnphK5ifnqQe8y5X0,8509
|
|
172
|
+
pyegeria/core/utils.py,sha256=4un-TaTfZ7twb9QtHEA8Wcnh9MuGdh-jLo2eEoyjq0o,12906
|
|
173
|
+
pyegeria/deprecated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
+
pyegeria/deprecated/_client.py,sha256=9dnDAOVPquJ_d42CnJCvt6g2CP-kpYtRREDMsCmnvTI,33512
|
|
175
|
+
pyegeria/deprecated/_deprecated_gov_engine.py,sha256=MWPprByjc5wcbvOKlxJR2okZ5EI_Odrjt7F-BOc9thg,17344
|
|
176
|
+
pyegeria/deprecated/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
|
|
177
|
+
pyegeria/deprecated/classification_manager_omvs.py,sha256=HJ6Wn7aTm4FQIo-rg2_Weu-H5bxKZxBfYVlncjwo-yw,183897
|
|
178
|
+
pyegeria/deprecated/output_formatter_with_machine_keys.py,sha256=UHDrDhNIfDq3KsPpb4N9Ri0Rhkw-nvsdo5nDThsL-KI,47340
|
|
179
|
+
pyegeria/deprecated/runtime_manager_omvs.py,sha256=Gd3nAxD5VjUOChLuVMrji19FEu9jCbKRiazCemN_ezw,80390
|
|
180
|
+
pyegeria/deprecated/valid_metadata_omvs.py,sha256=Rc3SQhFEDwJwqqXk53BTm4aGFwCPA3AKlUIsaMgqr-E,65285
|
|
181
|
+
pyegeria/deprecated/x_action_author_omvs.py,sha256=wq8ktgqSzrd002iTs7L0T49oUi2_brBrXseStlY1jRY,6387
|
|
182
|
+
pyegeria/models/__init__.py,sha256=VIiEy0VpPIsdPkcfVDjYUs7AY797q-iFy8-KRApNk0A,4297
|
|
183
|
+
pyegeria/models/collection_models.py,sha256=d3DdWONqDdAeuUQgussiCNfvhKIDFpaI35cdW_Tv4_0,5315
|
|
184
|
+
pyegeria/models/models.py,sha256=5jSZQoevz-xAJW3kC8AT7UjpULVTpMLN6dpFbXe8duU,25698
|
|
185
|
+
pyegeria/omvs/__init__.py,sha256=uidJSayE9tnPEcTjo_001YE5kbSPda3LQGo87WGP70A,3223
|
|
186
|
+
pyegeria/omvs/action_author.py,sha256=-S_sqU3EmLjLdUhpZwHRxPKHf76Q58wkfqFjtXIse7M,12294
|
|
187
|
+
pyegeria/omvs/actor_manager.py,sha256=xZLoC1ZbuGEERvVGrTjeJNvNPfdOeU4_vaiSIRgp3rU,252083
|
|
188
|
+
pyegeria/omvs/asset_catalog.py,sha256=TiYsdaYBbBJAjRujDyKYTWs2oHBSezozFEC0aRsFS5M,38790
|
|
189
|
+
pyegeria/omvs/asset_maker.py,sha256=nIuwg19JvfYY4WC-XET4jFlzuVluLy1soqYSMgoouQ8,97679
|
|
190
|
+
pyegeria/omvs/automated_curation.py,sha256=sEVs232pj9S6A66y5bEiL2dbrkSCPCCez1mE4pWo4T8,175583
|
|
191
|
+
pyegeria/omvs/classification_manager.py,sha256=cFJTCyyFuz2xbzvqKdvmlGuX_YR6U0b0FeTA2v9JSCU,393834
|
|
192
|
+
pyegeria/omvs/collection_manager.py,sha256=iy2cJUoq-rj_BfP5_gp2S8MygIQtp00P32Qlww0cy-Y,246810
|
|
193
|
+
pyegeria/omvs/community_matters_omvs.py,sha256=SzdM5mohicMh6jW4tWi_3wEX_Guk0JcBrElU7_yqy-o,22589
|
|
194
|
+
pyegeria/omvs/core_omag_server_config.py,sha256=HsNSBfp8jJRopCDun4KC1r3_AXF-uCt-UA_4KxjcGBY,98268
|
|
195
|
+
pyegeria/omvs/data_designer.py,sha256=_5e9jFb2cuBEbFxg-yd8zFv_hsQiN677HciXXN8gyZY,216101
|
|
196
|
+
pyegeria/omvs/data_discovery.py,sha256=rB2BybCXnEZbLZxbvHlM0Q3wVSn6QYOEbsMGcdEnwno,33624
|
|
197
|
+
pyegeria/omvs/data_engineer.py,sha256=NwD1nw9Gv6InrZGVReM2a8BRAnHPaY-SbeU_0AjeANE,20036
|
|
198
|
+
pyegeria/omvs/digital_business.py,sha256=VTquc4PxnBC_GUz6dzKj5Ds8DYM4COsVF0UERnoXIQw,41800
|
|
199
|
+
pyegeria/omvs/external_links.py,sha256=BAAYo4IQoPhpEevUylmjBB-6e5N4UXtES_kSrqcBHJI,79735
|
|
200
|
+
pyegeria/omvs/feedback_manager.py,sha256=j3EDtKnQgGi-60ZnnMaFtil9wGlbyHca1WD-Ah31NhQ,26276
|
|
201
|
+
pyegeria/omvs/full_omag_server_config.py,sha256=Ctu586rOfjiXS-rVfROCr0ww1Z1yIeZJREFRajRFRD0,47656
|
|
202
|
+
pyegeria/omvs/glossary_manager.py,sha256=ZZRBkNOVWRitAfkPLRaJkruaLi2TJfJxLh1-ymVjtkg,132431
|
|
203
|
+
pyegeria/omvs/governance_officer.py,sha256=sBgAtzeRCjYQm803C97t17oWJLBJQz8GBMQKzQN376w,124043
|
|
204
|
+
pyegeria/omvs/lineage_linker.py,sha256=ScxmtCcUEaZCwSdE7-x_9ciD_N-J4w-IrLEXmYuN_1Q,10355
|
|
205
|
+
pyegeria/omvs/location_arena.py,sha256=FPWghtV3xnVPUrqQSj1mS-kwmU9s5CuEKZ2eWVK4PhA,63959
|
|
206
|
+
pyegeria/omvs/metadata_expert.py,sha256=JIa3P-gAMYYFZ8FP0vhlfNasQpmZY6aEQVgDl7b0YYw,26674
|
|
207
|
+
pyegeria/omvs/metadata_explorer_omvs.py,sha256=A_NTig-tMnXECqe04hCPfd8oqa9pfmQZPnQSSwR8RF0,140726
|
|
208
|
+
pyegeria/omvs/my_profile.py,sha256=jqQ5QOlxYElF5hFwjcGWavfsiXtoHArX8FpGiHcwYR8,36584
|
|
209
|
+
pyegeria/omvs/notification_manager.py,sha256=by7TdFXouj0Z0bjM5zGzWkaxR_PNU8aR_JmKQUu0doA,11864
|
|
210
|
+
pyegeria/omvs/people_organizer.py,sha256=JdeHAhqFkjq-OML2WXdyl380f8hgzjwXDOlWWiT-sLQ,11333
|
|
211
|
+
pyegeria/omvs/platform_services.py,sha256=LyGkcfj4k5vUdv4HePIvt72nwRURUMwBotBr-eEYW0w,38445
|
|
212
|
+
pyegeria/omvs/product_manager.py,sha256=-NC0RpPbKhA5BD4WkB-XBSwwtD7yTOF7Th3cwhZIVQ0,65941
|
|
213
|
+
pyegeria/omvs/project_manager.py,sha256=r047z7meRaoDYVbllZdJQUFM8u4AoVd5vHXd19EQPXc,78751
|
|
214
|
+
pyegeria/omvs/reference_data.py,sha256=vwF864FjpW7RT7X_K6obLMOzWRR1XDJL7mG1xODXPiQ,41550
|
|
215
|
+
pyegeria/omvs/registered_info.py,sha256=ucMInSIMxAI2RhWC6_4So7fNeyXWc6Sh84QE5PQRURs,13257
|
|
216
|
+
pyegeria/omvs/runtime_manager.py,sha256=yYm3pb3B9UKgPNGBKPiWq0yYE3gBwVnWQ-MzNHFLjaM,104597
|
|
217
|
+
pyegeria/omvs/schema_maker.py,sha256=tsxqT5hPFiI27Aq4LUNu_WX4I2Jxb14BIsy8mH-Kw80,22595
|
|
218
|
+
pyegeria/omvs/server_operations.py,sha256=B7GzE3YDs9j5hDhkgpzvwz6C_gYbgyroFlE5dG305tA,16871
|
|
219
|
+
pyegeria/omvs/solution_architect.py,sha256=5t2dfgbouTsOyOvTvYproL7zipOjItD6CHQ24Xv__dg,275231
|
|
220
|
+
pyegeria/omvs/specification_properties.py,sha256=P0WkbPbbDHvK69l_03HQPGzyCM3Ux0a23mHajwxLiP4,1133
|
|
221
|
+
pyegeria/omvs/subject_area.py,sha256=YBXY5ViM-ujFuIvWcZjCZC3_NK4szGYdvpzOvqwUulU,39341
|
|
222
|
+
pyegeria/omvs/template_manager_omvs.py,sha256=krAsyABaxBQhSy0wStSwb9jdtkUl5zH-v2K04UeL9UY,10894
|
|
223
|
+
pyegeria/omvs/time_keeper.py,sha256=cuinefKaZdfoJq3bhAjFeSEeG2qPFY1Nqcj74lTC7jU,62097
|
|
224
|
+
pyegeria/omvs/valid_metadata.py,sha256=h5mRn5ybLCGV2aNfrThLsqGkYse8082opoXqmb0E8I4,123796
|
|
225
|
+
pyegeria/omvs/valid_metadata_lists.py,sha256=Qu5lU5ihxoPYH2GRLYevWR7fCoI_Qeq2HuVsvPxodQ0,1110
|
|
226
|
+
pyegeria/omvs/valid_type_lists.py,sha256=RIqLsI5eEl0qebr9Ly9AdI9wdijPNLFbYnNrdJxMJcg,1094
|
|
227
|
+
pyegeria/view/__init__.py,sha256=Gu9gUjMb4UEdC9R5jIVYKhISTNNQHnXSmb90ZNA--xg,648
|
|
228
|
+
pyegeria/view/_output_format_models.py,sha256=T3vkgqs0QAhOTDiTMDshPafvfsp8oZ61LYMbl4O7ZUk,19178
|
|
229
|
+
pyegeria/view/_output_formats.py,sha256=tvwuJLaG-z_YYF7HxLH_EEBzXb567AQid4PY8ZfQ_SE,397
|
|
230
|
+
pyegeria/view/base_report_formats.py,sha256=sbQJLnY-13Q1yo7KW-UxPlPcir0pijaAND0saiV34fg,121609
|
|
231
|
+
pyegeria/view/dr_egeria_reports.py,sha256=cfT2Igonq79sj4jVJuZNb-ZQFjkMPT-INHHIwMNbLRA,47925
|
|
232
|
+
pyegeria/view/format_set_executor.py,sha256=Q5J0RAYXc33i79X94M8ukK660g2oB-O2V3HcO3Y5hSw,16846
|
|
233
|
+
pyegeria/view/md_processing_utils.py,sha256=XhphMMIgE9n1ltsfYUEhhJQTz-dxs3xcoIvrauxVGlI,99030
|
|
234
|
+
pyegeria/view/mermaid_utilities.py,sha256=ifxpUN_SHa5cnN_6SmD3yjxNoxCU64fLpU84DX2KtR4,48087
|
|
235
|
+
pyegeria/view/output_formatter.py,sha256=LcDHpdDwy50xB887kgSSRXhy3fUxWGnLdkxisMPXijg,53950
|
|
236
|
+
pyegeria-5.5.3.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
237
|
+
pyegeria-5.5.3.3.dist-info/METADATA,sha256=qeWvZYzBHMRf7YChkeLrvokneNkoaEbX6VJjnz-X6z4,8307
|
|
238
|
+
pyegeria-5.5.3.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
239
|
+
pyegeria-5.5.3.3.dist-info/entry_points.txt,sha256=njBTreL2iv6aUfY0GCqKMhSPjjZ78JYF8Y6OrwaCAWE,6414
|
|
240
|
+
pyegeria-5.5.3.3.dist-info/top_level.txt,sha256=79GSLIQLdnCT1ApFEbFYr2flWPPANEUlnvMZXWn4fng,41
|
|
241
|
+
pyegeria-5.5.3.3.dist-info/RECORD,,
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
add_term_to_category = commands.cat.glossary_actions:add_term_to_category
|
|
3
|
+
change_todo_status = commands.my.todo_actions:change_todo_status
|
|
4
|
+
create_category = commands.cat.glossary_actions:create_category
|
|
5
|
+
create_glossary = commands.cat.glossary_actions:create_glossary
|
|
6
|
+
create_term = commands.cat.glossary_actions:create_term
|
|
7
|
+
create_todo = commands.my.todo_actions:create_todo
|
|
8
|
+
delete_category = commands.cat.glossary_actions:delete_category
|
|
9
|
+
delete_element = commands.tech.generic_actions:delete_element
|
|
10
|
+
delete_glossary = commands.cat.glossary_actions:delete_glossary
|
|
11
|
+
delete_term = commands.cat.glossary_actions:delete_term
|
|
12
|
+
delete_todo = commands.my.todo_actions:delete_todo
|
|
13
|
+
dr_egeria_help = commands.cat.dr_egeria_command_help:main
|
|
14
|
+
dr_egeria_jupyter = commands.cat.dr_egeria_jupyter:process_jupyter_notebook
|
|
15
|
+
dr_egeria_md = commands.cat.dr_egeria_md:process_markdown_file
|
|
16
|
+
egeria_login = commands.cli.egeria_login_tui:login
|
|
17
|
+
export_terms_to_csv_file = commands.cat.glossary_actions:export_terms_csv
|
|
18
|
+
gen_report_specs = md_processing.md_processing_utils.gen_report_specs:main
|
|
19
|
+
get_asset_graph = commands.cat.get_asset_graph:main
|
|
20
|
+
get_collection_tree = commands.cat.get_collection_tree:main
|
|
21
|
+
get_element_info = commands.tech.get_element_info:main
|
|
22
|
+
get_guid_info = commands.tech.get_guid_info:main
|
|
23
|
+
get_project_dependencies = commands.cat.get_project_dependencies:main
|
|
24
|
+
get_project_structure = commands.cat.get_project_structure:main
|
|
25
|
+
get_tech_details = commands.tech.get_tech_details:main
|
|
26
|
+
get_tech_type_elements = commands.cat.get_tech_type_elements:main
|
|
27
|
+
get_tech_type_template = commands.tech.get_tech_type_template:main
|
|
28
|
+
hey_egeria = commands.cli.egeria:cli
|
|
29
|
+
hey_egeria_cat = commands.cli.egeria_cat:cli
|
|
30
|
+
hey_egeria_my = commands.cli.egeria_my:cli
|
|
31
|
+
hey_egeria_ops = commands.cli.egeria_ops:cli
|
|
32
|
+
hey_egeria_tech = commands.cli.egeria_tech:cli
|
|
33
|
+
list_active_engine_activity = commands.ops.monitor_active_engine_activity:main_paging
|
|
34
|
+
list_all_related_elements = commands.tech.list_all_related_elements:main
|
|
35
|
+
list_anchored_elements = commands.tech.list_anchored_elements:main
|
|
36
|
+
list_archives = commands.ops.list_archives:main
|
|
37
|
+
list_asset_types = commands.tech.list_asset_types:main
|
|
38
|
+
list_assets = commands.cat.list_assets:main
|
|
39
|
+
list_catalog_targets = commands.ops.list_catalog_targets:main
|
|
40
|
+
list_categories = commands.cat.list_categories:main
|
|
41
|
+
list_cert_types = commands.cat.list_cert_types:main
|
|
42
|
+
list_collections = commands.cat.list_collections:main
|
|
43
|
+
list_daemon_status = commands.ops.monitor_daemon_status:main_paging
|
|
44
|
+
list_deployed_catalogs = commands.cat.list_deployed_catalogs:main
|
|
45
|
+
list_deployed_databases = commands.cat.list_deployed_databases:main
|
|
46
|
+
list_deployed_schemas = commands.cat.list_deployed_database_schemas:main
|
|
47
|
+
list_deployed_servers = commands.cat.list_deployed_servers:main
|
|
48
|
+
list_elements = commands.tech.list_all_om_type_elements:main
|
|
49
|
+
list_elements_by_classification_by_prop_value = commands.tech.list_elements_by_classification_by_property_value:main
|
|
50
|
+
list_elements_by_prop_value = commands.tech.list_elements_by_property_value:main
|
|
51
|
+
list_elements_by_prop_value_x = commands.tech.list_elements_by_property_value_x:main
|
|
52
|
+
list_elements_for_classification = commands.tech.list_elements_for_classification:main
|
|
53
|
+
list_elements_x = commands.tech.list_all_om_type_elements_x:main
|
|
54
|
+
list_engine_activity = commands.ops.monitor_engine_activity:main_paging
|
|
55
|
+
list_engine_status = commands.ops.monitor_engine_status:main_paging
|
|
56
|
+
list_glossaries = commands.cat.list_glossaries:main
|
|
57
|
+
list_gov_action_processes = commands.tech.list_gov_action_processes:main
|
|
58
|
+
list_info_supply_chains = commands.tech.list_information_supply_chains:main
|
|
59
|
+
list_my_profile = commands.my.list_my_profile:main
|
|
60
|
+
list_my_roles = commands.my.list_my_roles:main
|
|
61
|
+
list_projects = commands.cat.list_projects:main
|
|
62
|
+
list_registered_services = commands.tech.list_registered_services:main
|
|
63
|
+
list_related_elements_with_prop_value = commands.tech.list_related_elements_with_prop_value:main
|
|
64
|
+
list_related_specification = commands.tech.list_related_specification:main
|
|
65
|
+
list_relationship_types = commands.tech.list_relationship_types:main
|
|
66
|
+
list_relationships = commands.tech.list_relationships:main
|
|
67
|
+
list_solution_blueprints = commands.tech.list_solution_blueprints:main
|
|
68
|
+
list_solution_components = commands.tech.list_solution_components:main
|
|
69
|
+
list_solution_roles = commands.tech.list_solution_roles:main
|
|
70
|
+
list_tech_templates = commands.tech.list_tech_templates:main
|
|
71
|
+
list_tech_type_elements = commands.cat.list_tech_type_elements:main
|
|
72
|
+
list_tech_types = commands.cat.list_tech_types:main
|
|
73
|
+
list_terms = commands.cat.list_terms:main
|
|
74
|
+
list_todos = commands.cat.list_todos:main
|
|
75
|
+
list_user_ids = commands.cat.list_user_ids:main
|
|
76
|
+
list_valid_metadata_values = commands.tech.list_valid_metadata_values:main
|
|
77
|
+
load_archive = commands.ops.load_archive:load_archive
|
|
78
|
+
load_archive_tui = commands.ops.load_archive:tui
|
|
79
|
+
load_terms_from_csv_file = commands.cat.glossary_actions:import_terms_csv
|
|
80
|
+
mark_todo_complete = commands.my.todo_actions:mark_todo_complete
|
|
81
|
+
monitor_active_engine_activity = commands.ops.monitor_active_engine_activity:main_live
|
|
82
|
+
monitor_coco_status = commands.ops.monitor_coco_status:main
|
|
83
|
+
monitor_daemon_status = commands.ops.monitor_daemon_status:main_live
|
|
84
|
+
monitor_engine_activity = commands.ops.monitor_engine_activity:main_live
|
|
85
|
+
monitor_engine_status = commands.ops.monitor_engine_status:main_live
|
|
86
|
+
monitor_my_todos = commands.my.monitor_my_todos:main
|
|
87
|
+
monitor_open_todos = commands.my.monitor_open_todos:main
|
|
88
|
+
monitor_platform_status = commands.ops.monitor_platform_status:main
|
|
89
|
+
monitor_server_list = commands.ops.orig_monitor_server_list:main
|
|
90
|
+
monitor_server_startup = commands.ops.monitor_server_startup:main
|
|
91
|
+
monitor_server_status = commands.ops.monitor_server_status:main
|
|
92
|
+
my_reports = Commands.cat.my_reports:start_exp2
|
|
93
|
+
pyegeria-mcp = pyegeria.mcp_server:main
|
|
94
|
+
reassign_todo = commands.my.todo_actions:reassign_todo
|
|
95
|
+
refresh_gov_eng_config = commands.ops.gov_server_actions:refresh_gov_eng_config
|
|
96
|
+
refresh_integration_daemon = commands.ops.refresh_integration_daemon:main
|
|
97
|
+
remove_term_from_category = commands.cat.glossary_actions:remove_term_from_category
|
|
98
|
+
restart_integration_daemon = commands.ops.restart_integration_daemon:main
|
|
99
|
+
run_report = commands.cat.run_report:main
|
|
100
|
+
run_report_orig = Commands.cat.run_report_orig:main
|
|
101
|
+
start_daemon = commands.ops.engine_actions:start_daemon
|
|
102
|
+
stop_daemon = commands.ops.engine_actions:stop_daemon
|
|
103
|
+
update_category = commands.cat.glossary_actions:update_category
|
commands/cat/.DS_Store
DELETED
|
Binary file
|
commands/cat/.env
DELETED
commands/cat/README.md
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<!-- SPDX-License-Identifier: CC-BY-4.0 -->
|
|
2
|
-
<!-- Copyright Contributors to the Egeria project. -->
|
|
3
|
-
|
|
4
|
-
# Catalog User
|
|
5
|
-
|
|
6
|
-
These widgets display different kinds of information useful to a typical catalog user. Widgets
|
|
7
|
-
will continue to be added over time to cover more facets of catalog use.
|
|
8
|
-
|
|
9
|
-
* list_assets.py - lists assets containing the user provided search string in the display name or qualified name. Search string must be a minimum of three characters.
|
|
10
|
-
* view_asset_graph.py - shows a tree view of an asset with its nested elements and relationships.
|
|
11
|
-
* view_collection.py - provides a tree view of a collection with all nested collections and items within the collection.
|
|
12
|
-
* view_glossary.py - provides a simple glossary viewer showing terms and related information.
|
|
13
|
-
* get_asset_graph.py - shows an asset with all its relationships as a tree graph.
|
|
14
|
-
----
|
|
15
|
-
License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
|
|
16
|
-
Copyright Contributors to the Egeria project.
|