pyegeria 5.3.8.1__py3-none-any.whl → 5.3.8.2__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.
- pyegeria/commands/cat/dr_egeria_md.py +2 -1
- pyegeria/md_processing_utils.py +15 -4
- {pyegeria-5.3.8.1.dist-info → pyegeria-5.3.8.2.dist-info}/METADATA +1 -1
- {pyegeria-5.3.8.1.dist-info → pyegeria-5.3.8.2.dist-info}/RECORD +7 -7
- {pyegeria-5.3.8.1.dist-info → pyegeria-5.3.8.2.dist-info}/LICENSE +0 -0
- {pyegeria-5.3.8.1.dist-info → pyegeria-5.3.8.2.dist-info}/WHEEL +0 -0
- {pyegeria-5.3.8.1.dist-info → pyegeria-5.3.8.2.dist-info}/entry_points.txt +0 -0
@@ -189,7 +189,8 @@ def process_markdown_file(
|
|
189
189
|
f2.write(prov_output)
|
190
190
|
click.echo(f"\n==> Output written to {new_file_path}")
|
191
191
|
else:
|
192
|
-
|
192
|
+
if directive != 'display':
|
193
|
+
click.echo("\nNo updates detected. New File not created.")
|
193
194
|
|
194
195
|
except (Exception):
|
195
196
|
console.print_exception(show_locals=True)
|
pyegeria/md_processing_utils.py
CHANGED
@@ -70,6 +70,12 @@ def is_valid_iso_date(date_text) -> bool:
|
|
70
70
|
except ValueError:
|
71
71
|
return False
|
72
72
|
|
73
|
+
def set_debug_level(directive: str) -> None:
|
74
|
+
"""Sets the debug level for the script."""
|
75
|
+
global debug_level
|
76
|
+
if directive == "display":
|
77
|
+
debug_level = "display-only"
|
78
|
+
|
73
79
|
|
74
80
|
def get_current_datetime_string():
|
75
81
|
"""Returns the current date and time as a human-readable string."""
|
@@ -221,6 +227,8 @@ def print_msg(msg_level: str, msg: str, verbosity: str):
|
|
221
227
|
print(record)
|
222
228
|
case "debug":
|
223
229
|
print(record)
|
230
|
+
case "display-only":
|
231
|
+
pass
|
224
232
|
case _:
|
225
233
|
print("Invalid verbosity level - exiting\n")
|
226
234
|
sys.exit(1)
|
@@ -304,7 +312,7 @@ def process_provenance_command(file_path: str, txt: [str]) -> str:
|
|
304
312
|
existing_prov = extracted_text # Return the cleaned text
|
305
313
|
else:
|
306
314
|
existing_prov = None
|
307
|
-
print(f"txt is: {txt}, existing_prov: {existing_prov}")
|
315
|
+
# print(f"txt is: {txt}, existing_prov: {existing_prov}")
|
308
316
|
existing_prov = existing_prov if existing_prov else " "
|
309
317
|
return f"\n# Provenance:\n{existing_prov}\n{output}\n"
|
310
318
|
|
@@ -557,7 +565,7 @@ def process_blueprint_upsert_command(egeria_client: EgeriaTech, element_dictiona
|
|
557
565
|
A string summarizing the outcome of the processing.
|
558
566
|
"""
|
559
567
|
command, object_type, object_action = extract_command_plus(txt)
|
560
|
-
|
568
|
+
set_debug_level(directive)
|
561
569
|
display_name = process_simple_attribute(txt, ['Display Name', 'Blueprint Name'],ERROR)
|
562
570
|
description = process_simple_attribute(txt, ['Description'])
|
563
571
|
version = process_simple_attribute(txt, ['Version', "Version Identifier", "Published Version"])
|
@@ -661,6 +669,7 @@ def process_solution_component_upsert_command(egeria_client: EgeriaTech, element
|
|
661
669
|
Returns: str
|
662
670
|
A string summarizing the outcome of the processing.
|
663
671
|
"""
|
672
|
+
set_debug_level(directive)
|
664
673
|
bp_qname_list = []
|
665
674
|
command, object_type, object_action = extract_command_plus(txt)
|
666
675
|
|
@@ -821,6 +830,7 @@ def process_glossary_upsert_command(egeria_client: EgeriaTech, element_dictionar
|
|
821
830
|
# object_type = command.split(' ')[1].strip()
|
822
831
|
# object_action = command.split(' ')[0].strip()
|
823
832
|
command, object_type, object_action = extract_command_plus(txt)
|
833
|
+
set_debug_level(directive)
|
824
834
|
|
825
835
|
glossary_name = process_simple_attribute(txt, ['Glossary Name', 'Display Name'])
|
826
836
|
print(Markdown(f"{pre_command} `{object_action}` `{object_type}` for glossary: `\'{glossary_name}\'` with directive: `{directive}` "))
|
@@ -938,7 +948,7 @@ def process_categories_upsert_command(egeria_client: EgeriaTech, element_diction
|
|
938
948
|
:return: A string summarizing the outcome of the processing.
|
939
949
|
"""
|
940
950
|
valid = True
|
941
|
-
|
951
|
+
set_debug_level(directive)
|
942
952
|
# command = extract_command(txt)
|
943
953
|
# object_type = command.split(' ')[1].strip()
|
944
954
|
# object_action = command.split(' ')[0].strip()
|
@@ -1075,7 +1085,7 @@ def process_term_upsert_command(egeria_client: EgeriaTech, element_dictionary: d
|
|
1075
1085
|
valid = True
|
1076
1086
|
categories_list = None
|
1077
1087
|
cats_exist = True
|
1078
|
-
|
1088
|
+
set_debug_level(directive)
|
1079
1089
|
known_q_name = None
|
1080
1090
|
command = extract_command(txt)
|
1081
1091
|
object_type = command.split(' ')[1].strip()
|
@@ -1259,6 +1269,7 @@ def process_per_proj_upsert_command(egeria_client: ProjectManager, element_dicti
|
|
1259
1269
|
object = command.split()
|
1260
1270
|
object_type = f"{object[1]} {object[2]}"
|
1261
1271
|
object_action = object[0]
|
1272
|
+
set_debug_level(directive)
|
1262
1273
|
|
1263
1274
|
project_name = process_simple_attribute(txt, ['Project Name'])
|
1264
1275
|
description = process_simple_attribute(txt, ['Description'])
|
@@ -16,7 +16,7 @@ pyegeria/commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiq
|
|
16
16
|
pyegeria/commands/cat/__init__.py,sha256=5OCy4m_yZsnSxdy_gvkCyP_OkjvuWKimqUGHYCJc_qA,450
|
17
17
|
pyegeria/commands/cat/dr_egeria_inbox/glossary_creation_experiment.ipynb,sha256=dbzNu90fCKNohOWVSRBOB1GLyd95x8Qw51I5AkaPtso,11552
|
18
18
|
pyegeria/commands/cat/dr_egeria_jupyter.py,sha256=U-3m9BMoCXj2fvuawr3PTc2HQWAXThqQ3sIXjyCWv6s,5912
|
19
|
-
pyegeria/commands/cat/dr_egeria_md.py,sha256=
|
19
|
+
pyegeria/commands/cat/dr_egeria_md.py,sha256=Fd6k305KQ4Mpfk-ME3XgH7RneGCaIOZ68xelWlCMaF0,10454
|
20
20
|
pyegeria/commands/cat/exp_list_glossaries.py,sha256=dC6Bnfm3YSMTKPP146qeslIFRiZnGu5b7iDYE07p4iU,5817
|
21
21
|
pyegeria/commands/cat/get_asset_graph.py,sha256=xnXJfpDTVH1TJ2TwE3dtjaXU36Di6-N6JAyhothzz2o,12461
|
22
22
|
pyegeria/commands/cat/get_collection.py,sha256=kXPcP8u-SMWfrVyyBhNoxG8mcgB7EV_5i9N9w_IBU7o,5379
|
@@ -229,7 +229,7 @@ pyegeria/glossary_browser_omvs.py,sha256=hOQJ1ipVfzAqS7UvHCJtKhG5MfpYNJfWk5zk_yK
|
|
229
229
|
pyegeria/glossary_manager_omvs.py,sha256=JMgvbockir-D1Y9pKKlPg4a9qlRwWAS_7B9wBMcCPnA,66820
|
230
230
|
pyegeria/m_test.py,sha256=M5-M2ZczsAJLXWfSeqTTADHdx6Ku-y4PbQ4M21JthAE,7778
|
231
231
|
pyegeria/md_processing_helpers.py,sha256=sV-ciVg_xOGVGTH_CMpH2B5k3V5jzdFp_XvnQQ5xafw,2131
|
232
|
-
pyegeria/md_processing_utils.py,sha256=
|
232
|
+
pyegeria/md_processing_utils.py,sha256=lxul-3ryNv3xx86j6ov84eEbgO43KndDr6Sl4CV2QxY,68441
|
233
233
|
pyegeria/md_processing_utils_orig.py,sha256=WGoVpsV03wwgv9YwDDHZ0EO4-opN8BdoISt4ZhkYGuQ,52492
|
234
234
|
pyegeria/mermaid_utilities.py,sha256=sQqdFUWdNpHu9d3Tk9UVe80M-5bOzses0XcFYX5FF-E,54254
|
235
235
|
pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
|
@@ -245,8 +245,8 @@ pyegeria/template_manager_omvs.py,sha256=PfJ9dOfmBvf59DgRdZ9Dl1Kl_UYqjF-JncXVnbC
|
|
245
245
|
pyegeria/utils.py,sha256=GCt1C0bp0Xng1ahzbZhzV9qQwH7Dj93IaCt2dvWb-sg,5417
|
246
246
|
pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
|
247
247
|
pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
|
248
|
-
pyegeria-5.3.8.
|
249
|
-
pyegeria-5.3.8.
|
250
|
-
pyegeria-5.3.8.
|
251
|
-
pyegeria-5.3.8.
|
252
|
-
pyegeria-5.3.8.
|
248
|
+
pyegeria-5.3.8.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
249
|
+
pyegeria-5.3.8.2.dist-info/METADATA,sha256=WqXNrVeFnKJPkc9WwF3R_MT4b_tfQKwHKgmYTwFI8XE,2740
|
250
|
+
pyegeria-5.3.8.2.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
251
|
+
pyegeria-5.3.8.2.dist-info/entry_points.txt,sha256=eAvQ_vkejlF3JzMzEc5VD93ymLA_hSFV0HM8fntG-d8,6791
|
252
|
+
pyegeria-5.3.8.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|