pyegeria 5.3.10__py3-none-any.whl → 5.4.0.dev3__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 (47) hide show
  1. commands/cat/debug_log.2025-06-05_20-24-18_123924.log.zip +0 -0
  2. commands/cat/debug_log.2025-06-10_08-45-03_929921.log.zip +0 -0
  3. commands/cat/debug_log.2025-06-11_09-57-21_247890.log.zip +0 -0
  4. commands/cat/debug_log.2025-06-12_16-14-31_212042.log.zip +0 -0
  5. commands/cat/debug_log.log +1267 -0
  6. commands/cat/dr_egeria_md.py +32 -5
  7. commands/cat/list_collections.py +10 -4
  8. commands/cat/list_data_designer.py +172 -0
  9. commands/cat/solution_architect_log.log +0 -0
  10. md_processing/__init__.py +7 -2
  11. md_processing/data/commands.json +4666 -848
  12. md_processing/dr_egeria_inbox/data_designer_search_test.md +11 -0
  13. md_processing/dr_egeria_inbox/data_test.md +106 -13
  14. md_processing/dr_egeria_inbox/data_test2.md +376 -0
  15. md_processing/dr_egeria_inbox/{search_test.md → glossary_search_test.md} +1 -0
  16. md_processing/dr_egeria_inbox/solution-components.md +66 -91
  17. md_processing/md_commands/data_designer_commands.py +840 -557
  18. md_processing/md_commands/solution_architect_commands.py +985 -0
  19. md_processing/md_processing_utils/common_md_proc_utils.py +262 -89
  20. md_processing/md_processing_utils/common_md_utils.py +11 -4
  21. md_processing/md_processing_utils/md_processing_constants.py +18 -16
  22. pyegeria/_client.py +39 -0
  23. pyegeria/classification_manager_omvs.py +1 -1
  24. pyegeria/collection_manager_omvs.py +248 -188
  25. pyegeria/data_designer_omvs.py +217 -9
  26. pyegeria/governance_officer_omvs.py +2349 -0
  27. pyegeria/output_formatter.py +24 -12
  28. pyegeria/solution_architect_omvs.py +4219 -1084
  29. pyegeria/utils.py +15 -2
  30. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev3.dist-info}/METADATA +2 -1
  31. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev3.dist-info}/RECORD +35 -36
  32. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev3.dist-info}/entry_points.txt +4 -0
  33. md_processing/dr_egeria_outbox/processed-2025-05-15 19:52-data_test.md +0 -94
  34. md_processing/dr_egeria_outbox/processed-2025-05-16 07:39-data_test.md +0 -88
  35. md_processing/dr_egeria_outbox/processed-2025-05-17 16:01-data_field.md +0 -56
  36. md_processing/dr_egeria_outbox/processed-2025-05-18 15:51-data_test.md +0 -103
  37. md_processing/dr_egeria_outbox/processed-2025-05-18 16:47-data_test.md +0 -94
  38. md_processing/dr_egeria_outbox/processed-2025-05-19 07:14-data_test.md +0 -96
  39. md_processing/dr_egeria_outbox/processed-2025-05-19 07:20-data_test.md +0 -100
  40. md_processing/dr_egeria_outbox/processed-2025-05-19 07:22-data_test.md +0 -88
  41. md_processing/dr_egeria_outbox/processed-2025-05-19 09:26-data_test.md +0 -91
  42. md_processing/dr_egeria_outbox/processed-2025-05-19 10:27-data_test.md +0 -91
  43. md_processing/dr_egeria_outbox/processed-2025-05-19 14:04-data_test.md +0 -91
  44. md_processing/md_commands/blueprint_commands.py +0 -303
  45. /commands/cat/{list_data_structures.py → list_data_structures_full.py} +0 -0
  46. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev3.dist-info}/LICENSE +0 -0
  47. {pyegeria-5.3.10.dist-info → pyegeria-5.4.0.dev3.dist-info}/WHEEL +0 -0
pyegeria/utils.py CHANGED
@@ -179,6 +179,7 @@ def get_last_guid(guids):
179
179
 
180
180
  def body_slimmer(body: dict) -> dict:
181
181
  """body_slimmer is a little function to remove unused keys from a dict
182
+ and recursively slim embedded dicts
182
183
 
183
184
  Parameters
184
185
  ----------
@@ -187,9 +188,21 @@ def body_slimmer(body: dict) -> dict:
187
188
  Returns
188
189
  -------
189
190
  dict:
190
- a slimmed body
191
+ a slimmed body with all embedded dictionaries also slimmed
191
192
  """
192
- slimmed = {key: value for key, value in body.items() if value}
193
+ if body is None:
194
+ return {}
195
+
196
+ slimmed = {}
197
+ for key, value in body.items():
198
+ if value:
199
+ if isinstance(value, dict):
200
+ # Recursively slim embedded dictionaries
201
+ slimmed_value = body_slimmer(value)
202
+ if slimmed_value: # Only include non-empty dictionaries
203
+ slimmed[key] = slimmed_value
204
+ else:
205
+ slimmed[key] = value
193
206
  return slimmed
194
207
 
195
208
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyegeria
3
- Version: 5.3.10
3
+ Version: 5.4.0.dev3
4
4
  Summary: A python client for Egeria
5
5
  License: Apache 2.0
6
6
  Keywords: egeria,metadata,governance
@@ -16,6 +16,7 @@ Requires-Dist: click
16
16
  Requires-Dist: httpx
17
17
  Requires-Dist: jupyter
18
18
  Requires-Dist: jupyter-notebook-parser (>=0.1.4,<0.2.0)
19
+ Requires-Dist: loguru (>=0.7.3,<0.8.0)
19
20
  Requires-Dist: mermaid-py
20
21
  Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0)
21
22
  Requires-Dist: pytest (>=8.3.5,<9.0.0)
@@ -2,8 +2,13 @@ commands/cat/.DS_Store,sha256=RY8U0pzFVjHVb0B2edAfhmtpMWmKhR-YSI4WoPy4apc,6148
2
2
  commands/cat/Dr-Egeria_md-orig.py,sha256=ZX20BvRo0fIFisvy5Z-VJDLVyKbQoud89-CUV2S66tU,7336
3
3
  commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
4
4
  commands/cat/__init__.py,sha256=Ps4MxYlYN-ZX1qaSTFwnqgDZTaqUkN35JTOpZ1TBD1Q,451
5
+ commands/cat/debug_log.2025-06-05_20-24-18_123924.log.zip,sha256=3dFYhY4odrEdMK4Q4N8BCE3_bE1Z2DnuSpwiKspfJFA,27178
6
+ commands/cat/debug_log.2025-06-10_08-45-03_929921.log.zip,sha256=l941eD7-V2pz285MpxJjvshyA0A974fKQ06j0nenqCI,59582
7
+ commands/cat/debug_log.2025-06-11_09-57-21_247890.log.zip,sha256=ZdLKjVAX6k3nhuhSk0Y06sLYO6k2ltLzao7Qq47tK4Q,18100
8
+ commands/cat/debug_log.2025-06-12_16-14-31_212042.log.zip,sha256=yKICViTcbK1tbmlHDBWGq-2tEJxXkMoLf_kwpmPcDMo,3378
9
+ commands/cat/debug_log.log,sha256=UK1dfhaFiLT7M0t2n4XSlMmT80181aAazJ5WCAFz2l4,105673
5
10
  commands/cat/dr_egeria_jupyter.py,sha256=rfLVV_84Q8Pqcq1flmijKvZ7sEZFy7JAcAP_NAbb46Y,5656
6
- commands/cat/dr_egeria_md.py,sha256=bEi2toFazJPiy6ZM2zRbvr_IfhiA1JOcunpwCfrEVsU,13408
11
+ commands/cat/dr_egeria_md.py,sha256=Eqw_6aSkGL8l3RseC2hOnU672aYg6ijPOr7ItZCakMA,15829
7
12
  commands/cat/exp_list_glossaries.py,sha256=dC6Bnfm3YSMTKPP146qeslIFRiZnGu5b7iDYE07p4iU,5817
8
13
  commands/cat/get_asset_graph.py,sha256=xnXJfpDTVH1TJ2TwE3dtjaXU36Di6-N6JAyhothzz2o,12461
9
14
  commands/cat/get_collection.py,sha256=kXPcP8u-SMWfrVyyBhNoxG8mcgB7EV_5i9N9w_IBU7o,5379
@@ -14,8 +19,9 @@ commands/cat/glossary_actions.py,sha256=zK26fNiv-lpWUP8tHC3wTmdQ6L0_XxlmuNGUyrnS
14
19
  commands/cat/list_assets.py,sha256=CdJ2coKvvQv2VwJO0Sp9Eg9Fu_uvpC21tgjrdtT9Yz4,6315
15
20
  commands/cat/list_categories.py,sha256=DTKE3yrt3N2EIjCGscxrz-pSREqmch7aFqsVFm-3u7o,7841
16
21
  commands/cat/list_cert_types.py,sha256=HmrTks0SSYgSMsYz3LqfX5kwDQ6D9KMcynoR_xlWtnE,7137
17
- commands/cat/list_collections.py,sha256=fOtMoX71DeSW9ci7KErJ9KR4-rPIHdJESZ0mCTFjCXY,7967
18
- commands/cat/list_data_structures.py,sha256=E9PY_AU1lzGSqUwy711Bjd5uMfV41kpmNPzhdf0nZjs,8642
22
+ commands/cat/list_collections.py,sha256=oO7AZcaZeLJ5dAcOTZJMpQyP9BugBbQPO8oq4EtgcP8,8318
23
+ commands/cat/list_data_designer.py,sha256=_RGkjNGVjjJeAmnsCOgLn-sef5XELQ1HlH6k52GICno,6319
24
+ commands/cat/list_data_structures_full.py,sha256=E9PY_AU1lzGSqUwy711Bjd5uMfV41kpmNPzhdf0nZjs,8642
19
25
  commands/cat/list_deployed_catalogs.py,sha256=VdN6R9kRVWX-fGIgubOigvMVPzhF-hKQepHHlS-w-D8,8258
20
26
  commands/cat/list_deployed_database_schemas.py,sha256=1Qicke1R2_7Xi3Qf5sp8KJ3_reAIt0z1iaz2sG8Z0Qs,9458
21
27
  commands/cat/list_deployed_databases.py,sha256=ryrBW1CxJRfOeLP978qQwxb5oImqhIsHghtcpWeBIrw,7587
@@ -27,6 +33,7 @@ commands/cat/list_tech_types.py,sha256=uqZcXHCzAznhEG6WWeM5j-spwUh8ycygFqpVDeXOG
27
33
  commands/cat/list_terms.py,sha256=ndl99V6NbJtlV3xqIGWhif1R8tW6emEVYYos0dkydwE,12076
28
34
  commands/cat/list_todos.py,sha256=NitCw0uyVVjmN1hxb1W-I4FbOsa8wQxW2ICyOElHyc8,6556
29
35
  commands/cat/list_user_ids.py,sha256=X5Q-YNEp38saPYDuy9VwdQC5Qpa4HyC3WvAdbyp_P6M,5108
36
+ commands/cat/solution_architect_log.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
37
  commands/cli/__init__.py,sha256=E6vPW3P3iuVPyrwtDIWvU9P0JXOGqP8KupeIZdxc6wc,298
31
38
  commands/cli/egeria.py,sha256=CKqJiwu44Ya6IgFPgjVpoP2kUZmohrIqXs4SiM1ckHo,52096
32
39
  commands/cli/egeria_cat.py,sha256=HqmtUpSX1pXiItVQC0zGEXzHdw_y_-rzy4W8dWJof8M,18143
@@ -93,8 +100,8 @@ commands/tech/list_tech_templates.py,sha256=5hhDJJjrqGyWDPPcFzFeFs-4rsal1M2Bl7EU
93
100
  commands/tech/list_valid_metadata_values.py,sha256=_zgOdq2N6s7GjLd8iEc5xVfplKfOnKZ-ySM-lSdgYn8,6315
94
101
  commands/tech/table_tech_templates.py,sha256=jI1c9YKa3KirArMNXeCRKeaiVdwQSN-ztPqkag6jdZs,9500
95
102
  commands/tech/x_list_related_elements.py,sha256=ynaw792VnbMZ9IXBi5mmG7xBfC0kn0esKiFTsjvLGzc,5900
96
- md_processing/__init__.py,sha256=f1L8o0ewh3YdTm4tinuUyMBQ0PNnCe7kPRPLeVznD6o,4611
97
- md_processing/data/commands.json,sha256=sRqtASsOSoQBuiscVjbsG_-TOYtDFBgGzeCElB0QHvc,109916
103
+ md_processing/__init__.py,sha256=c0m0rak6b5ReJO4N8jx8GpGWh6c301vcVxzNbq8jQAA,5089
104
+ md_processing/data/commands.json,sha256=8LGGMDWnmpVq53oE6FbWoqM91Or94ZFxwpa7AJUKPkw,235726
98
105
  md_processing/dr_egeria_inbox/archive/dr_egeria_intro.md,sha256=25iXGRIkGUiDbfop8Rpd-QRdsjmI3Jo-S4yzfzAmeDE,8549
99
106
  md_processing/dr_egeria_inbox/archive/dr_egeria_intro_more_terms.md,sha256=WY33hougDWyrDRtk8-4Sm2z4CNHG6u1jKNUZX_QbpG8,27000
100
107
  md_processing/dr_egeria_inbox/archive/dr_egeria_intro_part1.md,sha256=gI1DmLfqUI9FtVVynYJe0NqSr4PJ0Ej--BXetyA49js,9871
@@ -105,62 +112,53 @@ md_processing/dr_egeria_inbox/archive/freddie_intro.md,sha256=7srXdwdVO4phWSp0nh
105
112
  md_processing/dr_egeria_inbox/archive/freddie_intro_orig.md,sha256=JRfOtByc57-En5rp5z-g1l93FIbem3ST7plItWr6IKY,7067
106
113
  md_processing/dr_egeria_inbox/archive/test-term.md,sha256=9XKBBrpgMBbXB-DRVgyhR4lwy4Z3zX1Tp9H601y06qs,1529
107
114
  md_processing/dr_egeria_inbox/cat_test.md,sha256=Xcz8Qwak-TEj-JnXoqZTpX3sy501tRqvFVllB14QX6w,1068
115
+ md_processing/dr_egeria_inbox/data_designer_search_test.md,sha256=Fn0GJYShbA9sMn_q1iipg9P5f8C5RuTZ-XLF2mQQusA,73
108
116
  md_processing/dr_egeria_inbox/data_field.md,sha256=jbjihghaBRAd_14n3LO1-vGCPzS3aNpNrntv1eCLKXY,702
109
117
  md_processing/dr_egeria_inbox/data_spec.md,sha256=3VrV2pf0czFzYcWonn5L5W1NZG1CgSBViI0m1y0NBFA,1119
110
118
  md_processing/dr_egeria_inbox/data_spec_test.md,sha256=pSRtK0l0vygBv63rsy1Jq7FfyFqa1WQxolhIor0uWCc,16838
111
- md_processing/dr_egeria_inbox/data_test.md,sha256=nPIvnNNKbwegAWtsSBdko4A9DkhLFES5eBLKCweSDOs,1178
119
+ md_processing/dr_egeria_inbox/data_test.md,sha256=PNLCMXEjTl3gW7LodpGgGgM2XVT0aXcDSqNgSTq1P_I,2802
120
+ md_processing/dr_egeria_inbox/data_test2.md,sha256=QVf859O7gm8l40Krb5p5oOYWA0DlGiEAR2-xn0onef4,4745
112
121
  md_processing/dr_egeria_inbox/dr_egeria_intro_categories.md,sha256=LcsXBuzL_I7972WRXs7-SGMZTfuYVWPtfTVIm995wuk,5557
113
122
  md_processing/dr_egeria_inbox/dr_egeria_intro_part1.md,sha256=0nWv-AAfdkoliy6i0xcwGb-LUb7c_BhU2qi7CssP1L0,10415
114
123
  md_processing/dr_egeria_inbox/dr_egeria_intro_part2.md,sha256=9Zp04P4zNHxvviy8dJgjEB0AyYB9VwVG05POzlFnvEk,15388
115
124
  md_processing/dr_egeria_inbox/dr_egeria_intro_part3.md,sha256=ujoKrf54EOJ9Z32QWneWJL8f6gZ32GxCdG76cYCvwBk,40559
116
125
  md_processing/dr_egeria_inbox/dr_egeria_isc1.md,sha256=22mus2pnS55P_LTcnE6AnjSYjnEOB7XhLqEDue4oOIM,449
117
126
  md_processing/dr_egeria_inbox/glossary_creation_experiment.ipynb,sha256=dbzNu90fCKNohOWVSRBOB1GLyd95x8Qw51I5AkaPtso,11552
127
+ md_processing/dr_egeria_inbox/glossary_search_test.md,sha256=AC_hyZHizAaqBp0yGK1WLyxkorxcWg8eKZlGHFGWQxE,294
118
128
  md_processing/dr_egeria_inbox/glossary_test1.md,sha256=H92jI2i25yXrHTQLfT-o5K4BL86Vn-pyJNsQbFwWCZE,4771
119
129
  md_processing/dr_egeria_inbox/rel.md,sha256=stIzGh1FTXuCW_GniFKS1_mtmQPTwA1a1OmYeP5TszQ,97
120
130
  md_processing/dr_egeria_inbox/sb.md,sha256=aY5QlVMxi5lh91ttr8bMCbl2z4qmsIN6XJ4SojFz8VU,1945
121
- md_processing/dr_egeria_inbox/search_test.md,sha256=z48ds18XYrdvM8Z2nHwTUQp11epvdqLG4dI7UBsjlIQ,293
122
- md_processing/dr_egeria_inbox/solution-components.md,sha256=RA57S2C_enXDm_d77Og2bzvsydMATY0-xjzwp6td7qI,2989
131
+ md_processing/dr_egeria_inbox/solution-components.md,sha256=jr6WeNWE2tTRWesEJc6Gmylx1nObKHyD_bcilAVwems,2126
123
132
  md_processing/dr_egeria_inbox/solution_blueprints.md,sha256=9__-MhIf7u4am_YtV3UsMSKocqzoJrg8qTpmBo0rJUQ,2018
124
133
  md_processing/dr_egeria_inbox/synonym_test.md,sha256=lUAfT8E5gT4ml7gMI_G_nB3gsnimuaUEB6crMar3-8w,430
125
134
  md_processing/dr_egeria_inbox/t1.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
135
  md_processing/dr_egeria_inbox/t2.md,sha256=FP9xUKlP89Y92_9YESChyglS6r8YgvBGgPMTSWI7m_E,6950
127
- md_processing/dr_egeria_outbox/processed-2025-05-15 19:52-data_test.md,sha256=TMXcpBUl9hSbI65BNf4HkCSlEJiQXfkBlXmm7oKQ-xc,1413
128
- md_processing/dr_egeria_outbox/processed-2025-05-16 07:39-data_test.md,sha256=zFs-cJva6F4GzbR-X9tiAljbFjVnXPCMM-tWrGv6rOY,1284
129
- md_processing/dr_egeria_outbox/processed-2025-05-17 16:01-data_field.md,sha256=e5WcI6y-bgn6e43DGoLvg2X7g5pJWUWE4_zQb_crGIA,574
130
- md_processing/dr_egeria_outbox/processed-2025-05-18 15:51-data_test.md,sha256=wUxzKTewTxIwfJvtBhQfa2N923o4hIIxS3udU3jG_II,1535
131
- md_processing/dr_egeria_outbox/processed-2025-05-18 16:47-data_test.md,sha256=bhTobhB5ZYG2NLWo2GVjuJ7t6H61x7DKMFcTM8Twsr4,1284
132
- md_processing/dr_egeria_outbox/processed-2025-05-19 07:14-data_test.md,sha256=UdNYXbkNchtqZuQ8rRTtN22DFVietuSdyzB9KKvV7bY,1529
133
- md_processing/dr_egeria_outbox/processed-2025-05-19 07:20-data_test.md,sha256=JjUEgVlRW1NmHIjg3uCKTf1a8OIUXEtHEJhGn7kyb58,1525
134
- md_processing/dr_egeria_outbox/processed-2025-05-19 07:22-data_test.md,sha256=nNKDdZimvmi3QrktkeJdhhfxnU_MNLhnUnzwTnXZ_4M,1284
135
- md_processing/dr_egeria_outbox/processed-2025-05-19 09:26-data_test.md,sha256=OiBMX1IE0b7FBVE1lmcCo93Nn0kTrgcGj8Gql9jtoPw,1286
136
- md_processing/dr_egeria_outbox/processed-2025-05-19 10:27-data_test.md,sha256=V-4zCLm4JvfptxZyUEzArwgStWeRvSpB5qmcTItOcIA,1286
137
- md_processing/dr_egeria_outbox/processed-2025-05-19 14:04-data_test.md,sha256=mKZOkAx2d_8_jqnR21VXNO4xBDc1wBwnPtPtF-UzfiU,1286
138
136
  md_processing/md_commands/__init__.py,sha256=ssEojzFlSYtY2bHqqOoKo8PFaANZ_kq_gIbtlXnuc2s,93
139
- md_processing/md_commands/blueprint_commands.py,sha256=ZiZYK3FqOBTmnVr-mMiD-sj3N4ZMkMPzcJS4q-zoTUk,14889
140
- md_processing/md_commands/data_designer_commands.py,sha256=8zaJItRZxfdmTaNDxFD3IRpXqQ-DgI3xav8vOoonID4,60816
137
+ md_processing/md_commands/data_designer_commands.py,sha256=jlxXW5C7Xqw4ulL9wtpJgR33yMplFlZffIlU5njD8b4,80490
141
138
  md_processing/md_commands/glossary_commands.py,sha256=c4o0MTsdtTTMkPk5LNBgDnCI8PqQn_y_wkcuEYL59yg,54852
142
139
  md_processing/md_commands/project_commands.py,sha256=d4kF-ldz6vqZy50ajxWLoupZs4wJvBShJScDqfH8O4U,8050
140
+ md_processing/md_commands/solution_architect_commands.py,sha256=k03Abg8kfQ3mqitX8yy6Ax30pTt4iaheqIdxGLjUmbI,51006
143
141
  md_processing/md_processing_utils/__init__.py,sha256=LxAmxlcji26ziKV4gGar01d95gL9vgToRIeJW8N-Ifs,80
144
- md_processing/md_processing_utils/common_md_proc_utils.py,sha256=vIjifi4vvdKRuM3zCwq8SPyoN84GO4RC0ucWQA5OkUc,33712
145
- md_processing/md_processing_utils/common_md_utils.py,sha256=3caJTJL8wxlFOIKPgL-BMxT9ap60EAYKw6cpBziRYYA,5450
142
+ md_processing/md_processing_utils/common_md_proc_utils.py,sha256=fS4PCczYKyI89dHh3sqCzsHiT_n1swGfw6Fq9t2nuHU,41456
143
+ md_processing/md_processing_utils/common_md_utils.py,sha256=GQ4FKJ3n_NckFgoGwE7FIlmYqaWClaFJ-1aK3PxiPy8,5850
146
144
  md_processing/md_processing_utils/extraction_utils.py,sha256=780oJsXvW50kX2d64FQIwJQTigQuNiLVRitAEzComQM,20066
147
- md_processing/md_processing_utils/md_processing_constants.py,sha256=HCVD3polwE-yfWzudm26kv6RSh9YrH7SCidHat1oMd4,6233
145
+ md_processing/md_processing_utils/md_processing_constants.py,sha256=awUmHamEB-LdcjjmpGdIb0y8dEkXWJNL_g7UUIg182M,6648
148
146
  md_processing/md_processing_utils/message_constants.py,sha256=UBf18obM83umM6zplR7ychre4xLRbBnTzidHDZ2gNvM,548
149
147
  pyegeria/.DS_Store,sha256=aExDotxdVFK-8C6Es8SJjvtOsGrm-SknQULFzsFDZCQ,6148
150
148
  pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
151
149
  pyegeria/__init__.py,sha256=NgPs08IQIH25GlvFXjPGDxKB6ln44lAS0EWHg4LJSh4,30874
152
- pyegeria/_client.py,sha256=JxKPwpq8Q9ZzgFGRiMu1Z426zSpgEM4TXzZMex-STB0,32023
150
+ pyegeria/_client.py,sha256=tG2rchGpBkK7Y3K6KGAYBaQhVKvVuTo2gUTzNjd9uhI,33383
153
151
  pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
154
152
  pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
155
153
  pyegeria/_globals.py,sha256=LQftrioc75zTsDUvAu1aRM3-a5hdPNVgTkoVN7GH_kY,1056
156
154
  pyegeria/_validators.py,sha256=vP9nuZwucnCo_LrPU7hkitpWzaych5bTZEKE58TaTnQ,12726
157
155
  pyegeria/asset_catalog_omvs.py,sha256=P6FceMP0FgakGSOt3ePxpEbsF7nnypzo1aQahjdL_94,29021
158
156
  pyegeria/automated_curation_omvs.py,sha256=tzwCyXL0Hx8UjryBBWcPoEuBRajXZpLuwPQ1vuOg2yc,130349
159
- pyegeria/classification_manager_omvs.py,sha256=n55-62Mby-_5pxPGaz3nkjM9NWlY4PzSl3tP0WSnGJU,187212
160
- pyegeria/collection_manager_omvs.py,sha256=Z5Eu_s7l0k5ESzMxUUuasxgT-h1HtZV1b38jZ6BTE_I,120281
157
+ pyegeria/classification_manager_omvs.py,sha256=EBWjdx_C999bRu2-INL8RZxZ-wz92mzVqVBQ6mkyGM0,187228
158
+ pyegeria/collection_manager_omvs.py,sha256=Mz-DPXBI2fuxWQOPmtMdjXE6tMsIJnnzAazP1A5YXwc,128456
161
159
  pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
162
160
  pyegeria/create_tech_guid_lists.py,sha256=hf5q8Xrdsz-bqeIW3yTORZ1XB6_BrKzLDWWwC_bNG2g,4811
163
- pyegeria/data_designer_omvs.py,sha256=pCiD5KPuvIktuS3Sm_lfMhW1PI7UT29bqDFNmTUMe5Q,186076
161
+ pyegeria/data_designer_omvs.py,sha256=EM931M_dl4ULis2n1Oegbp-kxkp5gR81TG0x4MygtDs,196559
164
162
  pyegeria/dr.egeria spec.md,sha256=QC_z3EqJ0WW18NYQFW_AtqO4SMWH5MJNVmM--54VzX4,959
165
163
  pyegeria/egeria_cat_client.py,sha256=d8dQNPLzL4efi99OJfH1T-Rt1N0k9Rf9LX8LpuhiFls,2179
166
164
  pyegeria/egeria_client.py,sha256=egGv41eb94P_lWIQ54I_90WT_IukJ_J6ZLOYCHpx2js,4676
@@ -171,6 +169,7 @@ pyegeria/feedback_manager_omvs.py,sha256=0xBs0p54vmdfVYYgQ8pOanLC4fxfgTk1Z61Y6D1
171
169
  pyegeria/full_omag_server_config.py,sha256=CQqLCy_3DZFvJZEOcGf50HWdFaWpiAIs6z-kKyjvpDA,47464
172
170
  pyegeria/glossary_browser_omvs.py,sha256=j6CJt1_O42OT3bVzwwiAoqsCtH5urC5zfghEl0tO8Vg,167000
173
171
  pyegeria/glossary_manager_omvs.py,sha256=aGYZFuzWrPmPLLNwkNpV7-FsalqwDR7gyBzgdubnM04,87989
172
+ pyegeria/governance_officer_omvs.py,sha256=4vPDK7PjPvm81jRaCNvOzvqMe88Q0g7Qc2e6-tbw8lg,86333
174
173
  pyegeria/m_test.py,sha256=M5-M2ZczsAJLXWfSeqTTADHdx6Ku-y4PbQ4M21JthAE,7778
175
174
  pyegeria/md_processing_helpers.py,sha256=xlQuK5eP_PJqUdy4BScQ97NyBD95jMS3EUg0wK5CsZo,2137
176
175
  pyegeria/md_processing_utils.py,sha256=KRESCqAYjCgHRAdhHH49lLDDhaq740CUlqTG0bN-6Oo,99119
@@ -178,19 +177,19 @@ pyegeria/md_processing_utils_orig.py,sha256=SToZtXQiysi2_vmIY4-T2NIELRirzQ1zjkho
178
177
  pyegeria/mermaid_utilities.py,sha256=Zcn8JRrqtf62oHoxuvP9tQ5G-BFxOGMNfr7-peuykgY,54290
179
178
  pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
180
179
  pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
181
- pyegeria/output_formatter.py,sha256=_4BxCNjzdSa6sda_0qSH52vxxK_npMKtkN2JN_-iwF4,15097
180
+ pyegeria/output_formatter.py,sha256=634FbHs_l7AX33kBGwv0Gh1B5NV_cyhOOxT6p3uGzlA,15603
182
181
  pyegeria/platform_services.py,sha256=YEpZsGGsbSdesN8ceyFhV0OMzKG6znTZrREMTRimLps,41701
183
182
  pyegeria/project_manager_omvs.py,sha256=612rYbu2eLR8Sgv9nBzjkFJ2PuxIBd_b-zwcnpVbXhc,70665
184
183
  pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
185
184
  pyegeria/runtime_manager_omvs.py,sha256=Z5wY9ignNjil8O6yjihZftxkGoh9A4PQDcXhoIsOIT8,79698
186
185
  pyegeria/server_operations.py,sha256=5k0KVz3u8qRLwtz16zT3J86LZY3pkUrMDcps8srmq1A,16831
187
- pyegeria/solution_architect_omvs.py,sha256=-PrmNGOVbiIniud328PQ3VY6GF9OPxC9OV8hlLhZZmk,87384
186
+ pyegeria/solution_architect_omvs.py,sha256=eskhA9dkH7X4LcZTebMQE9fkKNhsWOAuKe5HHIhC8Og,204696
188
187
  pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDTM-rQ,42755
189
- pyegeria/utils.py,sha256=GCt1C0bp0Xng1ahzbZhzV9qQwH7Dj93IaCt2dvWb-sg,5417
188
+ pyegeria/utils.py,sha256=fhSN5yOb3-Yelwt9WpBkWRmP5u7I9Jr-M27H0dD-G14,5871
190
189
  pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
191
190
  pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
192
- pyegeria-5.3.10.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
193
- pyegeria-5.3.10.dist-info/METADATA,sha256=jK8pHyHmlXaauLTJuS4traYtN_wz5s5zjXXQ2sRP_Hg,2756
194
- pyegeria-5.3.10.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
195
- pyegeria-5.3.10.dist-info/entry_points.txt,sha256=t-jdafZ1zTF11pehQeRmmXrnzbaH2zKSiQPu2GfD-Eo,5987
196
- pyegeria-5.3.10.dist-info/RECORD,,
191
+ pyegeria-5.4.0.dev3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
192
+ pyegeria-5.4.0.dev3.dist-info/METADATA,sha256=FpIEeRR6K1-dzmw_g_la-xg4vr7mlPNhZ_jovaC8oyM,2799
193
+ pyegeria-5.4.0.dev3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
194
+ pyegeria-5.4.0.dev3.dist-info/entry_points.txt,sha256=UigZmPobfP9Rkz3PfjWUrJbKjImUeX00iOz6lR_wP5Q,6247
195
+ pyegeria-5.4.0.dev3.dist-info/RECORD,,
@@ -37,6 +37,10 @@ list_catalog_targets=commands.ops.list_catalog_targets:main
37
37
  list_categories=commands.cat.list_categories:main
38
38
  list_cert_types=commands.cat.list_cert_types:main
39
39
  list_collections=commands.cat.list_collections:main
40
+ list_data_classes=commands.cat.list_data_designer:main_classes
41
+ list_data_fields=commands.cat.list_data_designer:main_fields
42
+ list_data_structures=commands.cat.list_data_designer:main_structs
43
+ list_data_structures_full=commands.cat.list_data_structures_full:main
40
44
  list_deployed_catalogs=commands.cat.list_deployed_catalogs:main
41
45
  list_deployed_databases=commands.cat.list_deployed_databases:main
42
46
  list_deployed_schemas=commands.cat.list_deployed_database_schemas:main
@@ -1,94 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
-
7
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
8
-
9
- # foo Update Data Specification
10
-
11
- ## Data Specification
12
-
13
-
14
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
15
- >woof
16
- ## Description
17
- >Meow -
18
-
19
- Principle data requirements for Teddy Bear Drop Foot Clinical Trial.
20
-
21
-
22
-
23
-
24
- # Fpp Create Data Dictionary
25
- ## Name
26
- Clinical Trial Data Dictionary
27
-
28
- ## Description
29
- A data dictionary for clinical trial data elements.
30
-
31
-
32
-
33
-
34
- ___
35
-
36
-
37
-
38
- TBDF-Incoming Weekly Measurement Data
39
-
40
-
41
- # Update Data Structure Form - created at 2025-05-15 19:52
42
- Data Structure found from the search string: `<class 'filter'>`
43
-
44
- # Update Data Structure
45
-
46
- ## Data Structure Name
47
-
48
- TBDF-Incoming Weekly Measurement Data
49
-
50
- ## Description
51
- This describes the weekly measurement data for each patient for the Teddy Bear drop foot clinical trial
52
-
53
- ## Qualified Name
54
- DataStruct::TBDF-Incoming Weekly Measurement Data
55
-
56
- ## Namespace
57
-
58
-
59
- ## Version Identifier
60
-
61
-
62
- ## Guid
63
- d71c7ee2-b414-4c8f-bf9b-b16bd3601855
64
-
65
-
66
-
67
- WWT-Incoming Weekly Measurement Data
68
-
69
- # Foo Update Data Structure
70
-
71
- ## Qualified Name
72
- DataStruct::WWT-Incoming Weekly Measurement Data
73
-
74
- ## GUID
75
- ae221834-a3a6-4f32-ac94-110dff761b49
76
-
77
- ## Data Structure
78
-
79
- WWT-Incoming Weekly Measurement Data
80
-
81
-
82
- ## Description
83
- A collection of data fields that form a data structure.
84
-
85
-
86
- ## In Data Specification
87
-
88
-
89
-
90
- ## Qualified Name
91
-
92
- # Provenance
93
-
94
- * Results from processing file data_test.md on 2025-05-15 19:52
@@ -1,88 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
-
7
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
8
-
9
- # foo Update Data Specification
10
-
11
- ## Data Specification
12
-
13
-
14
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
15
- >woof
16
- ## Description
17
- >Meow -
18
-
19
- Principle data requirements for Teddy Bear Drop Foot Clinical Trial.
20
-
21
-
22
-
23
-
24
- # Fpp Create Data Dictionary
25
- ## Name
26
- Clinical Trial Data Dictionary
27
-
28
- ## Description
29
- A data dictionary for clinical trial data elements.
30
-
31
-
32
-
33
-
34
- ___
35
-
36
-
37
-
38
- TBDF-Incoming Weekly Measurement Data
39
-
40
- # Update Data Structure
41
-
42
- ## GUID
43
- d71c7ee2-b414-4c8f-bf9b-b16bd3601855
44
-
45
- ## Data Structure
46
-
47
- TBDF-Incoming Weekly Measurement Data
48
-
49
- ## Description
50
- This describes the weekly measurement data for each patient for the Teddy Bear drop foot clinical trial
51
-
52
- ## In Data Specification
53
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
54
-
55
-
56
- ## Qualified Name
57
-
58
-
59
- ___
60
-
61
- WWT-Incoming Weekly Measurement Data
62
-
63
- # Foo Update Data Structure
64
-
65
- ## Qualified Name
66
- DataStruct::WWT-Incoming Weekly Measurement Data
67
-
68
- ## GUID
69
- ae221834-a3a6-4f32-ac94-110dff761b49
70
-
71
- ## Data Structure
72
-
73
- WWT-Incoming Weekly Measurement Data
74
-
75
-
76
- ## Description
77
- A collection of data fields that form a data structure.
78
-
79
-
80
- ## In Data Specification
81
-
82
-
83
-
84
- ## Qualified Name
85
-
86
- # Provenance
87
-
88
- * Results from processing file data_test.md on 2025-05-16 07:39
@@ -1,56 +0,0 @@
1
-
2
- # Update Collection
3
-
4
- ## Collection Name
5
-
6
-
7
-
8
- ## Description
9
- Angle rotation of the left leg from vertical
10
-
11
- ## Qualified Name
12
- DataField::AngleLeftField
13
-
14
- ## Classifications
15
-
16
-
17
- ## Collection Type
18
-
19
-
20
- ## Guid
21
- 8aa5bef9-3a20-4160-a579-6e63b4db7f67
22
-
23
-
24
-
25
-
26
- # Update Collection
27
-
28
- ## Collection Name
29
-
30
-
31
-
32
- ## Description
33
- Unique identifier of the patient
34
-
35
- ## Qualified Name
36
- DataField::PatientId
37
-
38
- ## Classifications
39
-
40
-
41
- ## Collection Type
42
-
43
-
44
- ## Guid
45
- a698b362-a781-41c6-9e6e-bde6fe3a1737
46
-
47
-
48
-
49
- ## In Data Dictionary
50
-
51
- None
52
-
53
-
54
- # Provenance
55
-
56
- * Results from processing file data_field.md on 2025-05-17 16:01
@@ -1,103 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
-
7
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
8
-
9
- # Create Data Specification
10
-
11
- ## Data Specification
12
-
13
-
14
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
15
- >woof
16
- ## Description
17
- >Meow -
18
-
19
- Principle data requirements for Teddy Bear Drop Foot Clinical Trial.
20
-
21
-
22
-
23
-
24
-
25
- ___
26
-
27
- # Create Data Dictionary
28
- ## Name
29
- Clinical Trial Data Dictionary
30
-
31
- ## Description
32
- A data dictionary for clinical trial data elements.
33
-
34
-
35
-
36
-
37
- ___
38
-
39
- ___
40
-
41
-
42
-
43
-
44
- TBDF-Incoming Weekly Measurement Data
45
-
46
-
47
- # Update Data Structure Form - created at 2025-05-18 15:51
48
- Data Structure found from the search string: `<class 'filter'>`
49
-
50
- # Update Data Structure
51
-
52
- ## Data Structure Name
53
-
54
- TBDF-Incoming Weekly Measurement Data
55
-
56
- ## Description
57
- This describes the weekly measurement data for each patient for the Teddy Bear drop foot clinical trial
58
-
59
- ## Qualified Name
60
- DataStruct::TBDF-Incoming Weekly Measurement Data
61
-
62
- ## Namespace
63
-
64
-
65
- ## Version Identifier
66
-
67
-
68
- ## Guid
69
- 3eb5d206-6d3f-4b61-8f45-d7fbc05a870e
70
-
71
-
72
-
73
- WWT-Incoming Weekly Measurement Data
74
-
75
-
76
- # Update Data Structure Form - created at 2025-05-18 15:51
77
- Data Structure found from the search string: `<class 'filter'>`
78
-
79
- # Update Data Structure
80
-
81
- ## Data Structure Name
82
-
83
- WWT-Incoming Weekly Measurement Data
84
-
85
- ## Description
86
- A collection of data fields that form a data structure.
87
-
88
- ## Qualified Name
89
- DataStruct::WWT-Incoming Weekly Measurement Data
90
-
91
- ## Namespace
92
-
93
-
94
- ## Version Identifier
95
-
96
-
97
- ## Guid
98
- d3c0eb7f-476f-4649-a09c-f8ee39c0dfb9
99
-
100
-
101
- # Provenance
102
-
103
- * Results from processing file data_test.md on 2025-05-18 15:51
@@ -1,94 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
-
7
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
8
-
9
- # Create Data Specification
10
-
11
- ## Data Specification
12
-
13
-
14
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
15
- >woof
16
- ## Description
17
- >Meow -
18
-
19
- Principle data requirements for Teddy Bear Drop Foot Clinical Trial.
20
-
21
-
22
-
23
-
24
-
25
- ___
26
-
27
- # Create Data Dictionary
28
- ## Name
29
- Clinical Trial Data Dictionary
30
-
31
- ## Description
32
- A data dictionary for clinical trial data elements.
33
-
34
-
35
-
36
-
37
- ___
38
-
39
- ___
40
-
41
-
42
-
43
-
44
- TBDF-Incoming Weekly Measurement Data
45
-
46
- # Update Data Structure
47
-
48
- ## GUID
49
- 3eb5d206-6d3f-4b61-8f45-d7fbc05a870e
50
-
51
- ## Data Structure
52
-
53
- TBDF-Incoming Weekly Measurement Data
54
-
55
- ## Description
56
- This describes the weekly measurement data for each patient for the Teddy Bear drop foot clinical trial
57
-
58
- ## In Data Specification
59
- Data Specification for the Teddy Bear Drop Foot Clinical Trial
60
-
61
-
62
- ## Qualified Name
63
-
64
-
65
- ___
66
-
67
- WWT-Incoming Weekly Measurement Data
68
-
69
- # Update Data Structure
70
-
71
- ## Qualified Name
72
- DataStruct::WWT-Incoming Weekly Measurement Data
73
-
74
- ## GUID
75
- ae221834-a3a6-4f32-ac94-110dff761b49
76
-
77
- ## Data Structure
78
-
79
- WWT-Incoming Weekly Measurement Data
80
-
81
-
82
- ## Description
83
- A collection of data fields that form a data structure.
84
-
85
-
86
- ## In Data Specification
87
-
88
-
89
-
90
- ## Qualified Name
91
-
92
- # Provenance
93
-
94
- * Results from processing file data_test.md on 2025-05-18 16:47