pyegeria 0.5.6.6__py3-none-any.whl → 0.5.8.0__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/widgets/catalog_user/get_asset_graph.py +11 -9
- examples/widgets/catalog_user/get_collection.py +5 -3
- examples/widgets/{operational → catalog_user}/get_tech_type_elements.py +5 -2
- examples/widgets/{operational → catalog_user}/get_tech_type_template.py +6 -2
- examples/widgets/catalog_user/list_assets.py +5 -4
- examples/widgets/catalog_user/list_glossary.py +5 -3
- examples/widgets/developer/get_guid_info.py +9 -7
- examples/widgets/developer/get_tech_details.py +5 -2
- examples/widgets/developer/list_registered_services.py +5 -2
- examples/widgets/developer/list_tech_templates.py +5 -2
- examples/widgets/developer/list_tech_types.py +5 -2
- examples/widgets/developer/list_valid_metadata_values.py +7 -2
- examples/widgets/operational/__init__.py +1 -1
- examples/widgets/operational/egeria_ops.py +215 -0
- examples/widgets/operational/engine_actions.py +91 -0
- examples/widgets/operational/integration_daemon_actions.py +122 -0
- examples/widgets/operational/list_catalog_targets.py +121 -0
- examples/widgets/operational/monitor_asset_events.py +4 -0
- examples/widgets/operational/monitor_coco_status.py +2 -1
- examples/widgets/operational/{monitor_eng_action_status.py → monitor_engine_activity.py} +6 -5
- examples/widgets/operational/monitor_gov_eng_status.py +14 -5
- examples/widgets/operational/monitor_integ_daemon_status.py +7 -5
- examples/widgets/operational/monitor_platform_status.py +2 -1
- examples/widgets/operational/monitor_server_list.py +2 -1
- examples/widgets/operational/monitor_server_status.py +6 -3
- examples/widgets/operational/ops_config.py +29 -0
- examples/widgets/operational/refresh_integration_daemon.py +22 -13
- examples/widgets/operational/restart_integration_daemon.py +73 -0
- examples/widgets/personal_organizer/list_projects.py +11 -3
- examples/widgets/personal_organizer/list_todos.py +10 -3
- examples/widgets/personal_organizer/monitor_my_todos.py +10 -3
- examples/widgets/personal_organizer/monitor_open_todos.py +2 -1
- pyegeria/__init__.py +8 -0
- pyegeria/create_tech_guid_lists.py +19 -1
- {pyegeria-0.5.6.6.dist-info → pyegeria-0.5.8.0.dist-info}/METADATA +1 -1
- pyegeria-0.5.8.0.dist-info/RECORD +75 -0
- {pyegeria-0.5.6.6.dist-info → pyegeria-0.5.8.0.dist-info}/entry_points.txt +3 -0
- pyegeria-0.5.6.6.dist-info/RECORD +0 -69
- {pyegeria-0.5.6.6.dist-info → pyegeria-0.5.8.0.dist-info}/LICENSE +0 -0
- {pyegeria-0.5.6.6.dist-info → pyegeria-0.5.8.0.dist-info}/WHEEL +0 -0
@@ -135,8 +135,11 @@ def display_todos(server: str, url: str, user: str, user_pass:str):
|
|
135
135
|
|
136
136
|
except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
|
137
137
|
print_exception_response(e)
|
138
|
-
assert e.related_http_code != "200", "Invalid parameters"
|
139
138
|
|
139
|
+
except KeyboardInterrupt:
|
140
|
+
pass
|
141
|
+
finally:
|
142
|
+
m_client.close_session()
|
140
143
|
|
141
144
|
def main():
|
142
145
|
parser = argparse.ArgumentParser()
|
@@ -151,8 +154,12 @@ def main():
|
|
151
154
|
userid = args.userid if args.userid is not None else EGERIA_USER
|
152
155
|
user_pass = args.password if args.password is not None else EGERIA_USER_PASSWORD
|
153
156
|
|
154
|
-
|
155
|
-
|
157
|
+
try:
|
158
|
+
print(f"Starting display_todos with {server}, {url}, {userid}")
|
159
|
+
display_todos(server=server, url=url, user=userid, user_pass=user_pass)
|
160
|
+
except KeyboardInterrupt:
|
161
|
+
pass
|
162
|
+
|
156
163
|
|
157
164
|
if __name__ == "__main__":
|
158
165
|
main()
|
@@ -114,7 +114,8 @@ def display_todos(server: str , url: str, user: str, user_pass:str):
|
|
114
114
|
|
115
115
|
except (InvalidParameterException, PropertyServerException, UserNotAuthorizedException) as e:
|
116
116
|
print_exception_response(e)
|
117
|
-
|
117
|
+
except KeyboardInterrupt:
|
118
|
+
pass
|
118
119
|
finally:
|
119
120
|
m_client.close_session()
|
120
121
|
|
pyegeria/__init__.py
CHANGED
@@ -115,3 +115,11 @@ TEMPLATE_GUIDS['Raster Data File'] = '47211156-f03f-4881-8526-015e695a3dac'
|
|
115
115
|
TEMPLATE_GUIDS['Data Folder'] = '372a0379-7060-4c9d-8d84-bc709b31794c'
|
116
116
|
TEMPLATE_GUIDS['OMAG Server Platform'] = '9b06c4dc-ddc8-47ae-b56b-28775d3a96f0'
|
117
117
|
INTEGRATION_GUIDS['OpenAPI'] = 'b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e'
|
118
|
+
INTEGRATION_GUIDS['PostgreSQLServerCataloguer'] = '36f69fd0-54ba-4f59-8a44-11ccf2687a34'
|
119
|
+
INTEGRATION_GUIDS['UnityCatalogInsideCatalogSynchronizer'] = '74dde22f-2249-4ea3-af2b-b39e73f79b81'
|
120
|
+
INTEGRATION_GUIDS['JDBCDatabaseCataloguer'] = '70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa'
|
121
|
+
INTEGRATION_GUIDS['SampleDataCataloguer'] = 'cd6479e1-2fe7-4426-b358-8a0cf70be117'
|
122
|
+
INTEGRATION_GUIDS['OpenAPICataloguer'] = 'b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e'
|
123
|
+
INTEGRATION_GUIDS['ApacheKafkaCataloguer'] = 'fa1f711c-0b34-4b57-8e6e-16162b132b0c'
|
124
|
+
INTEGRATION_GUIDS['UnityCatalogServerSynchronizer'] = '06d068d9-9e08-4e67-8c59-073bbf1013af'
|
125
|
+
INTEGRATION_GUIDS['LandingAreaCataloguer'] = '1b98cdac-dd0a-4621-93db-99ef5a1098bc'
|
@@ -11,7 +11,7 @@ from rich import print, print_json
|
|
11
11
|
from datetime import datetime
|
12
12
|
from rich.console import Console
|
13
13
|
|
14
|
-
from pyegeria import AutomatedCuration
|
14
|
+
from pyegeria import AutomatedCuration, ServerOps
|
15
15
|
|
16
16
|
console = Console(width=200)
|
17
17
|
|
@@ -66,6 +66,24 @@ def build_global_guid_lists(server:str = "view-server",url: str = "https://local
|
|
66
66
|
f.write(out)
|
67
67
|
else:
|
68
68
|
console.print(f"{display_name} technology type has no integration connectors")
|
69
|
+
#
|
70
|
+
# Ok - now lets harvest integration connectors using get_integration_daemon_status from ServerOps
|
71
|
+
# Assume that integration daemon called integration-daemon
|
72
|
+
#
|
73
|
+
s_client = ServerOps('integration-daemon', url, user_id=user_id,
|
74
|
+
user_pwd=user_pwd)
|
75
|
+
integ_status = s_client.get_integration_daemon_status()
|
76
|
+
|
77
|
+
if type(integ_status) is dict:
|
78
|
+
connections = integ_status['integrationConnectorReports']
|
79
|
+
for connection in connections:
|
80
|
+
int_con_name = connection['connectorName']
|
81
|
+
resource_guid = connection['connectorGUID']
|
82
|
+
out = f"INTEGRATION_GUIDS['{int_con_name}'] = '{resource_guid}'\n"
|
83
|
+
console.print(f"Added {int_con_name} integration connector with GUID {resource_guid}")
|
84
|
+
f.write(out)
|
85
|
+
|
86
|
+
|
69
87
|
|
70
88
|
|
71
89
|
if __name__ == "__main__":
|
@@ -0,0 +1,75 @@
|
|
1
|
+
examples/doc_samples/Create_Collection_Sample.py,sha256=D8nhc4qLXIzAqVdJQjmFIS-jL6FzmYCMZyEviXnUbvg,11874
|
2
|
+
examples/doc_samples/Create_Sustainability_Collection_Sample.py,sha256=iLBm1LwRLi42Gayyb-wcWZ5NySQ6sc4kVSmwIAzP2Po,5049
|
3
|
+
examples/widgets/catalog_user/README.md,sha256=aCCVo7iqyE-XGEvmoYXnkIGM0VskF95JTj6Egzec7LM,883
|
4
|
+
examples/widgets/catalog_user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
examples/widgets/catalog_user/get_asset_graph.py,sha256=YgdB9bgWBEGAADS54vMGVKG6SVJuIDI_vegsWFFtzYE,10642
|
6
|
+
examples/widgets/catalog_user/get_collection.py,sha256=YexVIXm0fsG9ODYCrdjiH5j8s0jDg1SBXTLpohoEE-A,4414
|
7
|
+
examples/widgets/catalog_user/get_tech_type_elements.py,sha256=h7tEr0KGio9R6XL_GLxOxAGEOqpXY5qbgnPas7pF8Uw,5908
|
8
|
+
examples/widgets/catalog_user/get_tech_type_template.py,sha256=2bGRMIcXqlMFwNGRdobK-QtHW2TLM2kq0gxKgS_XzaM,5928
|
9
|
+
examples/widgets/catalog_user/list_assets.py,sha256=MRWha0yS3JPQEZNXqAktbEWYiU3kxdcmu4mV7YravQQ,5668
|
10
|
+
examples/widgets/catalog_user/list_glossary.py,sha256=abw3iBFEPHcSpucq2Jqh6UEOILyzx2IfBWS9gPl968k,5176
|
11
|
+
examples/widgets/developer/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
|
12
|
+
examples/widgets/developer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
+
examples/widgets/developer/get_guid_info.py,sha256=-ob6Lh-LnZFXsv4GQD6Tw7YWoMsqDpQSr8rzIM1zvkY,3665
|
14
|
+
examples/widgets/developer/get_tech_details.py,sha256=zy6ZzRpBcS5zZDtBkEKIGKsZsBqgLshe01oezEhuHVU,5466
|
15
|
+
examples/widgets/developer/list_asset_types.py,sha256=aHueMCVHmvrn331kgFrEzvTOxBf0dUIt7PZhQEvTqfY,3897
|
16
|
+
examples/widgets/developer/list_registered_services.py,sha256=AV6CfSt05RYfSPZT-jms3r10Q72r3ly4Ihu_y4YXKL8,6108
|
17
|
+
examples/widgets/developer/list_relationship_types.py,sha256=uRiLTy4Gk1Cryxvqj5Bo8f-Ll55SMC_XEzm8TsH0JqQ,5340
|
18
|
+
examples/widgets/developer/list_tech_templates.py,sha256=d1YARxPaRWG5Ri2I5m8OjBna4y0HxeWNyll8SiWLIaM,5943
|
19
|
+
examples/widgets/developer/list_tech_types.py,sha256=L12F7JP1-HXXQpzmPMzsTfP-Xy0tfsiKIwIh31aWPn0,4364
|
20
|
+
examples/widgets/developer/list_valid_metadata_values.py,sha256=jbJsqELH1MlsKTBR4zbuRnzCCd412I_atlrR0kkhBCs,5785
|
21
|
+
examples/widgets/operational/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
|
22
|
+
examples/widgets/operational/__init__.py,sha256=8tY0fA8CAnbJQhN6acd_5RGuLr4Ppltq4j5FyTT0WHE,113
|
23
|
+
examples/widgets/operational/egeria_ops.py,sha256=Reie1DgXuz6dUYGsmyt2T2jV68ZfarEOfKuNUWrK7Lg,9094
|
24
|
+
examples/widgets/operational/engine_actions.py,sha256=029OOnvkYHW3z43GiroH0WmNJlDiUTsyF7K_Q8B7r7w,3062
|
25
|
+
examples/widgets/operational/integration_daemon_actions.py,sha256=8YVVrce7olNpsWV_WeR7AwTbsK3hh9NtXgLUhRrbpSE,3997
|
26
|
+
examples/widgets/operational/list_catalog_targets.py,sha256=6_DRwnNZ6rwNYEPdh5yCQAurTLU6wNCTr8L6EnlE2vc,4521
|
27
|
+
examples/widgets/operational/load_archive.py,sha256=j9K4uPpUzvqEyvsUMZoY0-1NVuljAwqcMg8Lhin_p1E,2280
|
28
|
+
examples/widgets/operational/monitor_asset_events.py,sha256=eERSZaL-F_3OYFfao4qfsLtFLZoLFkxUJHH9XVt5hDM,3731
|
29
|
+
examples/widgets/operational/monitor_coco_status.py,sha256=ERz3OJ0TXImNKHGD4gJvgT3pl2gS23ewAdUuYVLUhEE,3299
|
30
|
+
examples/widgets/operational/monitor_engine_activity.py,sha256=zjbwh1CGVcslClnmLlekonTfcepV8RmE0huPaH91xZA,6931
|
31
|
+
examples/widgets/operational/monitor_gov_eng_status.py,sha256=locX-Row4PKuciVM8zgdR2HVGs6NHy1ipTIU1dXhFGk,5602
|
32
|
+
examples/widgets/operational/monitor_integ_daemon_status.py,sha256=VAYAoLvacqRZL2ISzLFPW-ee-3Y7gFoK30R_wFSbDR8,8544
|
33
|
+
examples/widgets/operational/monitor_platform_status.py,sha256=ehRuz6kYsv4nHGTifRYYqWA9JowOVkabpHZFMI9xmuA,5742
|
34
|
+
examples/widgets/operational/monitor_server_list.py,sha256=eGjj-ucKXPdwQk8nqWsc4PLmIV1X9wPIMzggATIQk_s,4294
|
35
|
+
examples/widgets/operational/monitor_server_status.py,sha256=To-Qa4oj6Sq9Q8FZoowOgggYRxOqhk_wMTQ0IwCuDWU,4029
|
36
|
+
examples/widgets/operational/ops_config.py,sha256=7l20Y7eZTkPIfWLezh0QiNF2FaQB98o6qtj7QRbGgoY,1300
|
37
|
+
examples/widgets/operational/refresh_integration_daemon.py,sha256=QDB3dpAlLY8PhrGhAZG4tWKzx_1R0bOOM048N68RQ4w,2712
|
38
|
+
examples/widgets/operational/restart_integration_daemon.py,sha256=fID7qGFL5RD6rfn9PgXf5kwI4MU0Ho_IGXnDVbKT5nU,2710
|
39
|
+
examples/widgets/personal_organizer/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
|
40
|
+
examples/widgets/personal_organizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
|
+
examples/widgets/personal_organizer/list_my_profile.py,sha256=Xt2anVXadJdJDgmCJEb0I_rRfcZ44mMM0ltRrA9KZJM,4843
|
42
|
+
examples/widgets/personal_organizer/list_projects.py,sha256=BiHz_dqWcQcGxcz-M-9CGJ1-vZzxm97pptTkuUoT43A,6224
|
43
|
+
examples/widgets/personal_organizer/list_todos.py,sha256=cmKHOTmPLOFJhxp5dPBBLVD7nZfOM-RIYSdNTn3F3b8,5328
|
44
|
+
examples/widgets/personal_organizer/monitor_my_todos.py,sha256=Vfu83kI3Ju1IhdMdhz3dK3N7XxBu-QJ5mEYhdTt_sak,6136
|
45
|
+
examples/widgets/personal_organizer/monitor_open_todos.py,sha256=2giKLYMiKlyyUdr16J0U3cZgCkMemhlmibWYVM30Wtw,5070
|
46
|
+
pyegeria/Xfeedback_manager_omvs.py,sha256=uNQMOPG08UyIuLzBfYt4uezDyLWdpBgJ2ZuvqumaWuY,9231
|
47
|
+
pyegeria/Xloaded_resources_omvs.py,sha256=cseWZTIwNhkzhZ0fhujI66DslNAQcjuwsz_p1GRmSPQ,3392
|
48
|
+
pyegeria/__init__.py,sha256=8qGKb9ff4JaEC16SkP-60yKMdkxEBF3aEJCSjR_OfPo,7611
|
49
|
+
pyegeria/_client.py,sha256=mTK3qqaxwrwn4OiIKZkSkMVEsHPJsHxKmfz1LK_FgEg,26308
|
50
|
+
pyegeria/_deprecated_gov_engine.py,sha256=_DAEHsksnTKGqL9-TaaMVrfnNOrvatNACfg7pJ-ZX4w,17600
|
51
|
+
pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
|
52
|
+
pyegeria/_globals.py,sha256=DF6851qHPpoDrY4w5JGmT-8zmMfVXf9MMG6nKlu-BYM,616
|
53
|
+
pyegeria/_validators.py,sha256=DQuMsATRGxGSBtOrVtXlCgWXGhj6Nh-uqPtCsrUGLxk,12703
|
54
|
+
pyegeria/action_author_omvs.py,sha256=m0wsfmyO-VxRDaPpACeIDw8eVAFu3RVbo45RPCUel9M,6340
|
55
|
+
pyegeria/asset_catalog_omvs.py,sha256=oQ8ThJOiIXfgmlT6I9RwxvBDCpkK0EZGcACJNatzzlQ,25900
|
56
|
+
pyegeria/automated_curation_omvs.py,sha256=7mBOXnq06zf1TB3vzo2FPUw2GRLZKKYT2MDQkPxDokk,121332
|
57
|
+
pyegeria/collection_manager_omvs.py,sha256=IyGCbqx2Blm0OwCsC2071EeoNWHXyWGl_6pEtacizAs,112642
|
58
|
+
pyegeria/core_omag_server_config.py,sha256=16ld7aBTgO3gGhvFs-_yzwqPsatdCAiKYi005_2evZU,93096
|
59
|
+
pyegeria/create_tech_guid_lists.py,sha256=jClpvURy20o4UV83LOwhGg3TZdHGzfjZ9y0MNZyG2To,4282
|
60
|
+
pyegeria/full_omag_server_config.py,sha256=l4G0oM6l-axosYACypqNqzkF6wELzs9FgKJwvDMF0Fc,45817
|
61
|
+
pyegeria/glossary_browser_omvs.py,sha256=nUCDSQ8cw8vuYgjfcaj1zLIefVI5j51evxPyXCIc4X8,101716
|
62
|
+
pyegeria/glossary_manager_omvs.py,sha256=AyTNBeOwa7ISOkpjzHHEtpiFzFo0ykcEQ525h_wqfMM,133328
|
63
|
+
pyegeria/my_profile_omvs.py,sha256=w-3aL9s7VlonUGtdKgfMSCeYIbCtJn0zDLTuqUxAYFc,42265
|
64
|
+
pyegeria/platform_services.py,sha256=T2UiAl7tPfOBGL_H2b73XyyHtR0Y36irgbaljZTjD4I,41808
|
65
|
+
pyegeria/project_manager_omvs.py,sha256=_U6m2vquu4eEV7aY8X3hsvfm2zX0EBica1reGWX9amY,77078
|
66
|
+
pyegeria/registered_info.py,sha256=GfMcYz3IO0aNquf8qCrYQ9cA5KplhPx1kNt0_nMMpTM,6475
|
67
|
+
pyegeria/runtime_manager_omvs.py,sha256=WekK7Yeyn6Qu9YmbSDo3m57MN0xOsIm9M8kGHfROZHI,37628
|
68
|
+
pyegeria/server_operations.py,sha256=ZX7FlJRrAC7RK4bq4wHWepEsYbbWlqkUZdsJrTplVVU,16534
|
69
|
+
pyegeria/utils.py,sha256=pkVmS3RrbjaS9yz7FtOCwaOfV5FMqz-__Rt5koCnd9c,5374
|
70
|
+
pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
|
71
|
+
pyegeria-0.5.8.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
72
|
+
pyegeria-0.5.8.0.dist-info/METADATA,sha256=_mDvp0FJHjjCc6UlR-Jeci9MTrLswvTtt052cjJa1lI,2688
|
73
|
+
pyegeria-0.5.8.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
74
|
+
pyegeria-0.5.8.0.dist-info/entry_points.txt,sha256=O6KPHL9wFHEN918pH91br8pfNbeVGYkwmW_kaPMkSSw,2736
|
75
|
+
pyegeria-0.5.8.0.dist-info/RECORD,,
|
@@ -1,4 +1,5 @@
|
|
1
1
|
[console_scripts]
|
2
|
+
egeria_ops=examples.widgets.personal_organizer.egeria_ops:cli
|
2
3
|
get_asset_graph=examples.widgets.catalog_user.get_asset_graph:main
|
3
4
|
get_collection=examples.widgets.catalog_user.get_collection:main
|
4
5
|
get_guid_info=examples.widgets.developer.get_guid_info:main
|
@@ -7,6 +8,7 @@ get_tech_type_elements=examples.widgets.operational.get_tech_type_elements:main
|
|
7
8
|
get_tech_type_template=examples.widgets.operational.get_tech_type_template:main
|
8
9
|
list_asset_types=examples.widgets.developer.list_asset_types:main
|
9
10
|
list_assets=examples.widgets.catalog_user.list_assets:main
|
11
|
+
list_catalog_targets=examples.widgets.operational.list_catalog_targets:main
|
10
12
|
list_eng_action_status=examples.widgets.operational.monitor_eng_action_status:main_paging
|
11
13
|
list_glossary=examples.widgets.catalog_user.list_glossary:main
|
12
14
|
list_gov_eng_status=examples.widgets.operational.monitor_gov_eng_status:main_paging
|
@@ -32,4 +34,5 @@ monitor_platform_status=examples.widgets.operational.monitor_platform_status:mai
|
|
32
34
|
monitor_server_list=examples.widgets.operational.monitor_server_list:main
|
33
35
|
monitor_server_status=examples.widgets.operational.monitor_server_status:main
|
34
36
|
refresh_integration_daemon=examples.widgets.operational.refresh_integration_daemon:main
|
37
|
+
restart_integration_daemon=examples.widgets.operational.restart_integration_daemon:main
|
35
38
|
|
@@ -1,69 +0,0 @@
|
|
1
|
-
examples/doc_samples/Create_Collection_Sample.py,sha256=D8nhc4qLXIzAqVdJQjmFIS-jL6FzmYCMZyEviXnUbvg,11874
|
2
|
-
examples/doc_samples/Create_Sustainability_Collection_Sample.py,sha256=iLBm1LwRLi42Gayyb-wcWZ5NySQ6sc4kVSmwIAzP2Po,5049
|
3
|
-
examples/widgets/catalog_user/README.md,sha256=aCCVo7iqyE-XGEvmoYXnkIGM0VskF95JTj6Egzec7LM,883
|
4
|
-
examples/widgets/catalog_user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
examples/widgets/catalog_user/get_asset_graph.py,sha256=vVJ3p30zU_jrQXqRFjUzs-XdRJWaaVSuFUsZSt_D4Cg,10561
|
6
|
-
examples/widgets/catalog_user/get_collection.py,sha256=JVf31zL01JH2k5gry4RF2zFCSyuYmu2TS2KuCmgxi7s,4353
|
7
|
-
examples/widgets/catalog_user/list_assets.py,sha256=qZeNC86JjL1xQadnN8iNZYUpL0Q6o-uneELpMUb-JCg,5609
|
8
|
-
examples/widgets/catalog_user/list_glossary.py,sha256=j5rc31aYDAWHwj-f6ScZb2eJvfJlN7Xltjp31GQ2RoY,5116
|
9
|
-
examples/widgets/developer/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
|
10
|
-
examples/widgets/developer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
|
-
examples/widgets/developer/get_guid_info.py,sha256=Ci58hIFUDWY8z_yHIN7fghGs6VM410_8-iaMRcbeThc,3593
|
12
|
-
examples/widgets/developer/get_tech_details.py,sha256=MIwbopr4hLBwxCd_zWBm7MS8XOuuxxhizXsSDwSvR7U,5405
|
13
|
-
examples/widgets/developer/list_asset_types.py,sha256=aHueMCVHmvrn331kgFrEzvTOxBf0dUIt7PZhQEvTqfY,3897
|
14
|
-
examples/widgets/developer/list_registered_services.py,sha256=LziqjzXshNcpZvha4nm5_NIHfAmD44kudzDMmQHHvd0,6047
|
15
|
-
examples/widgets/developer/list_relationship_types.py,sha256=uRiLTy4Gk1Cryxvqj5Bo8f-Ll55SMC_XEzm8TsH0JqQ,5340
|
16
|
-
examples/widgets/developer/list_tech_templates.py,sha256=ldwI834WecQAWyAgqL7_7hxqzX7FnjhzHne3TIWy_Z4,5882
|
17
|
-
examples/widgets/developer/list_tech_types.py,sha256=b7zRg79c_x1kCGNT2HlcemCyuVKii7Z4KVZpHOxLgAQ,4302
|
18
|
-
examples/widgets/developer/list_valid_metadata_values.py,sha256=HIWV5nA5KoKhGrF4smF_gNAo0H_iBwCWr06-_o9XpyA,5722
|
19
|
-
examples/widgets/operational/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
|
20
|
-
examples/widgets/operational/__init__.py,sha256=8ebdyTD7i-XXyZr0vDx6jnXalE6QjhCvu7n6YXxwgL0,112
|
21
|
-
examples/widgets/operational/get_tech_type_elements.py,sha256=_wSZOShJ17kuMlgh8xC-iAzByi1A0JeB4cmEiAL87M0,5846
|
22
|
-
examples/widgets/operational/get_tech_type_template.py,sha256=qIb-JYcoI_YR7NHUKH7TSdq56QI1H4QuyqWTvldNKNo,5866
|
23
|
-
examples/widgets/operational/load_archive.py,sha256=j9K4uPpUzvqEyvsUMZoY0-1NVuljAwqcMg8Lhin_p1E,2280
|
24
|
-
examples/widgets/operational/monitor_asset_events.py,sha256=u9kNtkdVxOwi1LYYlaKup_fG5b2vJj8zdF74mvEHGek,3686
|
25
|
-
examples/widgets/operational/monitor_coco_status.py,sha256=QloMgVcXL2Fx2XHyk71PKCwmzRfc_Q_cAvpyomcYi_Y,3322
|
26
|
-
examples/widgets/operational/monitor_eng_action_status.py,sha256=ac0idBPvIQclhm0zjv-W4_ZFm47GjuH-qqHGNZWm6TE,6977
|
27
|
-
examples/widgets/operational/monitor_gov_eng_status.py,sha256=b1FBkovNQJ3x9GBEZm3SrbTBYRUUeRgSeuITi0-KPuo,5579
|
28
|
-
examples/widgets/operational/monitor_integ_daemon_status.py,sha256=DbLKMGJSYZEp6Ox-6cjn0_sxTw_6VDSsxs3-vhM7kts,8800
|
29
|
-
examples/widgets/operational/monitor_platform_status.py,sha256=xjTgRIj9JvUWQ5BVAp7qmyS5fSxa6MnfY3SWHsuWx6w,5700
|
30
|
-
examples/widgets/operational/monitor_server_list.py,sha256=nOPeMjUAxMqfv0aq5zZtgkKa5Yqo6wXdC3nImQQNRmI,4317
|
31
|
-
examples/widgets/operational/monitor_server_status.py,sha256=rjVMacuwTLwKZ_bmZ_2TkyZTY2QpiMRZM3MCX3ERHMc,4016
|
32
|
-
examples/widgets/operational/refresh_integration_daemon.py,sha256=21QRNrfD6y1qFQhrgNxuF7GqJqgUdgvJz_UQDFvGPSA,2289
|
33
|
-
examples/widgets/personal_organizer/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
|
34
|
-
examples/widgets/personal_organizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
-
examples/widgets/personal_organizer/list_my_profile.py,sha256=Xt2anVXadJdJDgmCJEb0I_rRfcZ44mMM0ltRrA9KZJM,4843
|
36
|
-
examples/widgets/personal_organizer/list_projects.py,sha256=AYCvKnxYKInRIB2FIFax0kjUH4zyZhKoV2vefgPmwVo,6070
|
37
|
-
examples/widgets/personal_organizer/list_todos.py,sha256=55mUAx1hCANh2WGeDT54ByXiN3VTWXGKtdx-P4TopWQ,5244
|
38
|
-
examples/widgets/personal_organizer/monitor_my_todos.py,sha256=oIWmIObQSOizGE0Z-lYRzPUBr2MSFDHhC-BUvyoMseY,6052
|
39
|
-
examples/widgets/personal_organizer/monitor_open_todos.py,sha256=TLXpRpkJrTxz87_2KHZDlPbJNWXGO4wRouSQM9pVuw4,5093
|
40
|
-
pyegeria/Xfeedback_manager_omvs.py,sha256=uNQMOPG08UyIuLzBfYt4uezDyLWdpBgJ2ZuvqumaWuY,9231
|
41
|
-
pyegeria/Xloaded_resources_omvs.py,sha256=cseWZTIwNhkzhZ0fhujI66DslNAQcjuwsz_p1GRmSPQ,3392
|
42
|
-
pyegeria/__init__.py,sha256=ZtYdj0GqdobIb16MsJwvBHVeNrc0yhcMdLLiqSy-DjY,6913
|
43
|
-
pyegeria/_client.py,sha256=mTK3qqaxwrwn4OiIKZkSkMVEsHPJsHxKmfz1LK_FgEg,26308
|
44
|
-
pyegeria/_deprecated_gov_engine.py,sha256=_DAEHsksnTKGqL9-TaaMVrfnNOrvatNACfg7pJ-ZX4w,17600
|
45
|
-
pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
|
46
|
-
pyegeria/_globals.py,sha256=DF6851qHPpoDrY4w5JGmT-8zmMfVXf9MMG6nKlu-BYM,616
|
47
|
-
pyegeria/_validators.py,sha256=DQuMsATRGxGSBtOrVtXlCgWXGhj6Nh-uqPtCsrUGLxk,12703
|
48
|
-
pyegeria/action_author_omvs.py,sha256=m0wsfmyO-VxRDaPpACeIDw8eVAFu3RVbo45RPCUel9M,6340
|
49
|
-
pyegeria/asset_catalog_omvs.py,sha256=oQ8ThJOiIXfgmlT6I9RwxvBDCpkK0EZGcACJNatzzlQ,25900
|
50
|
-
pyegeria/automated_curation_omvs.py,sha256=7mBOXnq06zf1TB3vzo2FPUw2GRLZKKYT2MDQkPxDokk,121332
|
51
|
-
pyegeria/collection_manager_omvs.py,sha256=IyGCbqx2Blm0OwCsC2071EeoNWHXyWGl_6pEtacizAs,112642
|
52
|
-
pyegeria/core_omag_server_config.py,sha256=16ld7aBTgO3gGhvFs-_yzwqPsatdCAiKYi005_2evZU,93096
|
53
|
-
pyegeria/create_tech_guid_lists.py,sha256=7BT02Nt7Vo4O71UelHtFx90-JJR4gIbCMAwAvdHCQ2I,3340
|
54
|
-
pyegeria/full_omag_server_config.py,sha256=l4G0oM6l-axosYACypqNqzkF6wELzs9FgKJwvDMF0Fc,45817
|
55
|
-
pyegeria/glossary_browser_omvs.py,sha256=nUCDSQ8cw8vuYgjfcaj1zLIefVI5j51evxPyXCIc4X8,101716
|
56
|
-
pyegeria/glossary_manager_omvs.py,sha256=AyTNBeOwa7ISOkpjzHHEtpiFzFo0ykcEQ525h_wqfMM,133328
|
57
|
-
pyegeria/my_profile_omvs.py,sha256=w-3aL9s7VlonUGtdKgfMSCeYIbCtJn0zDLTuqUxAYFc,42265
|
58
|
-
pyegeria/platform_services.py,sha256=T2UiAl7tPfOBGL_H2b73XyyHtR0Y36irgbaljZTjD4I,41808
|
59
|
-
pyegeria/project_manager_omvs.py,sha256=_U6m2vquu4eEV7aY8X3hsvfm2zX0EBica1reGWX9amY,77078
|
60
|
-
pyegeria/registered_info.py,sha256=GfMcYz3IO0aNquf8qCrYQ9cA5KplhPx1kNt0_nMMpTM,6475
|
61
|
-
pyegeria/runtime_manager_omvs.py,sha256=WekK7Yeyn6Qu9YmbSDo3m57MN0xOsIm9M8kGHfROZHI,37628
|
62
|
-
pyegeria/server_operations.py,sha256=ZX7FlJRrAC7RK4bq4wHWepEsYbbWlqkUZdsJrTplVVU,16534
|
63
|
-
pyegeria/utils.py,sha256=pkVmS3RrbjaS9yz7FtOCwaOfV5FMqz-__Rt5koCnd9c,5374
|
64
|
-
pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
|
65
|
-
pyegeria-0.5.6.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
66
|
-
pyegeria-0.5.6.6.dist-info/METADATA,sha256=2wOdPTRQgUezSDG8kbtD-uY7vmH_NYE5DWz3bxYkT4s,2688
|
67
|
-
pyegeria-0.5.6.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
68
|
-
pyegeria-0.5.6.6.dist-info/entry_points.txt,sha256=avEwf8rMzRyuEDtVqChDLseFqcGH-T6ZtvDRPUK2GQc,2510
|
69
|
-
pyegeria-0.5.6.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|