pyegeria 5.4.8.6__py3-none-any.whl → 5.4.8.8__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.
- examples/Coco_config/README.md +19 -0
- examples/Coco_config/__init__.py +4 -0
- examples/Coco_config/config_cocoMDS1.py +108 -0
- examples/Coco_config/config_cocoMDS2.py +126 -0
- examples/Coco_config/config_cocoMDS3.py +109 -0
- examples/Coco_config/config_cocoMDS4.py +91 -0
- examples/Coco_config/config_cocoMDS5.py +116 -0
- examples/Coco_config/config_cocoMDS6.py +114 -0
- examples/Coco_config/config_cocoMDSx.py +119 -0
- examples/Coco_config/config_cocoView1.py +155 -0
- examples/Coco_config/config_coco_core.py +255 -0
- examples/Coco_config/config_coco_datalake.py +450 -0
- examples/Coco_config/config_exchangeDL01.py +106 -0
- examples/Coco_config/config_governDL01.py +80 -0
- examples/Coco_config/config_monitorDev01.py +60 -0
- examples/Coco_config/config_monitorGov01.py +194 -0
- examples/Coco_config/globals.py +154 -0
- examples/GeoSpatial Products Example.py +535 -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 +53 -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 +294 -0
- examples/output_formats_example.py +193 -0
- md_processing/__init__.py +6 -0
- md_processing/data/commands.json +30640 -59579
- md_processing/dr_egeria.py +18 -0
- md_processing/md_commands/feedback_commands.py +763 -0
- md_processing/md_commands/project_commands.py +1 -1
- md_processing/md_processing_utils/md_processing_constants.py +134 -4
- pyegeria/__init__.py +1 -1
- pyegeria/_client_new.py +109 -12
- pyegeria/_globals.py +3 -2
- pyegeria/base_report_formats.py +17 -0
- pyegeria/format_set_executor.py +5 -2
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/METADATA +1 -1
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/RECORD +49 -16
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/top_level.txt +1 -0
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/entry_points.txt +0 -0
- {pyegeria-5.4.8.6.dist-info → pyegeria-5.4.8.8.dist-info}/licenses/LICENSE +0 -0
md_processing/dr_egeria.py
CHANGED
|
@@ -45,6 +45,11 @@ from md_processing.md_commands.data_designer_commands import (process_data_spec_
|
|
|
45
45
|
process_data_structure_upsert_command,
|
|
46
46
|
process_data_class_upsert_command)
|
|
47
47
|
|
|
48
|
+
from md_processing.md_commands.feedback_commands import (process_add_comment_command, process_upsert_note_log_command,
|
|
49
|
+
process_upsert_note_command, process_attach_note_log_command,
|
|
50
|
+
process_upsert_informal_tag_command, process_tag_element_command)
|
|
51
|
+
|
|
52
|
+
|
|
48
53
|
from pyegeria import EgeriaTech, PyegeriaException, print_basic_exception, print_validation_error
|
|
49
54
|
|
|
50
55
|
EGERIA_METADATA_STORE = os.environ.get("EGERIA_METADATA_STORE", "active-metadata-store")
|
|
@@ -117,6 +122,19 @@ def process_md_file(input_file: str, output_folder:str, directive: str, server:
|
|
|
117
122
|
result = process_provenance_command(input_file, current_block)
|
|
118
123
|
prov_found = True
|
|
119
124
|
|
|
125
|
+
elif potential_command in ["Create Comment", "Update Comment"]:
|
|
126
|
+
result = process_add_comment_command(client, current_block, directive)
|
|
127
|
+
elif potential_command in ["Create NoteLog", "Update NoteLog"]:
|
|
128
|
+
result = process_upsert_note_log_command(client, current_block, directive)
|
|
129
|
+
elif potential_command in ["Create Note", "Update Note"]:
|
|
130
|
+
result = process_upsert_note_command(client, current_block, directive)
|
|
131
|
+
elif potential_command in ["Link NoteLog", "Detach NoteLog"]:
|
|
132
|
+
result = process_attach_note_log_command(client, current_block, directive)
|
|
133
|
+
elif potential_command in ["Create Informal Tag", "Update Informal Tag"]:
|
|
134
|
+
result = process_upsert_informal_tag_command(client, current_block, directive)
|
|
135
|
+
elif potential_command in ["Link Tag", "Detach Tag"]:
|
|
136
|
+
result = process_tag_element_command(client, current_block, directive)
|
|
137
|
+
|
|
120
138
|
elif potential_command in EXT_REF_UPSERT:
|
|
121
139
|
result = process_external_reference_upsert_command(client, current_block, directive)
|
|
122
140
|
elif potential_command in LINK_EXT_REF:
|