pyegeria 0.5.0__py3-none-any.whl → 0.5.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. examples/doc_samples/Create_Collection_Sample.py +292 -0
  2. examples/doc_samples/Create_Sustainability_Collection_Sample.py +115 -0
  3. examples/widgets/catalog_user/__init__.py +0 -10
  4. examples/widgets/catalog_user/list_assets.py +5 -2
  5. examples/widgets/catalog_user/view_asset_graph.py +15 -11
  6. examples/widgets/catalog_user/view_collection.py +4 -1
  7. examples/widgets/catalog_user/view_glossary.py +5 -2
  8. examples/widgets/developer/get_guid_info.py +7 -8
  9. examples/widgets/developer/get_tech_details.py +10 -21
  10. examples/widgets/developer/list_asset_types.py +4 -1
  11. examples/widgets/developer/list_registered_services.py +4 -1
  12. examples/widgets/developer/list_relationship_types.py +5 -3
  13. examples/widgets/developer/list_tech_templates.py +3 -2
  14. examples/widgets/developer/list_tech_types.py +4 -2
  15. examples/widgets/developer/list_valid_metadata_values.py +14 -12
  16. examples/widgets/operational/__init__.py +7 -0
  17. examples/widgets/operational/get_tech_type_elements.py +4 -1
  18. examples/widgets/operational/get_tech_type_template.py +10 -13
  19. examples/widgets/operational/view_asset_events.py +48 -47
  20. examples/widgets/operational/view_coco_status.py +4 -1
  21. examples/widgets/operational/view_eng_action_status.py +4 -1
  22. examples/widgets/operational/view_gov_eng_status.py +4 -1
  23. examples/widgets/operational/view_integ_daemon_status.py +4 -3
  24. examples/widgets/operational/view_platform_status.py +5 -1
  25. examples/widgets/operational/view_server_list.py +4 -1
  26. examples/widgets/operational/view_server_status.py +6 -1
  27. examples/widgets/personal_organizer/get_my_profile.py +5 -2
  28. examples/widgets/personal_organizer/list_projects.py +5 -3
  29. examples/widgets/personal_organizer/list_todos.py +5 -2
  30. examples/widgets/personal_organizer/view_my_todos.py +7 -10
  31. examples/widgets/personal_organizer/view_open_todos.py +5 -1
  32. {src/pyegeria → pyegeria}/__init__.py +3 -2
  33. {src/pyegeria → pyegeria}/utils.py +59 -61
  34. {pyegeria-0.5.0.dist-info → pyegeria-0.5.2.dist-info}/METADATA +8 -9
  35. pyegeria-0.5.2.dist-info/RECORD +67 -0
  36. pyegeria-0.5.2.dist-info/entry_points.txt +29 -0
  37. pyegeria-0.5.0.dist-info/RECORD +0 -66
  38. pyegeria-0.5.0.dist-info/entry_points.txt +0 -5
  39. src/pyegeria/config.toml +0 -11
  40. {src/pyegeria → pyegeria}/Xfeedback_manager_omvs.py +0 -0
  41. {src/pyegeria → pyegeria}/Xloaded_resources_omvs.py +0 -0
  42. {src/pyegeria → pyegeria}/_client.py +0 -0
  43. {src/pyegeria → pyegeria}/_deprecated_gov_engine.py +0 -0
  44. {src/pyegeria → pyegeria}/_exceptions.py +0 -0
  45. {src/pyegeria → pyegeria}/_globals.py +0 -0
  46. {src/pyegeria → pyegeria}/_validators.py +0 -0
  47. {src/pyegeria → pyegeria}/action_author_omvs.py +0 -0
  48. {src/pyegeria → pyegeria}/asset_catalog_omvs.py +0 -0
  49. {src/pyegeria → pyegeria}/automated_curation_omvs.py +0 -0
  50. {src/pyegeria → pyegeria}/collection_manager_omvs.py +0 -0
  51. {src/pyegeria → pyegeria}/core_guids.py +0 -0
  52. {src/pyegeria → pyegeria}/core_omag_server_config.py +0 -0
  53. {src/pyegeria → pyegeria}/full_omag_server_config.py +0 -0
  54. {src/pyegeria → pyegeria}/glossary_browser_omvs.py +0 -0
  55. {src/pyegeria → pyegeria}/glossary_manager_omvs.py +0 -0
  56. {src/pyegeria → pyegeria}/my_profile_omvs.py +0 -0
  57. {src/pyegeria → pyegeria}/platform_services.py +0 -0
  58. {src/pyegeria → pyegeria}/project_manager_omvs.py +0 -0
  59. {src/pyegeria → pyegeria}/registered_info.py +0 -0
  60. {src/pyegeria → pyegeria}/runtime_manager_omvs.py +0 -0
  61. {src/pyegeria → pyegeria}/server_operations.py +0 -0
  62. {src/pyegeria → pyegeria}/valid_metadata_omvs.py +0 -0
  63. {pyegeria-0.5.0.dist-info → pyegeria-0.5.2.dist-info}/LICENSE +0 -0
  64. {pyegeria-0.5.0.dist-info → pyegeria-0.5.2.dist-info}/WHEEL +0 -0
@@ -6,71 +6,69 @@ General utility functions in support of the Egeria Python Client package.
6
6
 
7
7
  """
8
8
  import json
9
- import textwrap
10
9
  from rich import print, print_json
11
- import pandas as pd
12
- from tabulate import tabulate
13
10
 
14
11
 
15
- def wrap_text(df: pd.DataFrame, wrap_len: int = 30) -> pd.DataFrame:
16
- """ Wrap the text in a dataframe
17
- Parameters
18
- ----------
19
- df : pandas.DataFrame
20
- The DataFrame to wrap the text in.
21
- wrap_len : int, optional
22
- The maximum length of each cell's contents to wrap. Defaults to 30.
23
-
24
- Returns
25
- -------
26
- pandas.DataFrame
27
- A new DataFrame with the wrapped text.
28
-
29
- """
30
-
31
- # Helper function to wrap text in a particular cell
32
- def wrap_cell_contents(cell_contents: str, wrap: int = 30) -> str:
33
- """ Wrap the text in a cell
34
- Parameters
35
- ----------
36
- cell_contents : str or any
37
- The contents of a cell in a dataframe.
38
- wrap : int, optional
39
- The maximum width at which to wrap the cell contents. Default is 30.
40
-
41
- Returns
42
- -------
43
- str or any
44
- If the cell_contents is a string and its length is greater than wrap_len,
45
- the contents are wrapped at wrap_len width using textwrap.
46
- Otherwise, the original cell_contents are returned as is.
47
- """
48
- if isinstance(cell_contents, str) and len(cell_contents) > wrap:
49
- return textwrap.fill(cell_contents, width=wrap)
50
- else:
51
- return cell_contents
52
-
53
- # Apply the helper function to each element in the DataFrame
54
- return df.map(lambda x: wrap_cell_contents(x, wrap_len))
55
-
56
-
57
- def print_nice_table(df, wrap_len: int = 20, tablefmt: str = "grid") -> None:
58
- """ Print a nice table from the data frame"""
59
- print(tabulate(wrap_text(df, wrap_len), headers="keys", tablefmt=tablefmt))
60
-
61
12
 
62
- def get_json_as_table(input_json, wrap_len: int = 30, tablefmt: str = "grid") -> str:
63
- """ return the input json as a table"""
64
- data = json.loads(json.dumps(input_json))
65
- df = pd.json_normalize(data)
66
- return tabulate(wrap_text(df, wrap_len), headers="keys", tablefmt=tablefmt)
67
-
68
-
69
- def print_json_list_as_table(input_json, wrap_len: int = 30, tablefmt: str = "grid") -> None:
70
- """ print a json list as a table"""
71
- data = json.loads(json.dumps(input_json))
72
- df = pd.json_normalize(data)
73
- print(tabulate(wrap_text(df, wrap_len), headers="keys", tablefmt=tablefmt))
13
+ # def wrap_text(df: pd.DataFrame, wrap_len: int = 30) -> pd.DataFrame:
14
+ # """ Wrap the text in a dataframe
15
+ # Parameters
16
+ # ----------
17
+ # df : pandas.DataFrame
18
+ # The DataFrame to wrap the text in.
19
+ # wrap_len : int, optional
20
+ # The maximum length of each cell's contents to wrap. Defaults to 30.
21
+ #
22
+ # Returns
23
+ # -------
24
+ # pandas.DataFrame
25
+ # A new DataFrame with the wrapped text.
26
+ #
27
+ # """
28
+ #
29
+ # # Helper function to wrap text in a particular cell
30
+ # def wrap_cell_contents(cell_contents: str, wrap: int = 30) -> str:
31
+ # """ Wrap the text in a cell
32
+ # Parameters
33
+ # ----------
34
+ # cell_contents : str or any
35
+ # The contents of a cell in a dataframe.
36
+ # wrap : int, optional
37
+ # The maximum width at which to wrap the cell contents. Default is 30.
38
+ #
39
+ # Returns
40
+ # -------
41
+ # str or any
42
+ # If the cell_contents is a string and its length is greater than wrap_len,
43
+ # the contents are wrapped at wrap_len width using textwrap.
44
+ # Otherwise, the original cell_contents are returned as is.
45
+ # """
46
+ # if isinstance(cell_contents, str) and len(cell_contents) > wrap:
47
+ # return textwrap.fill(cell_contents, width=wrap)
48
+ # else:
49
+ # return cell_contents
50
+ #
51
+ # # Apply the helper function to each element in the DataFrame
52
+ # return df.map(lambda x: wrap_cell_contents(x, wrap_len))
53
+ #
54
+ #
55
+ # def print_nice_table(df, wrap_len: int = 20, tablefmt: str = "grid") -> None:
56
+ # """ Print a nice table from the data frame"""
57
+ # print(tabulate(wrap_text(df, wrap_len), headers="keys", tablefmt=tablefmt))
58
+ #
59
+ #
60
+ # def get_json_as_table(input_json, wrap_len: int = 30, tablefmt: str = "grid") -> str:
61
+ # """ return the input json as a table"""
62
+ # data = json.loads(json.dumps(input_json))
63
+ # df = pd.json_normalize(data)
64
+ # return tabulate(wrap_text(df, wrap_len), headers="keys", tablefmt=tablefmt)
65
+ #
66
+ #
67
+ # def print_json_list_as_table(input_json, wrap_len: int = 30, tablefmt: str = "grid") -> None:
68
+ # """ print a json list as a table"""
69
+ # data = json.loads(json.dumps(input_json))
70
+ # df = pd.json_normalize(data)
71
+ # print(tabulate(wrap_text(df, wrap_len), headers="keys", tablefmt=tablefmt))
74
72
 
75
73
 
76
74
  def print_rest_request_body(body):
@@ -1,25 +1,24 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: A python client for Egeria
5
5
  Home-page: https://github.com/odpi/egeria-python
6
6
  License: Apache 2.0
7
7
  Keywords: egeria,metadata,governance
8
8
  Author: Dan Wolfson
9
9
  Author-email: dan.wolfson@pdr-associates.com
10
- Requires-Python: >=3.10,<4.0
10
+ Requires-Python: >=3.12,<4.0
11
11
  Classifier: License :: OSI Approved :: Apache Software License
12
12
  Classifier: License :: Other/Proprietary License
13
13
  Classifier: Programming Language :: Python
14
14
  Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.10
16
- Classifier: Programming Language :: Python :: 3.11
17
15
  Classifier: Programming Language :: Python :: 3.12
18
- Requires-Dist: httpx (>=0.26.0,<0.27.0)
19
- Requires-Dist: pytest (>=8.0.0,<9.0.0)
20
- Requires-Dist: rich (>=13.7.0,<14.0.0)
21
- Requires-Dist: setuptools (>=69.0.3,<70.0.0)
22
- Requires-Dist: validators (>=0.22.0,<0.23.0)
16
+ Requires-Dist: confluent-kafka (>=2.5.0,<3.0.0)
17
+ Requires-Dist: httpx (>=0.27.0,<0.28.0)
18
+ Requires-Dist: requests (>=2.32.3,<3.0.0)
19
+ Requires-Dist: rich (>=13.7.1,<14.0.0)
20
+ Requires-Dist: urllib3 (>=2.2.2,<3.0.0)
21
+ Requires-Dist: validators (>=0.32.0,<0.33.0)
23
22
  Project-URL: Repository, https://github.com/odpi/egeria-python
24
23
  Description-Content-Type: text/markdown
25
24
 
@@ -0,0 +1,67 @@
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/list_assets.py,sha256=s-Uje62lRYhpnPXt3Bl31IJ5YXcs8mp4-alPYAMMIqk,4701
6
+ examples/widgets/catalog_user/view_asset_graph.py,sha256=9JwwVL7PXRkXliXssxAaC3FDiS17FI_2F5OTjKB53gI,9314
7
+ examples/widgets/catalog_user/view_collection.py,sha256=RWvq_HT5e6JBAiQBc3w94SM6DYJJEJluVen3vX-PqGo,3270
8
+ examples/widgets/catalog_user/view_glossary.py,sha256=uDAZHJ1WPkkl9S1fzVKJOISjU8LDMPQO9KP4qdmaRnY,4652
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=-vOlZfC1lka_evpcwnnNmFU1A88x49kwKIJyYIJzQSg,2549
12
+ examples/widgets/developer/get_tech_details.py,sha256=HltpixTlzEsD2-z94E-aQBmjcTJ3b1NCCF4wygxp4Dc,3961
13
+ examples/widgets/developer/list_asset_types.py,sha256=iIA0TX9C_W5u_Bh3RzRMX0x2CdEdH7RFCkUOOP2ZzQw,2847
14
+ examples/widgets/developer/list_registered_services.py,sha256=oIrE3bSG92C107Q_gFoo7CWYy5LBliQWXElFyiVmRzg,5122
15
+ examples/widgets/developer/list_relationship_types.py,sha256=ruXH_6vIcnCuJvLc-zokvjnbIit1WQ33uRGSpipRuPo,4216
16
+ examples/widgets/developer/list_tech_templates.py,sha256=UPeuLq9jITpiPT3q_FM-k8-4tKYUNQHaYfqw1VOOlDY,5110
17
+ examples/widgets/developer/list_tech_types.py,sha256=K8lBr6o0-rk3niyRAe76E1X5M70yI38F556rzeZGSTQ,3941
18
+ examples/widgets/developer/list_valid_metadata_values.py,sha256=JMfkJe-hscrNJAqgQO7ehA6BaiB71r9Fs2eWvwUBheE,5275
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=ZxE6_-LqAEHffizKL_R3q3vGFM858VRsAqgQwt3Sbak,4985
22
+ examples/widgets/operational/get_tech_type_template.py,sha256=tzF0BqnKMZ0rxRPm3BLz0lnw9zJHgSgDUB3k2aGWAr4,4835
23
+ examples/widgets/operational/view_asset_events.py,sha256=rQoti3barirB2hdKl9Sm2liUWaAtaB-sbYh0wkoO3vA,2634
24
+ examples/widgets/operational/view_coco_status.py,sha256=QloMgVcXL2Fx2XHyk71PKCwmzRfc_Q_cAvpyomcYi_Y,3322
25
+ examples/widgets/operational/view_eng_action_status.py,sha256=sCkQh5XRDq0u6ZObxmUA0-wUhUoVMdV6_ho_d4PAdqw,4973
26
+ examples/widgets/operational/view_gov_eng_status.py,sha256=rcZv82l7q8jccUVIb-K2vazQorcKP86SAtES0--SQns,3998
27
+ examples/widgets/operational/view_integ_daemon_status.py,sha256=UUeHq55eFo4Amzgk_tU4h3IL2xh1sl2Xt7DR0PvnIHU,5859
28
+ examples/widgets/operational/view_platform_status.py,sha256=lqZnObLgJ0qf8hdcRwETXTGd8A8FbFc-rg_ckg86GfE,4457
29
+ examples/widgets/operational/view_server_list.py,sha256=j1V5RJ8kwGkyQO8nbygtD5W-85TVO4TsR3SbnKD2eDM,3125
30
+ examples/widgets/operational/view_server_status.py,sha256=slooQbjhdbTdRXZcRCHbZGUBtlHCO61xHa1J1P-iRKE,2826
31
+ examples/widgets/personal_organizer/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
32
+ examples/widgets/personal_organizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ examples/widgets/personal_organizer/get_my_profile.py,sha256=RCtEIKnvJZLTT3N2xU4zewSoEwpnj1r3HCAyidFfcbM,3743
34
+ examples/widgets/personal_organizer/list_projects.py,sha256=jybGE1Ve0LfoAiwZd5ltIGJL4nmR37Bwma0cWbloOsY,5027
35
+ examples/widgets/personal_organizer/list_todos.py,sha256=selzDcncGluu8Q3UYRa7Y3O-IkXblKVcR-fd1rctR1w,4203
36
+ examples/widgets/personal_organizer/view_my_todos.py,sha256=7MGGoxWeoBOuUSsFgu0nlDypJh35n0uruk-IHNsCclA,5497
37
+ examples/widgets/personal_organizer/view_open_todos.py,sha256=W_C1yT8usJV9E5BTQP7UeA1ISuDUanszqlWf75mtLZk,3995
38
+ pyegeria/Xfeedback_manager_omvs.py,sha256=uNQMOPG08UyIuLzBfYt4uezDyLWdpBgJ2ZuvqumaWuY,9231
39
+ pyegeria/Xloaded_resources_omvs.py,sha256=_1RKeIfq3ga6nvtOzZ5dWcDFgxNiUOPJhnyMv1iCm9s,3377
40
+ pyegeria/__init__.py,sha256=xKCym7qw9_KF32reDysCFxfWt0mIyhTZKNrLFazfCXs,2059
41
+ pyegeria/_client.py,sha256=uQqfjf0JPacEWcDvbKpCvCypbDmAmGHaFQf_UTPK7VQ,23524
42
+ pyegeria/_deprecated_gov_engine.py,sha256=_DAEHsksnTKGqL9-TaaMVrfnNOrvatNACfg7pJ-ZX4w,17600
43
+ pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
44
+ pyegeria/_globals.py,sha256=IKk40ogVhdYRagyau2k9pJqcs17UZ43Cx4iOeYRojOk,560
45
+ pyegeria/_validators.py,sha256=DQuMsATRGxGSBtOrVtXlCgWXGhj6Nh-uqPtCsrUGLxk,12703
46
+ pyegeria/action_author_omvs.py,sha256=m0wsfmyO-VxRDaPpACeIDw8eVAFu3RVbo45RPCUel9M,6340
47
+ pyegeria/asset_catalog_omvs.py,sha256=Y-Eh0k-zkJNOChVlLbC2bsTSBVLWhk-0-ewCV4YlyDY,25802
48
+ pyegeria/automated_curation_omvs.py,sha256=XPi0vO8hZTzx_qZ5yZ2FrJH28q3A2i0yByJ0hC7gWjE,118268
49
+ pyegeria/collection_manager_omvs.py,sha256=IyGCbqx2Blm0OwCsC2071EeoNWHXyWGl_6pEtacizAs,112642
50
+ pyegeria/core_guids.py,sha256=Cv5L3V_IzjHAw6ttGRlNXcrOgKdZdEbhCB1XaOZYYYE,4237
51
+ pyegeria/core_omag_server_config.py,sha256=16ld7aBTgO3gGhvFs-_yzwqPsatdCAiKYi005_2evZU,93096
52
+ pyegeria/full_omag_server_config.py,sha256=zzIyhCDolbLEJrc9JoBK308Mcq_96swYJopBN7_o4n8,45358
53
+ pyegeria/glossary_browser_omvs.py,sha256=nUCDSQ8cw8vuYgjfcaj1zLIefVI5j51evxPyXCIc4X8,101716
54
+ pyegeria/glossary_manager_omvs.py,sha256=AyTNBeOwa7ISOkpjzHHEtpiFzFo0ykcEQ525h_wqfMM,133328
55
+ pyegeria/my_profile_omvs.py,sha256=w-3aL9s7VlonUGtdKgfMSCeYIbCtJn0zDLTuqUxAYFc,42265
56
+ pyegeria/platform_services.py,sha256=T2UiAl7tPfOBGL_H2b73XyyHtR0Y36irgbaljZTjD4I,41808
57
+ pyegeria/project_manager_omvs.py,sha256=_U6m2vquu4eEV7aY8X3hsvfm2zX0EBica1reGWX9amY,77078
58
+ pyegeria/registered_info.py,sha256=GfMcYz3IO0aNquf8qCrYQ9cA5KplhPx1kNt0_nMMpTM,6475
59
+ pyegeria/runtime_manager_omvs.py,sha256=WekK7Yeyn6Qu9YmbSDo3m57MN0xOsIm9M8kGHfROZHI,37628
60
+ pyegeria/server_operations.py,sha256=YBdQJjPOmA1uhrUvzrjUKNGUc5nju9bhvCjF3AbdyWk,16164
61
+ pyegeria/utils.py,sha256=R1_WwYa8sYJUYR0H8sKrlwEa5BJ32M8-tdfB-zq8Xs4,5282
62
+ pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
63
+ pyegeria-0.5.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
64
+ pyegeria-0.5.2.dist-info/METADATA,sha256=BkQ6s2CAiPICBkwkuB-NFhb5rvfoAEEAavSO75rwqTg,2479
65
+ pyegeria-0.5.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
66
+ pyegeria-0.5.2.dist-info/entry_points.txt,sha256=yR22RzRO974vzRMeo7_ysc-_5pxHmgnvyk8FHTZviOw,1950
67
+ pyegeria-0.5.2.dist-info/RECORD,,
@@ -0,0 +1,29 @@
1
+ [console_scripts]
2
+ get_guid_info=examples.widgets.developer.get_guid_info:main
3
+ get_my_profile=examples.widgets.personal_organizer.get_my_profile:main
4
+ get_tech_details=examples.widgets.developer.get_tech_details:main
5
+ get_tech_type_elements=examples.widgets.operational.get_tech_type_elements:main
6
+ get_tech_type_template=examples.widgets.operational.get_tech_type_template:main
7
+ list_asset_types=examples.widgets.developer.list_asset_types:main
8
+ list_assets=examples.widgets.catalog_user.list_assets:main
9
+ list_projects=examples.widgets.personal_organizer.list_projects:main
10
+ list_registered_services=examples.widgets.developer.list_registered_services:main
11
+ list_relationship_types=examples.widgets.developer.list_relationship_types:main
12
+ list_tech_templates=examples.widgets.developer.list_tech_templates:main
13
+ list_tech_types=examples.widgets.developer.list_tech_types:main
14
+ list_todos=examples.widgets.personal_organizer.list_todos:main
15
+ list_valid_metadata_values=examples.widgets.developer.list_valid_metadata_values:main
16
+ view_asset_events=examples.widgets.operational.view_asset_events:main
17
+ view_asset_graph=examples.widgets.catalog_user.view_asset_graph:main
18
+ view_coco_status=examples.widgets.operational.view_coco_status:main
19
+ view_collection=examples.widgets.catalog_user.view_collection:main
20
+ view_eng_action_status=examples.widgets.operational.view_eng_action_status:main
21
+ view_glossary=examples.widgets.catalog_user.view_glossary:main
22
+ view_gov_eng_status=examples.widgets.operational.view_gov_eng_status:main
23
+ view_integ_daemon_status=examples.widgets.operational.view_integ_daemon_status:main
24
+ view_my_todos=examples.widgets.personal_organizer.view_my_todos:main
25
+ view_open_todos=examples.widgets.personal_organizer.view_open_todos:main
26
+ view_platform_status=examples.widgets.operational.view_platform_status:main
27
+ view_server_list=examples.widgets.operational.view_server_list:main
28
+ view_server_status=examples.widgets.operational.view_server_status:main
29
+
@@ -1,66 +0,0 @@
1
- examples/widgets/catalog_user/README.md,sha256=aCCVo7iqyE-XGEvmoYXnkIGM0VskF95JTj6Egzec7LM,883
2
- examples/widgets/catalog_user/__init__.py,sha256=q-MDnSfENt8n8QZPvM7eTKiKZhYCBUrgS7UryIxdx3Q,203
3
- examples/widgets/catalog_user/list_assets.py,sha256=SqbJ-tIT-D1lBNsxEVwHnu7KjJSJteQPn0Mmo6KwhBo,4677
4
- examples/widgets/catalog_user/view_asset_graph.py,sha256=3Q8kvFpMIXtvDp59WpNPF8owBDMqyZHitSON2Lp1-aU,9306
5
- examples/widgets/catalog_user/view_collection.py,sha256=O1O0m58REvqM4g8bTX5a1udxkAh-SZ_Y1bNvNTAK8gk,3247
6
- examples/widgets/catalog_user/view_glossary.py,sha256=TYAN0Dr0ouCbKP73KuST47wEZ0om3x5zYoZYgE0fwGk,4628
7
- examples/widgets/developer/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
8
- examples/widgets/developer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- examples/widgets/developer/get_guid_info.py,sha256=dIitXsOpAJ5Z459RxZj4iWfsWoZ-PNYxE5cxDXpnqnw,2542
10
- examples/widgets/developer/get_tech_details.py,sha256=Qo5e5QRKMVK2CZJF1KwcxvnaFzF10JYga5jm0vNhSDA,4315
11
- examples/widgets/developer/list_asset_types.py,sha256=H0SKCNyfKc_mw5D_ddTY2x3j57EqboB28I76wgmphJ4,2824
12
- examples/widgets/developer/list_registered_services.py,sha256=BGD1fntzDx1KfX-Y4S6On_v05pkcO9dARQDxAEIceIU,5099
13
- examples/widgets/developer/list_relationship_types.py,sha256=QR6S3IjvA1AAq4frIl_BdmhWNKyv-gsEE4Za6TxThYY,4193
14
- examples/widgets/developer/list_tech_templates.py,sha256=DYGE8nP0_Eb4HNIEwcMqGgyZeFwnGTEOeTYIXZ7_i58,5088
15
- examples/widgets/developer/list_tech_types.py,sha256=73ZnYBUC4PKfJEyW4eCCVT4UfjYHHfC-2ehe4IV_ots,3938
16
- examples/widgets/developer/list_valid_metadata_values.py,sha256=0XB_LShI9QonEQ_Ng_Skhu4t7IVeStz2hnj2zALcK8g,5296
17
- examples/widgets/operational/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
18
- examples/widgets/operational/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- examples/widgets/operational/get_tech_type_elements.py,sha256=iNRvG4IxgNafWeNNS5rSZ7OvPUduKsqyJ7_uaWTKpuo,4962
20
- examples/widgets/operational/get_tech_type_template.py,sha256=6wlplKOdziclpjLZRgyfmhdBVr7ZQhCuig0JwbubjF0,4958
21
- examples/widgets/operational/view_asset_events.py,sha256=9eJJhIbUmzOWNtxYh6hh_HvJZmsUMMtQTDXK3LSg7pA,2498
22
- examples/widgets/operational/view_coco_status.py,sha256=dRx6rgXqJQPl7n4_T0aISF-EkF54B7XXcEukM4MmySM,3299
23
- examples/widgets/operational/view_eng_action_status.py,sha256=4A8yzXpsBDzeoVWqfJ4rI5mRKSzKC6EIq4eEOCp9tvQ,4950
24
- examples/widgets/operational/view_gov_eng_status.py,sha256=GNSWU8qWB7N55ZH7mT3QnYOt-jF19QzqfwiWnHQO1sM,3975
25
- examples/widgets/operational/view_integ_daemon_status.py,sha256=3KP4LiR54Ko06mWlzluZX7daSTgRBdMWYpsH2RaR9E0,5898
26
- examples/widgets/operational/view_platform_status.py,sha256=iXOQ1kbU6ABdXAk48bTDWRCUGZCCsBoA8-uogSFTGBQ,4433
27
- examples/widgets/operational/view_server_list.py,sha256=xMRlvLK6-wDJkGpEAriciK8AHD_FhUT9d1kPwqSa1Z4,3102
28
- examples/widgets/operational/view_server_status.py,sha256=20kwAvO6Vo49PXm5127UrRWm7m5teJ_BfLqQjnwDTbw,2801
29
- examples/widgets/personal_organizer/README.md,sha256=ZheFhj_VoPMhcWjW3pGchHB0vH_A9PklSmrSkzKdrcQ,844
30
- examples/widgets/personal_organizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
- examples/widgets/personal_organizer/get_my_profile.py,sha256=6a3Q6PQkWFDSiaevO__C1e-zLgviWYW0fjQnTGQ5M_M,3719
32
- examples/widgets/personal_organizer/list_projects.py,sha256=zM7nCyrHbj1evo64qru8jN9Ce6qZSvIHatIuq5ZzV_Q,5004
33
- examples/widgets/personal_organizer/list_todos.py,sha256=HWxHX_wIxvpWNRJ9wZIv0uQKKzSo4Dteff_4BNWSz5M,4179
34
- examples/widgets/personal_organizer/view_my_todos.py,sha256=j9mre_0EuJ_qV90cT7vu6BZL3brfH_cA6dZUIvNXm9Y,5686
35
- examples/widgets/personal_organizer/view_open_todos.py,sha256=SK5eOfzEvG9whEO2OdoWPDm63R1xYpGbPTdOSiHbLkw,3971
36
- src/pyegeria/Xfeedback_manager_omvs.py,sha256=uNQMOPG08UyIuLzBfYt4uezDyLWdpBgJ2ZuvqumaWuY,9231
37
- src/pyegeria/Xloaded_resources_omvs.py,sha256=_1RKeIfq3ga6nvtOzZ5dWcDFgxNiUOPJhnyMv1iCm9s,3377
38
- src/pyegeria/__init__.py,sha256=PGHAdooCyZwawxAyDzP2Tlj-yjKjdI4oOPtZmw95Qg8,2007
39
- src/pyegeria/_client.py,sha256=uQqfjf0JPacEWcDvbKpCvCypbDmAmGHaFQf_UTPK7VQ,23524
40
- src/pyegeria/_deprecated_gov_engine.py,sha256=_DAEHsksnTKGqL9-TaaMVrfnNOrvatNACfg7pJ-ZX4w,17600
41
- src/pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
42
- src/pyegeria/_globals.py,sha256=IKk40ogVhdYRagyau2k9pJqcs17UZ43Cx4iOeYRojOk,560
43
- src/pyegeria/_validators.py,sha256=DQuMsATRGxGSBtOrVtXlCgWXGhj6Nh-uqPtCsrUGLxk,12703
44
- src/pyegeria/action_author_omvs.py,sha256=m0wsfmyO-VxRDaPpACeIDw8eVAFu3RVbo45RPCUel9M,6340
45
- src/pyegeria/asset_catalog_omvs.py,sha256=Y-Eh0k-zkJNOChVlLbC2bsTSBVLWhk-0-ewCV4YlyDY,25802
46
- src/pyegeria/automated_curation_omvs.py,sha256=XPi0vO8hZTzx_qZ5yZ2FrJH28q3A2i0yByJ0hC7gWjE,118268
47
- src/pyegeria/collection_manager_omvs.py,sha256=IyGCbqx2Blm0OwCsC2071EeoNWHXyWGl_6pEtacizAs,112642
48
- src/pyegeria/config.toml,sha256=2Jp6ozhlVgDLWeG5702dTTAYEUv_jYNAFFWpEyR8xV8,214
49
- src/pyegeria/core_guids.py,sha256=Cv5L3V_IzjHAw6ttGRlNXcrOgKdZdEbhCB1XaOZYYYE,4237
50
- src/pyegeria/core_omag_server_config.py,sha256=16ld7aBTgO3gGhvFs-_yzwqPsatdCAiKYi005_2evZU,93096
51
- src/pyegeria/full_omag_server_config.py,sha256=zzIyhCDolbLEJrc9JoBK308Mcq_96swYJopBN7_o4n8,45358
52
- src/pyegeria/glossary_browser_omvs.py,sha256=nUCDSQ8cw8vuYgjfcaj1zLIefVI5j51evxPyXCIc4X8,101716
53
- src/pyegeria/glossary_manager_omvs.py,sha256=AyTNBeOwa7ISOkpjzHHEtpiFzFo0ykcEQ525h_wqfMM,133328
54
- src/pyegeria/my_profile_omvs.py,sha256=w-3aL9s7VlonUGtdKgfMSCeYIbCtJn0zDLTuqUxAYFc,42265
55
- src/pyegeria/platform_services.py,sha256=T2UiAl7tPfOBGL_H2b73XyyHtR0Y36irgbaljZTjD4I,41808
56
- src/pyegeria/project_manager_omvs.py,sha256=_U6m2vquu4eEV7aY8X3hsvfm2zX0EBica1reGWX9amY,77078
57
- src/pyegeria/registered_info.py,sha256=GfMcYz3IO0aNquf8qCrYQ9cA5KplhPx1kNt0_nMMpTM,6475
58
- src/pyegeria/runtime_manager_omvs.py,sha256=WekK7Yeyn6Qu9YmbSDo3m57MN0xOsIm9M8kGHfROZHI,37628
59
- src/pyegeria/server_operations.py,sha256=YBdQJjPOmA1uhrUvzrjUKNGUc5nju9bhvCjF3AbdyWk,16164
60
- src/pyegeria/utils.py,sha256=H0mew9IRcbsEi-pZfaT9HGuPO9CMOwnhOgIltyNvqTY,5240
61
- src/pyegeria/valid_metadata_omvs.py,sha256=aisdRodIwJSkyArAzfm_sEnBELh69xE8k4Nea-vHu8M,36745
62
- pyegeria-0.5.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
63
- pyegeria-0.5.0.dist-info/METADATA,sha256=fxeDHcE9fO20R9EBT8V_WsWyaGoZO-8FD3hSxT0niR0,2535
64
- pyegeria-0.5.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
65
- pyegeria-0.5.0.dist-info/entry_points.txt,sha256=6Xd-QIWZqG7bjA1G2591ws0bilvEdugtnqIxEYnVhyc,226
66
- pyegeria-0.5.0.dist-info/RECORD,,
@@ -1,5 +0,0 @@
1
- [console_scripts]
2
- list_asset_types=examples.widgets.developer.list_asset_types:main
3
- view_my_todos=examples.widgets.personal_organizer.view_my_todos:main
4
- view_server_status=examples.widgets.operational.view_server_status:main
5
-
src/pyegeria/config.toml DELETED
@@ -1,11 +0,0 @@
1
-
2
- # SPDX-License-Identifier: Apache-2.0
3
- # Copyright Contributors to the ODPi Egeria project.
4
-
5
- # config.toml for connected_asset_client_base
6
-
7
- [egeria_platform]
8
- url = "https://localhost:9443"
9
-
10
- [config]
11
- isDebug = false
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes