pyegeria 5.3.9.9.3__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.

Files changed (272) hide show
  1. commands/__init__.py +24 -0
  2. commands/cat/Dr-Egeria_md-orig.py +2 -2
  3. commands/cat/__init__.py +1 -17
  4. commands/cat/collection_actions.py +197 -0
  5. commands/cat/dr_egeria_command_help.py +372 -0
  6. commands/cat/dr_egeria_jupyter.py +7 -7
  7. commands/cat/dr_egeria_md.py +27 -182
  8. commands/cat/exp_list_glossaries.py +11 -14
  9. commands/cat/get_asset_graph.py +37 -267
  10. commands/cat/{get_collection.py → get_collection_tree.py} +10 -18
  11. commands/cat/get_project_dependencies.py +14 -14
  12. commands/cat/get_project_structure.py +15 -14
  13. commands/cat/get_tech_type_elements.py +16 -116
  14. commands/cat/glossary_actions.py +145 -298
  15. commands/cat/list_assets.py +3 -11
  16. commands/cat/list_cert_types.py +17 -63
  17. commands/cat/list_collections.py +46 -138
  18. commands/cat/list_deployed_catalogs.py +15 -27
  19. commands/cat/list_deployed_database_schemas.py +27 -43
  20. commands/cat/list_deployed_databases.py +16 -31
  21. commands/cat/list_deployed_servers.py +35 -54
  22. commands/cat/list_glossaries.py +18 -17
  23. commands/cat/list_projects.py +10 -12
  24. commands/cat/list_tech_type_elements.py +21 -37
  25. commands/cat/list_tech_types.py +13 -25
  26. commands/cat/list_terms.py +38 -79
  27. commands/cat/list_todos.py +4 -11
  28. commands/cat/list_user_ids.py +3 -10
  29. commands/cat/my_reports.py +559 -0
  30. commands/cat/run_report.py +394 -0
  31. commands/cat/run_report_orig.py +528 -0
  32. commands/cli/egeria.py +222 -247
  33. commands/cli/egeria_cat.py +68 -81
  34. commands/cli/egeria_my.py +13 -0
  35. commands/cli/egeria_ops.py +69 -74
  36. commands/cli/egeria_tech.py +17 -93
  37. commands/cli/ops_config.py +3 -6
  38. commands/{cat/list_categories.py → deprecated/list_data_designer.py} +53 -64
  39. commands/{cat/list_data_structures.py → deprecated/list_data_structures_full.py} +3 -6
  40. commands/deprecated/old_get_asset_graph.py +315 -0
  41. commands/my/__init__.py +0 -2
  42. commands/my/list_my_profile.py +27 -34
  43. commands/my/list_my_roles.py +1 -7
  44. commands/my/monitor_my_todos.py +1 -7
  45. commands/my/monitor_open_todos.py +6 -7
  46. commands/my/todo_actions.py +4 -5
  47. commands/ops/__init__.py +0 -2
  48. commands/ops/gov_server_actions.py +17 -21
  49. commands/ops/list_archives.py +17 -38
  50. commands/ops/list_catalog_targets.py +33 -40
  51. commands/ops/load_archive.py +35 -26
  52. commands/ops/{monitor_engine_activity_c.py → monitor_active_engine_activity.py} +51 -82
  53. commands/ops/{monitor_integ_daemon_status.py → monitor_daemon_status.py} +35 -55
  54. commands/ops/monitor_engine_activity.py +79 -77
  55. commands/ops/{monitor_gov_eng_status.py → monitor_engine_status.py} +10 -7
  56. commands/ops/monitor_platform_status.py +38 -50
  57. commands/ops/monitor_server_startup.py +6 -11
  58. commands/ops/monitor_server_status.py +7 -11
  59. commands/ops/orig_monitor_server_list.py +8 -8
  60. commands/ops/orig_monitor_server_status.py +1 -5
  61. commands/ops/refresh_integration_daemon.py +5 -5
  62. commands/ops/restart_integration_daemon.py +5 -5
  63. commands/ops/table_integ_daemon_status.py +6 -6
  64. commands/ops/x_engine_actions.py +7 -7
  65. commands/tech/__init__.py +0 -2
  66. commands/tech/{generic_actions.py → element_actions.py} +6 -11
  67. commands/tech/get_element_info.py +20 -29
  68. commands/tech/get_guid_info.py +23 -42
  69. commands/tech/get_tech_details.py +20 -35
  70. commands/tech/get_tech_type_template.py +28 -39
  71. commands/tech/list_all_om_type_elements.py +24 -30
  72. commands/tech/list_all_om_type_elements_x.py +22 -28
  73. commands/tech/list_all_related_elements.py +19 -28
  74. commands/tech/list_anchored_elements.py +22 -30
  75. commands/tech/list_asset_types.py +19 -24
  76. commands/tech/list_elements_by_classification_by_property_value.py +26 -32
  77. commands/tech/list_elements_by_property_value.py +19 -25
  78. commands/tech/list_elements_by_property_value_x.py +20 -28
  79. commands/tech/list_elements_for_classification.py +28 -41
  80. commands/tech/list_gov_action_processes.py +16 -27
  81. commands/tech/list_information_supply_chains.py +22 -30
  82. commands/tech/list_registered_services.py +14 -26
  83. commands/tech/list_related_elements_with_prop_value.py +15 -25
  84. commands/tech/list_related_specification.py +1 -4
  85. commands/tech/list_relationship_types.py +15 -25
  86. commands/tech/list_relationships.py +20 -36
  87. commands/tech/list_solution_blueprints.py +28 -33
  88. commands/tech/list_solution_components.py +23 -29
  89. commands/tech/list_solution_roles.py +21 -32
  90. commands/tech/list_tech_templates.py +51 -54
  91. commands/tech/list_valid_metadata_values.py +5 -9
  92. commands/tech/table_tech_templates.py +2 -6
  93. commands/tech/x_list_related_elements.py +1 -4
  94. examples/GeoSpatial Products Example.py +524 -0
  95. examples/Jupyter Notebooks/P-egeria-server-config.ipynb +2137 -0
  96. examples/Jupyter Notebooks/README.md +2 -0
  97. examples/Jupyter Notebooks/common/P-environment-check.ipynb +115 -0
  98. examples/Jupyter Notebooks/common/__init__.py +14 -0
  99. examples/Jupyter Notebooks/common/common-functions.ipynb +4694 -0
  100. examples/Jupyter Notebooks/common/environment-check.ipynb +52 -0
  101. examples/Jupyter Notebooks/common/globals.ipynb +184 -0
  102. examples/Jupyter Notebooks/common/globals.py +154 -0
  103. examples/Jupyter Notebooks/common/orig_globals.py +152 -0
  104. examples/format_sets/all_format_sets.json +910 -0
  105. examples/format_sets/custom_format_sets.json +268 -0
  106. examples/format_sets/subset_format_sets.json +187 -0
  107. examples/format_sets_save_load_example.py +291 -0
  108. examples/jacquard_data_sets.py +129 -0
  109. examples/output_formats_example.py +193 -0
  110. examples/test_jacquard_data_sets.py +54 -0
  111. examples/test_jacquard_data_sets_scenarios.py +94 -0
  112. md_processing/__init__.py +90 -0
  113. md_processing/command_dispatcher.py +33 -0
  114. md_processing/command_mapping.py +221 -0
  115. md_processing/data/commands/commands_data_designer.json +537 -0
  116. md_processing/data/commands/commands_external_reference.json +733 -0
  117. md_processing/data/commands/commands_feedback.json +155 -0
  118. md_processing/data/commands/commands_general.json +204 -0
  119. md_processing/data/commands/commands_glossary.json +218 -0
  120. md_processing/data/commands/commands_governance.json +3678 -0
  121. md_processing/data/commands/commands_product_manager.json +865 -0
  122. md_processing/data/commands/commands_project.json +642 -0
  123. md_processing/data/commands/commands_solution_architect.json +366 -0
  124. md_processing/data/commands.json +17568 -0
  125. md_processing/data/commands_working.json +30641 -0
  126. md_processing/data/gened_report_specs.py +6584 -0
  127. md_processing/data/generated_format_sets.json +6533 -0
  128. md_processing/data/generated_format_sets_old.json +4137 -0
  129. md_processing/data/generated_format_sets_old.py +45 -0
  130. md_processing/dr_egeria.py +182 -0
  131. md_processing/md_commands/__init__.py +3 -0
  132. md_processing/md_commands/data_designer_commands.py +1276 -0
  133. md_processing/md_commands/ext_ref_commands.py +530 -0
  134. md_processing/md_commands/feedback_commands.py +726 -0
  135. md_processing/md_commands/glossary_commands.py +684 -0
  136. md_processing/md_commands/governance_officer_commands.py +600 -0
  137. md_processing/md_commands/product_manager_commands.py +1266 -0
  138. md_processing/md_commands/project_commands.py +383 -0
  139. md_processing/md_commands/solution_architect_commands.py +1184 -0
  140. md_processing/md_commands/view_commands.py +295 -0
  141. md_processing/md_processing_utils/__init__.py +4 -0
  142. md_processing/md_processing_utils/common_md_proc_utils.py +1249 -0
  143. md_processing/md_processing_utils/common_md_utils.py +578 -0
  144. md_processing/md_processing_utils/determine_width.py +103 -0
  145. md_processing/md_processing_utils/extraction_utils.py +547 -0
  146. md_processing/md_processing_utils/gen_report_specs.py +643 -0
  147. md_processing/md_processing_utils/generate_dr_help.py +193 -0
  148. md_processing/md_processing_utils/generate_md_cmd_templates.py +144 -0
  149. md_processing/md_processing_utils/generate_md_templates.py +83 -0
  150. md_processing/md_processing_utils/md_processing_constants.py +1228 -0
  151. md_processing/md_processing_utils/message_constants.py +19 -0
  152. pyegeria/__init__.py +201 -443
  153. pyegeria/core/__init__.py +40 -0
  154. pyegeria/core/_base_platform_client.py +574 -0
  155. pyegeria/core/_base_server_client.py +573 -0
  156. pyegeria/core/_exceptions.py +457 -0
  157. pyegeria/core/_globals.py +60 -0
  158. pyegeria/core/_server_client.py +6073 -0
  159. pyegeria/core/_validators.py +257 -0
  160. pyegeria/core/config.py +654 -0
  161. pyegeria/{create_tech_guid_lists.py → core/create_tech_guid_lists.py} +0 -1
  162. pyegeria/core/load_config.py +37 -0
  163. pyegeria/core/logging_configuration.py +207 -0
  164. pyegeria/core/mcp_adapter.py +144 -0
  165. pyegeria/core/mcp_server.py +212 -0
  166. pyegeria/core/utils.py +405 -0
  167. pyegeria/deprecated/__init__.py +0 -0
  168. pyegeria/{_client.py → deprecated/_client.py} +62 -24
  169. pyegeria/{_deprecated_gov_engine.py → deprecated/_deprecated_gov_engine.py} +16 -16
  170. pyegeria/{classification_manager_omvs.py → deprecated/classification_manager_omvs.py} +1988 -1878
  171. pyegeria/deprecated/output_formatter_with_machine_keys.py +1127 -0
  172. pyegeria/{runtime_manager_omvs.py → deprecated/runtime_manager_omvs.py} +216 -229
  173. pyegeria/{valid_metadata_omvs.py → deprecated/valid_metadata_omvs.py} +93 -93
  174. pyegeria/{x_action_author_omvs.py → deprecated/x_action_author_omvs.py} +2 -3
  175. pyegeria/egeria_cat_client.py +25 -51
  176. pyegeria/egeria_client.py +140 -98
  177. pyegeria/egeria_config_client.py +48 -24
  178. pyegeria/egeria_tech_client.py +170 -83
  179. pyegeria/models/__init__.py +150 -0
  180. pyegeria/models/collection_models.py +168 -0
  181. pyegeria/models/models.py +654 -0
  182. pyegeria/omvs/__init__.py +84 -0
  183. pyegeria/omvs/action_author.py +342 -0
  184. pyegeria/omvs/actor_manager.py +5980 -0
  185. pyegeria/omvs/asset_catalog.py +842 -0
  186. pyegeria/omvs/asset_maker.py +2736 -0
  187. pyegeria/omvs/automated_curation.py +4403 -0
  188. pyegeria/omvs/classification_manager.py +11213 -0
  189. pyegeria/omvs/collection_manager.py +5780 -0
  190. pyegeria/omvs/community_matters_omvs.py +468 -0
  191. pyegeria/{core_omag_server_config.py → omvs/core_omag_server_config.py} +157 -157
  192. pyegeria/{data_designer_omvs.py → omvs/data_designer.py} +1991 -1691
  193. pyegeria/omvs/data_discovery.py +869 -0
  194. pyegeria/omvs/data_engineer.py +372 -0
  195. pyegeria/omvs/digital_business.py +1133 -0
  196. pyegeria/omvs/external_links.py +1752 -0
  197. pyegeria/omvs/feedback_manager.py +834 -0
  198. pyegeria/{full_omag_server_config.py → omvs/full_omag_server_config.py} +73 -69
  199. pyegeria/omvs/glossary_manager.py +3231 -0
  200. pyegeria/omvs/governance_officer.py +3009 -0
  201. pyegeria/omvs/lineage_linker.py +314 -0
  202. pyegeria/omvs/location_arena.py +1525 -0
  203. pyegeria/omvs/metadata_expert.py +668 -0
  204. pyegeria/omvs/metadata_explorer_omvs.py +2943 -0
  205. pyegeria/omvs/my_profile.py +1042 -0
  206. pyegeria/omvs/notification_manager.py +358 -0
  207. pyegeria/omvs/people_organizer.py +394 -0
  208. pyegeria/{platform_services.py → omvs/platform_services.py} +113 -193
  209. pyegeria/omvs/product_manager.py +1825 -0
  210. pyegeria/omvs/project_manager.py +1907 -0
  211. pyegeria/omvs/reference_data.py +1140 -0
  212. pyegeria/omvs/registered_info.py +334 -0
  213. pyegeria/omvs/runtime_manager.py +2817 -0
  214. pyegeria/omvs/schema_maker.py +446 -0
  215. pyegeria/{server_operations.py → omvs/server_operations.py} +27 -26
  216. pyegeria/omvs/solution_architect.py +6490 -0
  217. pyegeria/omvs/specification_properties.py +37 -0
  218. pyegeria/omvs/subject_area.py +1042 -0
  219. pyegeria/omvs/template_manager_omvs.py +236 -0
  220. pyegeria/omvs/time_keeper.py +1761 -0
  221. pyegeria/omvs/valid_metadata.py +3221 -0
  222. pyegeria/omvs/valid_metadata_lists.py +37 -0
  223. pyegeria/omvs/valid_type_lists.py +37 -0
  224. pyegeria/view/__init__.py +28 -0
  225. pyegeria/view/_output_format_models.py +514 -0
  226. pyegeria/view/_output_formats.py +14 -0
  227. pyegeria/view/base_report_formats.py +2719 -0
  228. pyegeria/view/dr_egeria_reports.py +56 -0
  229. pyegeria/view/format_set_executor.py +397 -0
  230. pyegeria/{md_processing_utils.py → view/md_processing_utils.py} +5 -5
  231. pyegeria/{mermaid_utilities.py → view/mermaid_utilities.py} +2 -154
  232. pyegeria/view/output_formatter.py +1297 -0
  233. pyegeria-5.5.3.3.dist-info/METADATA +218 -0
  234. pyegeria-5.5.3.3.dist-info/RECORD +241 -0
  235. {pyegeria-5.3.9.9.3.dist-info → pyegeria-5.5.3.3.dist-info}/WHEEL +2 -1
  236. pyegeria-5.5.3.3.dist-info/entry_points.txt +103 -0
  237. pyegeria-5.5.3.3.dist-info/top_level.txt +4 -0
  238. commands/cat/.DS_Store +0 -0
  239. commands/cat/README.md +0 -16
  240. commands/cli/txt_custom_v2.tcss +0 -19
  241. commands/my/README.md +0 -17
  242. commands/ops/README.md +0 -24
  243. commands/ops/monitor_asset_events.py +0 -108
  244. commands/tech/README.md +0 -24
  245. pyegeria/.DS_Store +0 -0
  246. pyegeria/README.md +0 -35
  247. pyegeria/_globals.py +0 -47
  248. pyegeria/_validators.py +0 -385
  249. pyegeria/asset_catalog_omvs.py +0 -864
  250. pyegeria/automated_curation_omvs.py +0 -3765
  251. pyegeria/collection_manager_omvs.py +0 -2744
  252. pyegeria/dr.egeria spec.md +0 -9
  253. pyegeria/egeria_my_client.py +0 -56
  254. pyegeria/feedback_manager_omvs.py +0 -4573
  255. pyegeria/glossary_browser_omvs.py +0 -3728
  256. pyegeria/glossary_manager_omvs.py +0 -2440
  257. pyegeria/m_test.py +0 -118
  258. pyegeria/md_processing_helpers.py +0 -58
  259. pyegeria/md_processing_utils_orig.py +0 -1103
  260. pyegeria/metadata_explorer_omvs.py +0 -2326
  261. pyegeria/my_profile_omvs.py +0 -1022
  262. pyegeria/output_formatter.py +0 -389
  263. pyegeria/project_manager_omvs.py +0 -1933
  264. pyegeria/registered_info.py +0 -167
  265. pyegeria/solution_architect_omvs.py +0 -2156
  266. pyegeria/template_manager_omvs.py +0 -1414
  267. pyegeria/utils.py +0 -197
  268. pyegeria-5.3.9.9.3.dist-info/METADATA +0 -72
  269. pyegeria-5.3.9.9.3.dist-info/RECORD +0 -143
  270. pyegeria-5.3.9.9.3.dist-info/entry_points.txt +0 -99
  271. /pyegeria/{_exceptions.py → deprecated/_exceptions.py} +0 -0
  272. {pyegeria-5.3.9.9.3.dist-info → pyegeria-5.5.3.3.dist-info/licenses}/LICENSE +0 -0
pyegeria/utils.py DELETED
@@ -1,197 +0,0 @@
1
- """
2
- SPDX-License-Identifier: Apache-2.0
3
- Copyright Contributors to the ODPi Egeria project.
4
-
5
- General utility functions in support of the Egeria Python Client package.
6
-
7
- """
8
-
9
- import json
10
- from datetime import datetime
11
-
12
- from rich import print, print_json
13
- from rich.console import Console
14
-
15
- console = Console(width=200)
16
-
17
- # def wrap_text(df: pd.DataFrame, wrap_len: int = 30) -> pd.DataFrame:
18
- # """ Wrap the text in a dataframe
19
- # Parameters
20
- # ----------
21
- # df : pandas.DataFrame
22
- # The DataFrame to wrap the text in.
23
- # wrap_len : int, optional
24
- # The maximum length of each cell's contents to wrap. Defaults to 30.
25
- #
26
- # Returns
27
- # -------
28
- # pandas.DataFrame
29
- # A new DataFrame with the wrapped text.
30
- #
31
- # """
32
- #
33
- # # Helper function to wrap text in a particular cell
34
- # def wrap_cell_contents(cell_contents: str, wrap: int = 30) -> str:
35
- # """ Wrap the text in a cell
36
- # Parameters
37
- # ----------
38
- # cell_contents : str or any
39
- # The contents of a cell in a dataframe.
40
- # wrap : int, optional
41
- # The maximum width at which to wrap the cell contents. Default is 30.
42
- #
43
- # Returns
44
- # -------
45
- # str or any
46
- # If the cell_contents is a string and its length is greater than wrap_len,
47
- # the contents are wrapped at wrap_len width using textwrap.
48
- # Otherwise, the original cell_contents are returned as is.
49
- # """
50
- # if isinstance(cell_contents, str) and len(cell_contents) > wrap:
51
- # return textwrap.fill(cell_contents, width=wrap)
52
- # else:
53
- # return cell_contents
54
- #
55
- # # Apply the helper function to each element in the DataFrame
56
- # return df.map(lambda x: wrap_cell_contents(x, wrap_len))
57
- #
58
- #
59
- # def print_nice_table(df, wrap_len: int = 20, tablefmt: str = "grid") -> None:
60
- # """ Print a nice table from the data frame"""
61
- # print(tabulate(wrap_text(df, wrap_len), headers="keys", tablefmt=tablefmt))
62
- #
63
- #
64
- # def get_json_as_table(input_json, wrap_len: int = 30, tablefmt: str = "grid") -> str:
65
- # """ return the input json as a table"""
66
- # data = json.loads(json.dumps(input_json))
67
- # df = pd.json_normalize(data)
68
- # return tabulate(wrap_text(df, wrap_len), headers="keys", tablefmt=tablefmt)
69
- #
70
- #
71
- # def print_json_list_as_table(input_json, wrap_len: int = 30, tablefmt: str = "grid") -> None:
72
- # """ print a json list as a table"""
73
- # data = json.loads(json.dumps(input_json))
74
- # df = pd.json_normalize(data)
75
- # print(tabulate(wrap_text(df, wrap_len), headers="keys", tablefmt=tablefmt))
76
-
77
-
78
- def print_rest_request_body(body):
79
- """
80
-
81
- Args:
82
- body:
83
- """
84
- pretty_body = json.dumps(body, indent=4)
85
- print_json(pretty_body, indent=4, sort_keys=True)
86
-
87
-
88
- def print_rest_response(response):
89
- """
90
-
91
- Args:
92
- response:
93
- """
94
- print("Returns:")
95
- pretty_body = json.dumps(response, indent=4)
96
- print_json(pretty_body, indent=4, sort_keys=True)
97
-
98
-
99
- def print_guid_list(guids):
100
- """Print a list of guids"""
101
- if guids is None:
102
- print("No assets created")
103
- else:
104
- pretty_guids = json.dumps(guids, indent=4)
105
- print_json(pretty_guids, indent=4, sort_keys=True)
106
-
107
-
108
- #
109
- # OCF Common services
110
- # Working with assets - this set of functions displays assets returned from the open metadata repositories.
111
- #
112
-
113
-
114
- def print_response(response):
115
- """
116
-
117
- Args:
118
- response:
119
-
120
- Returns:
121
- : str
122
- """
123
- pretty_response = json.dumps(response.json(), indent=4)
124
- print(" ")
125
- print("Response: ")
126
- print(pretty_response)
127
- print(" ")
128
-
129
-
130
- def print_unexpected_response(server_name, platform_name, platform_url, response):
131
- """
132
-
133
- Args:
134
- server_name:
135
- platform_name:
136
- platform_url:
137
- response:
138
- """
139
- if response.status_code == 200:
140
- related_http_code = response.json().get("related_http_code")
141
- if related_http_code == 200:
142
- print("Unexpected response from server " + server_name)
143
- print_response(response)
144
- else:
145
- exceptionErrorMessage = response.json().get("exceptionErrorMessage")
146
- exceptionSystemAction = response.json().get("exceptionSystemAction")
147
- exceptionUserAction = response.json().get("exceptionUserAction")
148
- if exceptionErrorMessage is not None:
149
- print(exceptionErrorMessage)
150
- print(" * " + exceptionSystemAction)
151
- print(" * " + exceptionUserAction)
152
- else:
153
- print("Unexpected response from server " + server_name)
154
- print_response(response)
155
- else:
156
- print(
157
- "Unexpected response from server platform "
158
- + platform_name
159
- + " at "
160
- + platform_url
161
- )
162
- print_response(response)
163
-
164
-
165
- def get_last_guid(guids):
166
- """
167
-
168
- Args:
169
- guids:
170
-
171
- Returns:
172
-
173
- """
174
- if guids is None:
175
- return None
176
- else:
177
- return guids[-1]
178
-
179
-
180
- def body_slimmer(body: dict) -> dict:
181
- """body_slimmer is a little function to remove unused keys from a dict
182
-
183
- Parameters
184
- ----------
185
- body : the dictionary that you want to slim
186
-
187
- Returns
188
- -------
189
- dict:
190
- a slimmed body
191
- """
192
- slimmed = {key: value for key, value in body.items() if value}
193
- return slimmed
194
-
195
-
196
- if __name__ == "__main__":
197
- print("Main-Utils")
@@ -1,72 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: pyegeria
3
- Version: 5.3.9.9.3
4
- Summary: A python client for Egeria
5
- License: Apache 2.0
6
- Keywords: egeria,metadata,governance
7
- Author: Dan Wolfson
8
- Author-email: dan.wolfson@pdr-associates.com
9
- Requires-Python: >3.12,<4.0.0
10
- Classifier: License :: OSI Approved :: Apache Software License
11
- Classifier: License :: Other/Proprietary License
12
- Classifier: Programming Language :: Python
13
- Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.13
15
- Requires-Dist: click
16
- Requires-Dist: h11 (==0.14.0)
17
- Requires-Dist: httpx
18
- Requires-Dist: jupyter
19
- Requires-Dist: jupyter-notebook-parser (>=0.1.4,<0.2.0)
20
- Requires-Dist: mermaid-py
21
- Requires-Dist: psycopg2-binary (>=2.9.9,<3.0.0)
22
- Requires-Dist: pytest (>=8.3.5,<9.0.0)
23
- Requires-Dist: requests
24
- Requires-Dist: rich
25
- Requires-Dist: textual
26
- Requires-Dist: trogon (>=0.6.0,<0.7.0)
27
- Requires-Dist: urllib3
28
- Requires-Dist: validators
29
- Project-URL: Homepage, https://github.com/odpi/egeria-python
30
- Project-URL: Repository, https://github.com/odpi/egeria-python
31
- Description-Content-Type: text/markdown
32
-
33
- <!-- SPDX-License-Identifier: CC-BY-4.0 -->
34
- <!-- Copyright Contributors to the ODPi Egeria project. -->
35
-
36
- ![Egeria Logo](https://egeria-project.org/assets/images/egeria-header.png)
37
-
38
- [![GitHub](https://img.shields.io/github/license/odpi/egeria)](LICENSE)
39
-
40
-
41
- # pyegeria: a python client for Egeria
42
-
43
- This is a package for easily using the Egeria
44
- open metadata environment from python. Details about the
45
- open source Egeria project can be found at [Egeria Project](https://egeria-project.org).
46
-
47
- This package is in active development. There is initial
48
- support for many of Egeria's services including configuration and operation. This client depends on
49
- This release supports Egeria 5.1 - although most of the functions may work on earlier versions of Egeria as well.
50
-
51
- The code is organized to mimic the existing Egeria Java Client structure.
52
-
53
- The commands folder holds the Egeria Command Line Interface and corresponding commands
54
- to visualize and use Egeria. The commands also serve as useful examples.
55
-
56
- An examples folder holds some useful examples showing different facets of using pyegeria.
57
-
58
- WARNING: files that start with "X" are in-progress placeholders that are not meant to be used..they will mature and
59
- evolve.
60
-
61
- All feedback is welcome. Please engage via our [community](http://egeria-project.org/guides/community/),
62
- team calls, or via github issues in this repo. If interested in contributing,
63
- you can engage via the community or directly reach out to
64
- [dan.wolfson\@pdr-associates.com](mailto:dan.wolfson@pdr-associates.com?subject=pyegeria).
65
-
66
- This is a learning experience.
67
-
68
-
69
-
70
- ----
71
- License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
72
- Copyright Contributors to the ODPi Egeria project.
@@ -1,143 +0,0 @@
1
- commands/cat/.DS_Store,sha256=RY8U0pzFVjHVb0B2edAfhmtpMWmKhR-YSI4WoPy4apc,6148
2
- commands/cat/Dr-Egeria_md-orig.py,sha256=ZX20BvRo0fIFisvy5Z-VJDLVyKbQoud89-CUV2S66tU,7336
3
- commands/cat/README.md,sha256=-aaAnIT2fcfU63vajgB-RzQk4l4yFdhkyVfSaTPiqRY,967
4
- commands/cat/__init__.py,sha256=Ps4MxYlYN-ZX1qaSTFwnqgDZTaqUkN35JTOpZ1TBD1Q,451
5
- commands/cat/dr_egeria_jupyter.py,sha256=rfLVV_84Q8Pqcq1flmijKvZ7sEZFy7JAcAP_NAbb46Y,5656
6
- commands/cat/dr_egeria_md.py,sha256=bEi2toFazJPiy6ZM2zRbvr_IfhiA1JOcunpwCfrEVsU,13408
7
- commands/cat/exp_list_glossaries.py,sha256=dC6Bnfm3YSMTKPP146qeslIFRiZnGu5b7iDYE07p4iU,5817
8
- commands/cat/get_asset_graph.py,sha256=xnXJfpDTVH1TJ2TwE3dtjaXU36Di6-N6JAyhothzz2o,12461
9
- commands/cat/get_collection.py,sha256=kXPcP8u-SMWfrVyyBhNoxG8mcgB7EV_5i9N9w_IBU7o,5379
10
- commands/cat/get_project_dependencies.py,sha256=XwstxuDxDDuP2uN1oJi0PTDZVLbqgcc_3lxh_prBZvY,5987
11
- commands/cat/get_project_structure.py,sha256=5uxWMqNve592OT73GRCO2KoBkgLWRNuQv_emWpS-Fw8,5975
12
- commands/cat/get_tech_type_elements.py,sha256=IznytHXwDOFriGM6mypV9wuEeM-vT2s66cUzf-IROog,6147
13
- commands/cat/glossary_actions.py,sha256=zK26fNiv-lpWUP8tHC3wTmdQ6L0_XxlmuNGUyrnSclc,19606
14
- commands/cat/list_assets.py,sha256=CdJ2coKvvQv2VwJO0Sp9Eg9Fu_uvpC21tgjrdtT9Yz4,6315
15
- commands/cat/list_categories.py,sha256=DTKE3yrt3N2EIjCGscxrz-pSREqmch7aFqsVFm-3u7o,7841
16
- 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
19
- commands/cat/list_deployed_catalogs.py,sha256=VdN6R9kRVWX-fGIgubOigvMVPzhF-hKQepHHlS-w-D8,8258
20
- commands/cat/list_deployed_database_schemas.py,sha256=1Qicke1R2_7Xi3Qf5sp8KJ3_reAIt0z1iaz2sG8Z0Qs,9458
21
- commands/cat/list_deployed_databases.py,sha256=ryrBW1CxJRfOeLP978qQwxb5oImqhIsHghtcpWeBIrw,7587
22
- commands/cat/list_deployed_servers.py,sha256=_xR7EaaCsxIjTphxmoCZlARoja_vQqZ881pFiEuhw-8,5719
23
- commands/cat/list_glossaries.py,sha256=pKJdiRMrSBpmPv0yOWoR_CdGZP06MuxfPGwCXc-kSQw,7666
24
- commands/cat/list_projects.py,sha256=NzWTuepTGUEyxK-eWvuUxtBgCtNWubVwmz2eqm2UN1c,7997
25
- commands/cat/list_tech_type_elements.py,sha256=-9omj5en9dSP1xMSljYVHyfXsuhuE1bO2IFj_bZPhAs,6873
26
- commands/cat/list_tech_types.py,sha256=uqZcXHCzAznhEG6WWeM5j-spwUh8ycygFqpVDeXOG-0,4653
27
- commands/cat/list_terms.py,sha256=ndl99V6NbJtlV3xqIGWhif1R8tW6emEVYYos0dkydwE,12076
28
- commands/cat/list_todos.py,sha256=NitCw0uyVVjmN1hxb1W-I4FbOsa8wQxW2ICyOElHyc8,6556
29
- commands/cat/list_user_ids.py,sha256=X5Q-YNEp38saPYDuy9VwdQC5Qpa4HyC3WvAdbyp_P6M,5108
30
- commands/cli/__init__.py,sha256=E6vPW3P3iuVPyrwtDIWvU9P0JXOGqP8KupeIZdxc6wc,298
31
- commands/cli/egeria.py,sha256=CKqJiwu44Ya6IgFPgjVpoP2kUZmohrIqXs4SiM1ckHo,52096
32
- commands/cli/egeria_cat.py,sha256=HqmtUpSX1pXiItVQC0zGEXzHdw_y_-rzy4W8dWJof8M,18143
33
- commands/cli/egeria_login_tui.py,sha256=bh9MvJcZPpixXkEtWh_4NK4YcRdeHSVDUBTIhQncSyY,9498
34
- commands/cli/egeria_my.py,sha256=pWFgznhBs34a6ldRExAFGmZ7K-wBYqjTUfvdUtPq_uc,6349
35
- commands/cli/egeria_ops.py,sha256=0cjvlNj1hbilQ17aIx2OrQgQzhVzGiCPlz4f7XdP1t8,12519
36
- commands/cli/egeria_tech.py,sha256=etLJOEzO7UQyfY8aRcmXqoYvh_fdi5CGtT9X6KEW8p0,20995
37
- commands/cli/ops_config.py,sha256=aYpZgC5WgbeVX81DNKS34sOqMx2pc6yqDuSO2CYRiOo,1513
38
- commands/cli/txt_custom_v2.tcss,sha256=ixkzpFyTZ5i3byFO9EmEAeJgzbEa7nZb_3iTgxNtVPk,232
39
- commands/my/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
40
- commands/my/__init__.py,sha256=0O3kDAlDfx7ohSg_5tZt55B4B3UItgE0noROQLCIUxs,449
41
- commands/my/list_my_profile.py,sha256=eoWBNNnxUsVFTJOYufs9QsG6BNrra3-Fc9TbrCl-CGE,5731
42
- commands/my/list_my_roles.py,sha256=jXkIcA71GRBrx556GROML4QrE3JGt-IPuGzVodDhPx0,5190
43
- commands/my/monitor_my_todos.py,sha256=mM68RH1DJzf38BqmIZZXJrQgpGyAQDO4VimlPYE4osU,7104
44
- commands/my/monitor_open_todos.py,sha256=Vi6VOcxdHe_94de_ICTHoIOA94KCcTxDCTRb9-4oKRs,5975
45
- commands/my/todo_actions.py,sha256=daio-D1dVDkAXIcz15bVogJ-nWA_bMGKrpvkK7tc3cQ,8153
46
- commands/ops/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
47
- commands/ops/__init__.py,sha256=v7u-zC3gr8soVbYV0Izc2wuEcGCovO00j5v-IhLg3xs,450
48
- commands/ops/gov_server_actions.py,sha256=OCff2cajMbZOy_nwG6xIiIX1seiu3tLxn-uP_CPrpTM,5685
49
- commands/ops/list_archives.py,sha256=jKm_easQUjJNRkuasILvuVpQBFuyyBlBHE-L0i0FGgQ,5456
50
- commands/ops/list_catalog_targets.py,sha256=piru83lRLV7O-HZ2gYTJbZy3nHptGuBJ62QsVrYTLE0,7702
51
- commands/ops/load_archive.py,sha256=KL9bSqwqPGUPTvB9iLiQCcVH_CzGpdyjG3Mm6NIFt-k,2708
52
- commands/ops/monitor_asset_events.py,sha256=5XXWt5yvl9mGq1Lve9gdrWT0dvvTWpFr_lFWO-_WdaU,3883
53
- commands/ops/monitor_engine_activity.py,sha256=yMNR0MI4Vm7IzOFc6jz-De9xDuWPPgUU31LnrLkI-3M,9896
54
- commands/ops/monitor_engine_activity_c.py,sha256=Jf9Eo-ZtEPminf5gcz4NsT2wDD2AddcbTPJzSYdD5Sc,10773
55
- commands/ops/monitor_gov_eng_status.py,sha256=gK5HXewXKnLEjCBRkbEyzbGtWs998P-AoFKaMCAQBLs,9917
56
- commands/ops/monitor_integ_daemon_status.py,sha256=N09KaP1eA3OiGfRS4GgbjKxnkheMYK6oQojNbuO6KRo,11828
57
- commands/ops/monitor_platform_status.py,sha256=5Vn8C-vDth9qgzEswqwzR2on3Up1mdFp9oVEudMj5PU,7247
58
- commands/ops/monitor_server_startup.py,sha256=UNws5paaN0VTVLkJp-8MI07oUMdwCRpKcMNM9oUNCW8,3915
59
- commands/ops/monitor_server_status.py,sha256=w7uFLR6BXgPtuC4L5cp8nWsw3W1Z-5JB2nCo1N_zEF4,7144
60
- commands/ops/orig_monitor_server_list.py,sha256=EYmvygmrhNmcXORsRHtCniuZ3C9ko8CBRlH34vZRrPg,4651
61
- commands/ops/orig_monitor_server_status.py,sha256=QCRi5uxrtZvXnZGcMPvlsLHr6P9v-5m12CqqL691lvc,4033
62
- commands/ops/refresh_integration_daemon.py,sha256=cOgdWQV6pTajIBWNeJy7MJo32JtMxPDHcxivfT72NWc,2981
63
- commands/ops/restart_integration_daemon.py,sha256=M8vb-SEIGFd4fnZcwFD1rRNYXGe-jySzFGnizB72dSI,2917
64
- commands/ops/table_integ_daemon_status.py,sha256=XyHM4LzOslWFmH5q9nFa8tpZNylL9JztOavtQacnP7w,8430
65
- commands/ops/x_engine_actions.py,sha256=sjoyDJD2_0xQkE2tSlFdBxD2d9C3Nzcy9qi69dWC4Rw,2284
66
- commands/tech/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
67
- commands/tech/__init__.py,sha256=0O3kDAlDfx7ohSg_5tZt55B4B3UItgE0noROQLCIUxs,449
68
- commands/tech/generic_actions.py,sha256=vHwgaADbai61R46QiCvS9pZr4vZXAN1XEtcizaSEidU,2677
69
- commands/tech/get_element_info.py,sha256=a1msEwL_kKjO8uslJa-tSgrdW6UgKUY4iyLjZqzeG9M,4761
70
- commands/tech/get_guid_info.py,sha256=7QBMteAd8mbJymkJC8AJW8D2TQ8Roc2zDcNb0tI2l-A,4295
71
- commands/tech/get_tech_details.py,sha256=m312TXXu5UkJ42g0YopntXWJwSSAil1Udj62erD8cOU,6383
72
- commands/tech/get_tech_type_template.py,sha256=kyKaqr5gBsmUyxePXM2hfeHCtzef8mQ_e6_rbf4ssYs,6246
73
- commands/tech/list_all_om_type_elements.py,sha256=xJmI7p4eNWSB09NYANz5wGAg2oqKqs4dv9rfSQA7zuA,5999
74
- commands/tech/list_all_om_type_elements_x.py,sha256=KkUSWtUWnQEbuK5PwLF5C3whft_V9OOtYD2M-aQfg3c,6570
75
- commands/tech/list_all_related_elements.py,sha256=2uAYHEuPEjXGM5I_zVblZFOGoyGP02lhR5tPc0u8zog,7782
76
- commands/tech/list_anchored_elements.py,sha256=OJx3U77QCJadheD0RRiRw-4GvheoqL0gdBqBgHzEKho,7589
77
- commands/tech/list_asset_types.py,sha256=GbW8Tj9o1wh_qJM6b2oIESyzr9tcYcvjoL-0rnOXViI,4176
78
- commands/tech/list_elements_by_classification_by_property_value.py,sha256=aCNSpQgyRn6u-8nU9iLCuYzj4kVBKKCnLuBSGKP_w-8,7132
79
- commands/tech/list_elements_by_property_value.py,sha256=ZObsaQ0jXXN88pVoO68_NVsSXN2CnGjLsOhCuYDzINs,6489
80
- commands/tech/list_elements_by_property_value_x.py,sha256=rk0cY3fKUE0zEvHe42OYUvXItzl8EqW4euvjbk8vSd0,7011
81
- commands/tech/list_elements_for_classification.py,sha256=4Opb_dp-p4jR4jO6ZaA3Lc3bapojT95iLkvLN9ehNK0,6216
82
- commands/tech/list_gov_action_processes.py,sha256=2yhfzlBIJCxciT9AQyfik_-Zkfcca95xjRdaJfMWYRM,4562
83
- commands/tech/list_information_supply_chains.py,sha256=SydzAK_xp86LL8-IKPTTgVOyM3J5BfwxM2MQqrQILFE,6328
84
- commands/tech/list_registered_services.py,sha256=yH0C_ge5ZYylrPhKaT0VWFkBMaLJopTzL2ZhJJcAiSE,6548
85
- commands/tech/list_related_elements_with_prop_value.py,sha256=jNfpfdWmgNsSFKqKfKHTYhrPTu6m0LeOUkmc6DeupdE,8224
86
- commands/tech/list_related_specification.py,sha256=m72yh1ayud58_BqWhgEgdgnaWIxUYKLxPSulJmCoZ7o,5932
87
- commands/tech/list_relationship_types.py,sha256=QQZLRhAWUTpu3DCqem6og7sm1W95f3oE-gv5RY5bMnY,5766
88
- commands/tech/list_relationships.py,sha256=g2Kl6LSvmQ3SCjsaZ3oFk5PuYVVeqRKfEhmD-icJjzo,5940
89
- commands/tech/list_solution_blueprints.py,sha256=hIW_Q6ess0OKidCEJ_EOb4FDEq2w6eHkxTlQjRE9TAY,7110
90
- commands/tech/list_solution_components.py,sha256=JxOFyCZ4HFHwg9E2Th7cylGsE7LbzEW3nqRFjoPu2rE,6908
91
- commands/tech/list_solution_roles.py,sha256=yWjh7_5w2vxFYMycn4kJGKThpQPE8bxnHSp1RwmY2Rk,6680
92
- commands/tech/list_tech_templates.py,sha256=5hhDJJjrqGyWDPPcFzFeFs-4rsal1M2Bl7EUuJNz8Ns,14144
93
- commands/tech/list_valid_metadata_values.py,sha256=_zgOdq2N6s7GjLd8iEc5xVfplKfOnKZ-ySM-lSdgYn8,6315
94
- commands/tech/table_tech_templates.py,sha256=jI1c9YKa3KirArMNXeCRKeaiVdwQSN-ztPqkag6jdZs,9500
95
- commands/tech/x_list_related_elements.py,sha256=ynaw792VnbMZ9IXBi5mmG7xBfC0kn0esKiFTsjvLGzc,5900
96
- pyegeria/.DS_Store,sha256=aExDotxdVFK-8C6Es8SJjvtOsGrm-SknQULFzsFDZCQ,6148
97
- pyegeria/README.md,sha256=PwX5OC7-YSZUCIsoyHh1O-WBM2hE84sm3Bd4O353NOk,1464
98
- pyegeria/__init__.py,sha256=NgPs08IQIH25GlvFXjPGDxKB6ln44lAS0EWHg4LJSh4,30874
99
- pyegeria/_client.py,sha256=JxKPwpq8Q9ZzgFGRiMu1Z426zSpgEM4TXzZMex-STB0,32023
100
- pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
101
- pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
102
- pyegeria/_globals.py,sha256=LQftrioc75zTsDUvAu1aRM3-a5hdPNVgTkoVN7GH_kY,1056
103
- pyegeria/_validators.py,sha256=vP9nuZwucnCo_LrPU7hkitpWzaych5bTZEKE58TaTnQ,12726
104
- pyegeria/asset_catalog_omvs.py,sha256=P6FceMP0FgakGSOt3ePxpEbsF7nnypzo1aQahjdL_94,29021
105
- pyegeria/automated_curation_omvs.py,sha256=tzwCyXL0Hx8UjryBBWcPoEuBRajXZpLuwPQ1vuOg2yc,130349
106
- pyegeria/classification_manager_omvs.py,sha256=n55-62Mby-_5pxPGaz3nkjM9NWlY4PzSl3tP0WSnGJU,187212
107
- pyegeria/collection_manager_omvs.py,sha256=Z5Eu_s7l0k5ESzMxUUuasxgT-h1HtZV1b38jZ6BTE_I,120281
108
- pyegeria/core_omag_server_config.py,sha256=pNQpocICkZx8sRsTw5DPUe-TFyxlIo1U88qqgci_f7I,97764
109
- pyegeria/create_tech_guid_lists.py,sha256=hf5q8Xrdsz-bqeIW3yTORZ1XB6_BrKzLDWWwC_bNG2g,4811
110
- pyegeria/data_designer_omvs.py,sha256=pyPY0TCzIsdOSJd2-FoWcM4ue2HP0r5nqFgKtWqLy0k,186078
111
- pyegeria/dr.egeria spec.md,sha256=QC_z3EqJ0WW18NYQFW_AtqO4SMWH5MJNVmM--54VzX4,959
112
- pyegeria/egeria_cat_client.py,sha256=d8dQNPLzL4efi99OJfH1T-Rt1N0k9Rf9LX8LpuhiFls,2179
113
- pyegeria/egeria_client.py,sha256=egGv41eb94P_lWIQ54I_90WT_IukJ_J6ZLOYCHpx2js,4676
114
- pyegeria/egeria_config_client.py,sha256=3TZUeXSl1f7SQ2WWYTbgOu1Cu1YqApilErAgjZLzbWY,1391
115
- pyegeria/egeria_my_client.py,sha256=eOKLk2zdI6FHZnhAimfR_0yNdBjpUgD41dJZcJODcqE,1607
116
- pyegeria/egeria_tech_client.py,sha256=FedfavxepFvy6IMSo1YBHh4F_Ahid8uoUsHoSbq9ywM,4200
117
- pyegeria/feedback_manager_omvs.py,sha256=0xBs0p54vmdfVYYgQ8pOanLC4fxfgTk1Z61Y6D1U7_I,152978
118
- pyegeria/full_omag_server_config.py,sha256=CQqLCy_3DZFvJZEOcGf50HWdFaWpiAIs6z-kKyjvpDA,47464
119
- pyegeria/glossary_browser_omvs.py,sha256=j6CJt1_O42OT3bVzwwiAoqsCtH5urC5zfghEl0tO8Vg,167000
120
- pyegeria/glossary_manager_omvs.py,sha256=aGYZFuzWrPmPLLNwkNpV7-FsalqwDR7gyBzgdubnM04,87989
121
- pyegeria/m_test.py,sha256=M5-M2ZczsAJLXWfSeqTTADHdx6Ku-y4PbQ4M21JthAE,7778
122
- pyegeria/md_processing_helpers.py,sha256=xlQuK5eP_PJqUdy4BScQ97NyBD95jMS3EUg0wK5CsZo,2137
123
- pyegeria/md_processing_utils.py,sha256=KRESCqAYjCgHRAdhHH49lLDDhaq740CUlqTG0bN-6Oo,99119
124
- pyegeria/md_processing_utils_orig.py,sha256=SToZtXQiysi2_vmIY4-T2NIELRirzQ1zjkho_2jFsNE,52603
125
- pyegeria/mermaid_utilities.py,sha256=Zcn8JRrqtf62oHoxuvP9tQ5G-BFxOGMNfr7-peuykgY,54290
126
- pyegeria/metadata_explorer_omvs.py,sha256=xHnZTQKbd6XwOhYia-RiIisrvZcqHi0SL1l6OCf04Gk,86911
127
- pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
128
- pyegeria/output_formatter.py,sha256=_4BxCNjzdSa6sda_0qSH52vxxK_npMKtkN2JN_-iwF4,15097
129
- pyegeria/platform_services.py,sha256=YEpZsGGsbSdesN8ceyFhV0OMzKG6znTZrREMTRimLps,41701
130
- pyegeria/project_manager_omvs.py,sha256=612rYbu2eLR8Sgv9nBzjkFJ2PuxIBd_b-zwcnpVbXhc,70665
131
- pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
132
- pyegeria/runtime_manager_omvs.py,sha256=Z5wY9ignNjil8O6yjihZftxkGoh9A4PQDcXhoIsOIT8,79698
133
- pyegeria/server_operations.py,sha256=5k0KVz3u8qRLwtz16zT3J86LZY3pkUrMDcps8srmq1A,16831
134
- pyegeria/solution_architect_omvs.py,sha256=-PrmNGOVbiIniud328PQ3VY6GF9OPxC9OV8hlLhZZmk,87384
135
- pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDTM-rQ,42755
136
- pyegeria/utils.py,sha256=GCt1C0bp0Xng1ahzbZhzV9qQwH7Dj93IaCt2dvWb-sg,5417
137
- pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
138
- pyegeria/x_action_author_omvs.py,sha256=RcqSzahUKCtvb_3u_wyintAlc9WFkC_2v0E12TZs8lQ,6433
139
- pyegeria-5.3.9.9.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
140
- pyegeria-5.3.9.9.3.dist-info/METADATA,sha256=Qd08YaQ2cPC_a1p_sR7_sNrLy3wKS28deBHPzr_3NIk,2789
141
- pyegeria-5.3.9.9.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
142
- pyegeria-5.3.9.9.3.dist-info/entry_points.txt,sha256=t-jdafZ1zTF11pehQeRmmXrnzbaH2zKSiQPu2GfD-Eo,5987
143
- pyegeria-5.3.9.9.3.dist-info/RECORD,,
@@ -1,99 +0,0 @@
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_jupyter=commands.cat.dr_egeria_jupyter:process_jupyter_notebook
14
- dr_egeria_md=commands.cat.dr_egeria_md:process_markdown_file
15
- egeria_login=commands.cli.egeria_login_tui:login
16
- export_terms_to_csv_file=commands.cat.glossary_actions:export_terms_csv
17
- get_asset_graph=commands.cat.get_asset_graph:main
18
- get_collection=commands.cat.get_collection:main
19
- get_element_info=commands.tech.get_element_info:main
20
- get_guid_info=commands.tech.get_guid_info:main
21
- get_project_dependencies=commands.cat.get_project_dependencies:main
22
- get_project_structure=commands.cat.get_project_structure:main
23
- get_tech_details=commands.tech.get_tech_details:main
24
- get_tech_type_elements=commands.cat.get_tech_type_elements:main
25
- get_tech_type_template=commands.tech.get_tech_type_template:main
26
- hey_egeria=commands.cli.egeria:cli
27
- hey_egeria_cat=commands.cli.egeria_cat:cli
28
- hey_egeria_my=commands.cli.egeria_my:cli
29
- hey_egeria_ops=commands.cli.egeria_ops:cli
30
- hey_egeria_tech=commands.cli.egeria_tech:cli
31
- list_all_related_elements=commands.tech.list_all_related_elements:main
32
- list_anchored_elements=commands.tech.list_anchored_elements:main
33
- list_archives=commands.ops.list_archives:main
34
- list_asset_types=commands.tech.list_asset_types:main
35
- list_assets=commands.cat.list_assets:main
36
- list_catalog_targets=commands.ops.list_catalog_targets:main
37
- list_categories=commands.cat.list_categories:main
38
- list_cert_types=commands.cat.list_cert_types:main
39
- list_collections=commands.cat.list_collections:main
40
- list_deployed_catalogs=commands.cat.list_deployed_catalogs:main
41
- list_deployed_databases=commands.cat.list_deployed_databases:main
42
- list_deployed_schemas=commands.cat.list_deployed_database_schemas:main
43
- list_deployed_servers=commands.cat.list_deployed_servers.py:main
44
- list_elements=commands.tech.list_all_om_type_elements:main
45
- list_elements_by_classification_by_prop_value=commands.tech.list_elements_by_classification_by_property_value:main
46
- list_elements_by_prop_value=commands.tech.list_elements_by_property_value:main
47
- list_elements_by_prop_value_x=commands.tech.list_elements_by_property_value_x:main
48
- list_elements_for_classification=commands.tech.list_elements_for_classification:main
49
- list_elements_x=commands.tech.list_all_om_type_elements_x:main
50
- list_engine_activity=commands.ops.monitor_engine_activity:main_paging
51
- list_engine_activity_compressed=commands.ops.monitor_engine_activity_c:main_paging
52
- list_glossaries=commands.cat.list_glossaries:main
53
- list_gov_action_processes=commands.tech.list_gov_action_processes:main
54
- list_gov_eng_status=commands.ops.monitor_gov_eng_status:main_paging
55
- list_info_supply_chains=commands.tech.list_information_supply_chains:main
56
- list_integ_daemon_status=commands.ops.monitor_integ_daemon_status:main_paging
57
- list_my_profile=commands.my.list_my_profile:main
58
- list_my_roles=commands.my.list_my_roles:main
59
- list_projects=commands.cat.list_projects:main
60
- list_registered_services=commands.tech.list_registered_services:main
61
- list_related_elements_with_prop_value=commands.tech.list_related_elements_with_prop_value:main
62
- list_related_specification=commands.tech.list_related_specification:main
63
- list_relationship_types=commands.tech.list_relationship_types:main
64
- list_relationships=commands.tech.list_relationships:main
65
- list_solution_blueprints=commands.tech.list_solution_blueprints:main
66
- list_solution_components=commands.tech.list_solution_components:main
67
- list_solution_roles=commands.tech.list_solution_roles:main
68
- list_tech_templates=commands.tech.list_tech_templates:main
69
- list_tech_type_elements=commands.cat.list_tech_type_elements:main
70
- list_tech_types=commands.cat.list_tech_types:main
71
- list_terms=commands.cat.list_terms:main
72
- list_todos=commands.cat.list_todos:main
73
- list_user_ids=commands.cat.list_user_ids:main
74
- list_valid_metadata_values=commands.tech.list_valid_metadata_values:main
75
- load_archive=commands.ops.load_archive:load_archive
76
- load_archive_tui=commands.ops.load_archive:tui
77
- load_terms_from_csv_file=commands.cat.glossary_actions:import_terms_csv
78
- mark_todo_complete=commands.my.todo_actions:mark_todo_complete
79
- monitor_asset_events=commands.ops.monitor_asset_events:main
80
- monitor_coco_status=commands.ops.monitor_coco_status:main
81
- monitor_engine_activity=commands.ops.monitor_engine_activity:main_live
82
- monitor_engine_activity_compressed=commands.ops.monitor_engine_activity_c:main_live
83
- monitor_gov_eng_status=commands.ops.monitor_gov_eng_status:main_live
84
- monitor_integ_daemon_status=commands.ops.monitor_integ_daemon_status:main_live
85
- monitor_my_todos=commands.my.monitor_my_todos:main
86
- monitor_open_todos=commands.my.monitor_open_todos:main
87
- monitor_platform_status=commands.ops.monitor_platform_status:main
88
- monitor_server_list=commands.ops.orig_monitor_server_list:main
89
- monitor_server_startup=commands.ops.monitor_server_startup:main
90
- monitor_server_status=commands.ops.monitor_server_status:main
91
- reassign_todo=commands.my.todo_actions:reassign_todo
92
- refresh_gov_eng_config=commands.ops.gov_server_actions:refresh_gov_eng_config
93
- refresh_integration_daemon=commands.ops.refresh_integration_daemon:main
94
- remove_term_from_category=commands.cat.glossary_actions:remove_term_from_category
95
- restart_integration_daemon=commands.ops.restart_integration_daemon:main
96
- start_daemon=commands.ops.engine_actions:start_daemon
97
- stop_daemon=commands.ops.engine_actions:stop_daemon
98
- update_category=commands.cat.glossary_actions:update_category
99
-
File without changes