pyegeria 5.4.0.24__py3-none-any.whl → 5.4.0.25__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. commands/cat/debug_log +7373 -1452
  2. commands/cat/debug_log.2025-08-17_11-34-27_981852.zip +0 -0
  3. commands/cat/dr_egeria_md.py +21 -4
  4. commands/cat/logs/pyegeria.log +4 -0
  5. md_processing/.DS_Store +0 -0
  6. md_processing/__init__.py +7 -3
  7. md_processing/data/commands.json +1683 -2801
  8. md_processing/dr_egeria_inbox/product.md +69 -20
  9. md_processing/dr_egeria_outbox/.obsidian/workspace.json +5 -5
  10. md_processing/dr_egeria_outbox/monday/processed-2025-08-19 07:05-product.md +426 -0
  11. md_processing/dr_egeria_outbox/monday/processed-2025-08-19 07:56-product.md +212 -0
  12. md_processing/dr_egeria_outbox/monday/processed-2025-08-19 09:43-product.md +201 -0
  13. md_processing/dr_egeria_outbox/tuesday/processed-2025-08-19 10:55-product.md +209 -0
  14. md_processing/md_commands/governance_officer_commands.py +1 -73
  15. md_processing/md_commands/product_manager_commands.py +453 -211
  16. md_processing/md_processing_utils/common_md_proc_utils.py +60 -5
  17. md_processing/md_processing_utils/common_md_utils.py +21 -9
  18. md_processing/md_processing_utils/extraction_utils.py +2 -2
  19. md_processing/md_processing_utils/md_processing_constants.py +8 -7
  20. pyegeria/.DS_Store +0 -0
  21. pyegeria/_client_new.py +58 -10
  22. pyegeria/_output_formats.py +25 -0
  23. pyegeria/collection_manager.py +79 -14
  24. pyegeria/{data_designer_omvs.py → data_designer.py} +1171 -1675
  25. pyegeria/glossary_browser.py +1259 -0
  26. pyegeria/{glossary_manager_omvs.py → glossary_manager.py} +1181 -1099
  27. pyegeria/models.py +9 -3
  28. pyegeria/output_formatter.py +2 -1
  29. pyegeria/project_manager.py +1952 -0
  30. pyegeria/utils.py +4 -1
  31. {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.25.dist-info}/METADATA +1 -1
  32. {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.25.dist-info}/RECORD +35 -34
  33. md_processing/dr_egeria_outbox/monday/processed-2025-07-14 12:38-data_designer_out.md +0 -663
  34. md_processing/dr_egeria_outbox/monday/processed-2025-07-21 10:52-generated_help_report.md +0 -2744
  35. md_processing/dr_egeria_outbox/monday/processed-2025-07-21 18:38-collections.md +0 -62
  36. md_processing/dr_egeria_outbox/monday/processed-2025-08-01 11:34-gov_def.md +0 -444
  37. md_processing/dr_egeria_outbox/monday/processed-2025-08-17 21:04-product.md +0 -97
  38. pyegeria/glossary_browser_omvs.py +0 -3840
  39. pyegeria/governance_officer_omvs.py +0 -2367
  40. {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.25.dist-info}/LICENSE +0 -0
  41. {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.25.dist-info}/WHEEL +0 -0
  42. {pyegeria-5.4.0.24.dist-info → pyegeria-5.4.0.25.dist-info}/entry_points.txt +0 -0
@@ -29,11 +29,12 @@ from md_processing import (extract_command, process_glossary_upsert_command, pro
29
29
  process_information_supply_chain_upsert_command,
30
30
  process_information_supply_chain_link_unlink_command, process_sol_arch_list_command,
31
31
  process_digital_product_upsert_command, process_agreement_upsert_command,
32
- process_collection_list_command, process_collection_upsert_command, process_link_agreement_item_command,
32
+ process_collection_upsert_command, process_link_agreement_item_command,
33
33
  process_gov_definition_upsert_command, GOV_COM_LIST, GOV_LINK_LIST,
34
- process_gov_def_link_detach_command, process_gov_definition_list_command,
34
+ process_gov_def_link_detach_command,
35
35
  process_gov_def_context_command, process_supporting_gov_def_link_detach_command,
36
- COLLECTIONS_LIST, SIMPLE_COLLECTIONS, GOV_LINK_LIST,)
36
+ process_attach_subscriber_command,
37
+ COLLECTIONS_LIST, SIMPLE_COLLECTIONS, GOV_LINK_LIST, process_output_command)
37
38
  from md_processing.md_commands.data_designer_commands import (process_data_spec_upsert_command,
38
39
  process_data_dict_upsert_command,
39
40
  process_data_collection_list_command,
@@ -192,7 +193,9 @@ def process_markdown_file(input_file: str, output_folder:str, directive: str, se
192
193
  result = process_data_class_list_command(client, current_block, directive)
193
194
  elif potential_command in ["Create Digital Product", "Create Data Product","Update Digital Product", "Update Data Product"]:
194
195
  result = process_digital_product_upsert_command(client, current_block, directive)
195
- elif potential_command in ["Create Agreement", "Create Data Sharing Agreement", "Update Agreement", "Update Data Sharing Agreement"]:
196
+ elif potential_command in ["Create Agreement", "Create Data Sharing Agreement", "Create Digital Subscription",
197
+ "Create Product Subscription", "Update Agreement", "Update Data Sharing Agreement",
198
+ "Update Digital Subscription", "Update Product Subscription"]:
196
199
  result = process_agreement_upsert_command(client, current_block, directive)
197
200
  elif potential_command in SIMPLE_COLLECTIONS:
198
201
  result = process_collection_upsert_command(client, current_block, directive)
@@ -206,6 +209,20 @@ def process_markdown_file(input_file: str, output_folder:str, directive: str, se
206
209
  elif potential_command in ['Link Governance Mechanism', 'Detach Governance Mechanism',
207
210
  'Link Governance Response', 'Detach Governance Response',]:
208
211
  result = process_supporting_gov_def_link_detach_command(client, current_block, directive)
212
+ elif potential_command in ['Link Digital Products', 'Detach Digital Products',
213
+ 'Link Product-Product', 'Detach Product-Product'
214
+ ]:
215
+ result = process_product_dependency_command(client, current_block, directive)
216
+ elif potential_command in ['Link Agreement->Item', 'Detach Agreement->Item']:
217
+ result = process_link_agreement_item_command(client, current_block, directive)
218
+ elif potential_command in ['Link Collection->Resource', 'Detach Collection->Resource']:
219
+ result = process_attach_collection_command(client, current_block, directive)
220
+ elif potential_command in ['Link Member->Collection', 'Detach Member->Collection',]:
221
+ result = process_add_to_collection_command(client, current_block, directive)
222
+ elif potential_command in ['Link Subscriber->Subscription', 'Detach Subscriber->Subscription']:
223
+ result = process_attach_subscriber_command(client, current_block, directive)
224
+ elif potential_command in ['View Report']:
225
+ result = process_output_command(client, current_block, directive)
209
226
 
210
227
  elif potential_command in COLLECTIONS_LIST:
211
228
  result = process_collection_list_command(client, current_block, directive)
@@ -0,0 +1,4 @@
1
+ 2025-08-19 08:03:29 | INFO | main:399 - view server @ https://localhost:9443-{}
2
+ 2025-08-19 08:03:31 | SUCCESS | get_platform_origin:367 - Got response from https://localhost:9443/open-metadata/platform-services/users/erinoverview/server-platform/origin
3
+ Response: Egeria OMAG Server Platform (version 5.4-SNAPSHOT)-{}
4
+ 2025-08-19 08:03:31 | INFO | __init__:133 - CollectionManager initialized, platform origin is: True-{}
md_processing/.DS_Store CHANGED
Binary file
md_processing/__init__.py CHANGED
@@ -4,16 +4,19 @@ This package contains functions to parse and process Egeria Markdown (Freddie)
4
4
  from md_processing.md_commands.governance_officer_commands import (process_gov_definition_upsert_command,
5
5
  process_gov_def_link_detach_command,
6
6
  process_supporting_gov_def_link_detach_command,
7
- process_gov_definition_list_command,
8
7
  process_gov_def_context_command,
9
8
  )
10
9
 
11
10
 
12
11
  from md_processing.md_commands.product_manager_commands import (process_digital_product_upsert_command,
13
12
  process_agreement_upsert_command,
14
- process_collection_list_command,
15
13
  process_collection_upsert_command,
16
- process_link_agreement_item_command)
14
+ process_link_agreement_item_command,
15
+ process_add_to_collection_command,
16
+ process_product_dependency_command,
17
+ process_attach_collection_command,
18
+ process_attach_subscriber_command,
19
+ )
17
20
 
18
21
  from md_processing.md_commands.solution_architect_commands import (process_blueprint_upsert_command,
19
22
  process_solution_component_upsert_command,
@@ -75,3 +78,4 @@ from md_processing.md_processing_utils.md_processing_constants import (load_comm
75
78
  # Import message constants
76
79
  from md_processing.md_processing_utils.message_constants import (message_types, ALWAYS, ERROR, INFO, WARNING)
77
80
 
81
+ from md_processing.md_processing_utils.common_md_proc_utils import process_output_command