pyegeria 0.4.1__py3-none-any.whl → 0.5.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. {pyegeria-0.4.1.data/scripts → examples/doc_samples}/Create_Collection_Sample.py +0 -0
  2. {pyegeria-0.4.1.data/scripts → examples/doc_samples}/Create_Sustainability_Collection_Sample.py +0 -0
  3. examples/widgets/catalog_user/README.md +15 -0
  4. examples/widgets/catalog_user/__init__.py +0 -0
  5. {pyegeria-0.4.1.data/scripts → examples/widgets/catalog_user}/list_assets.py +6 -3
  6. {pyegeria-0.4.1.data/scripts → examples/widgets/catalog_user}/view_asset_graph.py +5 -2
  7. {pyegeria-0.4.1.data/scripts → examples/widgets/catalog_user}/view_collection.py +5 -2
  8. {pyegeria-0.4.1.data/scripts → examples/widgets/catalog_user}/view_glossary.py +6 -3
  9. examples/widgets/developer/README.md +24 -0
  10. examples/widgets/developer/__init__.py +0 -0
  11. {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/get_guid_info.py +6 -8
  12. {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/get_tech_details.py +11 -22
  13. {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_asset_types.py +5 -2
  14. {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_registered_services.py +5 -2
  15. {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_relationship_types.py +6 -4
  16. {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_tech_templates.py +3 -2
  17. {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_tech_types.py +5 -3
  18. {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_valid_metadata_values.py +15 -13
  19. examples/widgets/operational/README.md +24 -0
  20. examples/widgets/operational/__init__.py +7 -0
  21. {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/get_tech_type_elements.py +5 -2
  22. {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/get_tech_type_template.py +11 -14
  23. examples/widgets/operational/view_asset_events.py +78 -0
  24. {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_coco_status.py +5 -2
  25. {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_eng_action_status.py +5 -2
  26. {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_gov_eng_status.py +5 -2
  27. {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_integ_daemon_status.py +5 -4
  28. {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_platform_status.py +6 -2
  29. {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_server_list.py +5 -2
  30. {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_server_status.py +7 -4
  31. examples/widgets/personal_organizer/README.md +17 -0
  32. examples/widgets/personal_organizer/__init__.py +0 -0
  33. {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/get_my_profile.py +6 -3
  34. {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/list_projects.py +6 -4
  35. {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/list_todos.py +6 -3
  36. {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/view_my_todos.py +8 -11
  37. {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/view_open_todos.py +6 -2
  38. pyegeria/__init__.py +1 -1
  39. pyegeria/automated_curation_omvs.py +6 -6
  40. pyegeria/core_guids.py +47 -54
  41. {pyegeria-0.4.1.dist-info → pyegeria-0.5.1.dist-info}/METADATA +15 -16
  42. pyegeria-0.5.1.dist-info/RECORD +67 -0
  43. {pyegeria-0.4.1.dist-info → pyegeria-0.5.1.dist-info}/WHEEL +1 -2
  44. pyegeria-0.5.1.dist-info/entry_points.txt +29 -0
  45. pyegeria-0.4.1.dist-info/RECORD +0 -58
  46. pyegeria-0.4.1.dist-info/top_level.txt +0 -1
  47. {pyegeria-0.4.1.dist-info → pyegeria-0.5.1.dist-info}/LICENSE +0 -0
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
@@ -106,7 +106,7 @@ def display_gov_actions_status(server: str = good_server_3, url: str = good_plat
106
106
  s_client.close_session()
107
107
 
108
108
 
109
- if __name__ == "__main__":
109
+ def main():
110
110
  parser = argparse.ArgumentParser()
111
111
  parser.add_argument("--server", help="Name of the server to display status for")
112
112
  parser.add_argument("--url", help="URL Platform to connect to")
@@ -117,3 +117,6 @@ if __name__ == "__main__":
117
117
  url = args.url if args.url is not None else "https://localhost:9443"
118
118
  userid = args.userid if args.userid is not None else 'garygeeke'
119
119
  display_gov_actions_status(server=server, url=url, username=userid)
120
+
121
+ if __name__ == "__main__":
122
+ main()
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
@@ -17,9 +17,7 @@ import time
17
17
 
18
18
  from rich import box
19
19
  from rich.live import Live
20
- from rich.markdown import Markdown
21
20
  from rich.table import Table
22
- from rich.text import Text
23
21
 
24
22
  from pyegeria import ServerOps, AutomatedCuration
25
23
  from pyegeria._exceptions import (
@@ -121,7 +119,7 @@ def display_integration_daemon_status(integ_server: str, integ_url: str,
121
119
  a_client.close_session()
122
120
 
123
121
 
124
- if __name__ == "__main__":
122
+ def main():
125
123
  parser = argparse.ArgumentParser()
126
124
  parser.add_argument("--integ_server", help="Name of the integration server to display status for")
127
125
  parser.add_argument("--integ_url", help="URL Platform to connect to")
@@ -138,3 +136,6 @@ if __name__ == "__main__":
138
136
  display_integration_daemon_status(integ_server=integ_server, integ_url=integ_url,
139
137
  view_server = view_server, view_url = view_url,
140
138
  user=userid)
139
+
140
+ if __name__ == "__main__":
141
+ main()
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
@@ -109,7 +109,7 @@ def display_status(server: str, url: str, username: str):
109
109
  r_client.close_session()
110
110
 
111
111
 
112
- if __name__ == "__main__":
112
+ def main():
113
113
  parser = argparse.ArgumentParser()
114
114
  parser.add_argument("--server", help="Name of the server to display status for")
115
115
  parser.add_argument("--url", help="URL Platform to connect to")
@@ -121,3 +121,7 @@ if __name__ == "__main__":
121
121
  userid = args.userid if args.userid is not None else 'erinoverview'
122
122
 
123
123
  display_status(server, url, userid)
124
+
125
+
126
+ if __name__ == "__main__":
127
+ main()
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
@@ -79,7 +79,7 @@ def display_status(server: str, url: str, username: str):
79
79
  c_client.close_session()
80
80
 
81
81
 
82
- if __name__ == "__main__":
82
+ def main():
83
83
  parser = argparse.ArgumentParser()
84
84
  parser.add_argument("--server", help="Name of the server to display status for")
85
85
  parser.add_argument("--url", help="URL Platform to connect to")
@@ -91,3 +91,6 @@ if __name__ == "__main__":
91
91
  userid = args.userid if args.userid is not None else 'garygeeke'
92
92
 
93
93
  display_status(server, url, userid)
94
+
95
+ if __name__ == "__main__":
96
+ main()
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
@@ -12,16 +12,16 @@ A simple server status display
12
12
  import time
13
13
  import argparse
14
14
 
15
- from pyegeria._exceptions import (
15
+ from pyegeria import (
16
16
  InvalidParameterException,
17
17
  PropertyServerException,
18
18
  UserNotAuthorizedException,
19
19
  print_exception_response,
20
+ ServerOps
20
21
  )
21
22
  from rich.table import Table
22
23
  from rich.live import Live
23
24
 
24
- from pyegeria.server_operations import ServerOps
25
25
 
26
26
 
27
27
  def test_display_status(server: str, url: str , username: str ):
@@ -72,7 +72,7 @@ def test_display_status(server: str, url: str , username: str ):
72
72
  assert e.related_http_code != "200", "Invalid parameters"
73
73
 
74
74
 
75
- if __name__ == "__main__":
75
+ def main():
76
76
  parser = argparse.ArgumentParser()
77
77
  parser.add_argument("--server", help="Name of the server to display status for")
78
78
  parser.add_argument("--url", help="URL Platform to connect to")
@@ -84,3 +84,6 @@ if __name__ == "__main__":
84
84
  userid = args.userid if args.userid is not None else 'garygeeke'
85
85
 
86
86
  test_display_status(server, url, userid)
87
+
88
+ if __name__ == "__main__":
89
+ main()
@@ -0,0 +1,17 @@
1
+ <!-- SPDX-License-Identifier: CC-BY-4.0 -->
2
+ <!-- Copyright Contributors to the Egeria project. -->
3
+
4
+ # Personal Organizer
5
+
6
+ These widgets display different kinds of information about the projects, tasks and todos. Widgets
7
+ will continue to be added over time to cover more facets of catalog use.
8
+
9
+ * get_my_profiles.py - gets profile information about an individual.
10
+ * list_projects.py - lists information about a specified project or projects containing the search string.
11
+ * list_todos.py - lists information about a specified todo item or all todos containing the search string
12
+ * view_my_todos.py - view live status information about an individual's todos.
13
+ * view_open_todos.py - view live status information about open todos.
14
+
15
+ ----
16
+ License: [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
17
+ Copyright Contributors to the Egeria project.
File without changes
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
@@ -97,7 +97,7 @@ def display_my_profiles(server: str, url: str, username: str):
97
97
  print_exception_response(e)
98
98
  assert e.related_http_code != "200", "Invalid parameters"
99
99
 
100
- if __name__ == "__main__":
100
+ def main():
101
101
  parser = argparse.ArgumentParser()
102
102
  parser.add_argument("--server", help="Name of the server to display status for")
103
103
  parser.add_argument("--url", help="URL Platform to connect to")
@@ -111,4 +111,7 @@ if __name__ == "__main__":
111
111
  # guid = args.guid if args.guid is not None else None
112
112
  guid = None
113
113
 
114
- display_my_profiles(server, url, userid)
114
+ display_my_profiles(server, url, userid)
115
+
116
+ if __name__ == "__main__":
117
+ main()
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-Lic
4
4
  ense-Identifier: Apache-2.0
@@ -120,8 +120,7 @@ def display_list(project_name: str, server: str, url: str,
120
120
  else:
121
121
  print_exception_response(e)
122
122
 
123
- if __name__ == "__main__":
124
-
123
+ def main():
125
124
  parser = argparse.ArgumentParser()
126
125
  parser.add_argument("--server", help="Name of the server to display status for")
127
126
  parser.add_argument("--url", help="URL Platform to connect to")
@@ -136,4 +135,7 @@ if __name__ == "__main__":
136
135
  save_output = args.save_output if args.save_output is not None else False
137
136
  project_name = Prompt.ask("Enter the Project to retrieve:", default="*")
138
137
 
139
- display_list(project_name, server, url, userid, save_output)
138
+ display_list(project_name, server, url, userid, save_output)
139
+
140
+ if __name__ == "__main__":
141
+ main()
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-Lic
4
4
  ense-Identifier: Apache-2.0
@@ -107,7 +107,7 @@ def display_to_dos(search_string: str, guid:str, server: str, url: str, username
107
107
  print_exception_response(e)
108
108
  assert e.related_http_code != "200", "Invalid parameters"
109
109
 
110
- if __name__ == "__main__":
110
+ def main():
111
111
  parser = argparse.ArgumentParser()
112
112
  parser.add_argument("--server", help="Name of the server to display status for")
113
113
  parser.add_argument("--url", help="URL Platform to connect to")
@@ -121,4 +121,7 @@ if __name__ == "__main__":
121
121
  guid = None
122
122
 
123
123
  search_string = Prompt.ask("Enter the ToDo you are searching for:", default="*")
124
- display_to_dos(search_string, guid,server, url, userid)
124
+ display_to_dos(search_string, guid,server, url, userid)
125
+
126
+ if __name__ == "__main__":
127
+ main()
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
@@ -10,13 +10,11 @@ A simple status display of a user's todos
10
10
  """
11
11
 
12
12
  import argparse
13
- import json
14
13
  import time
15
14
 
16
15
  from rich import box
17
16
  from rich.live import Live
18
17
  from rich.table import Table
19
- from rich import console
20
18
 
21
19
  from pyegeria import (
22
20
  InvalidParameterException,
@@ -24,18 +22,14 @@ from pyegeria import (
24
22
  UserNotAuthorizedException,
25
23
  print_exception_response,
26
24
  )
27
- from pyegeria._deprecated_gov_engine import GovEng
28
25
  from pyegeria.my_profile_omvs import MyProfile
26
+
29
27
  disable_ssl_warnings = True
30
28
 
31
29
  good_platform1_url = "https://127.0.0.1:9443"
32
30
  good_platform2_url = "https://egeria.pdr-associates.com:7443"
33
31
  bad_platform1_url = "https://localhost:9443"
34
32
 
35
- # good_platform1_url = "https://127.0.0.1:30080"
36
- # good_platform2_url = "https://127.0.0.1:30081"
37
- # bad_platform1_url = "https://localhost:9443"
38
-
39
33
  good_user_1 = "garygeeke"
40
34
  good_user_2 = "erinoverview"
41
35
  bad_user_1 = "eviledna"
@@ -74,7 +68,7 @@ def display_todos(server: str = good_server_4, url: str = good_platform1_url, us
74
68
  props = item["properties"]
75
69
  name = props["name"]
76
70
  todo_type_name = props.get("toDoType", " ")
77
- todo_guid = item["elementHeader"]["guid"]
71
+ todo_guid = item["elementHeader"].get("guid", "---")
78
72
  created = props.get("creationTime", " ")
79
73
  priority = str(props.get("priority", " "))
80
74
  due = props.get("dueTime", " ")
@@ -118,7 +112,7 @@ def display_todos(server: str = good_server_4, url: str = good_platform1_url, us
118
112
  table.add_column("Sponsor")
119
113
 
120
114
  my_profile = m_client.get_my_profile()
121
- my_guid = my_profile["elementHeader"]["guid"]
115
+ my_guid = my_profile["elementHeader"].get("guid","---")
122
116
  my_ids = my_profile["userIdentities"]
123
117
  my_title = my_profile["profileProperties"].get("jobTitle", "No Title")
124
118
  user_ids = []
@@ -148,7 +142,7 @@ def display_todos(server: str = good_server_4, url: str = good_platform1_url, us
148
142
  assert e.related_http_code != "200", "Invalid parameters"
149
143
 
150
144
 
151
- if __name__ == "__main__":
145
+ def main():
152
146
  parser = argparse.ArgumentParser()
153
147
  parser.add_argument("--server", help="Name of the view server to connect to")
154
148
  parser.add_argument("--url", help="URL Platform to connect to")
@@ -160,3 +154,6 @@ if __name__ == "__main__":
160
154
  userid = args.userid if args.userid is not None else 'erinoverview'
161
155
  print(f"Starting display_todos with {server}, {url}, {userid}")
162
156
  display_todos(server=server, url=url, user=userid)
157
+
158
+ if __name__ == "__main__":
159
+ main()
@@ -1,4 +1,4 @@
1
- #!python
1
+ #!/usr/bin/env python3
2
2
  """
3
3
  SPDX-License-Identifier: Apache-2.0
4
4
  Copyright Contributors to the ODPi Egeria project.
@@ -105,7 +105,7 @@ def display_todos(server: str , url: str, user: str):
105
105
  m_client.close_session()
106
106
 
107
107
 
108
- if __name__ == "__main__":
108
+ def main():
109
109
  parser = argparse.ArgumentParser()
110
110
  parser.add_argument("--server", help="Name of the view server to connect to")
111
111
  parser.add_argument("--url", help="URL Platform to connect to")
@@ -117,3 +117,7 @@ if __name__ == "__main__":
117
117
  userid = args.userid if args.userid is not None else 'erinoverview'
118
118
  print(f"Starting display_todos with {server}, {url}, {userid}")
119
119
  display_todos(server=server, url=url, user=userid)
120
+
121
+
122
+ if __name__ == "__main__":
123
+ main()
pyegeria/__init__.py CHANGED
@@ -47,4 +47,4 @@ from .runtime_manager_omvs import RuntimeManager
47
47
  from .action_author_omvs import GovernanceAuthor
48
48
  from .glossary_manager_omvs import GlossaryManager
49
49
 
50
- __version__ = "0.4"
50
+ __version__ = "0.5"
@@ -13,9 +13,9 @@ from httpx import Response
13
13
  from pyegeria import Client, max_paging_size, body_slimmer
14
14
  from pyegeria._exceptions import (InvalidParameterException, PropertyServerException, UserNotAuthorizedException)
15
15
  from ._validators import validate_name, validate_guid, validate_search_string
16
- from .core_guids import (FileFolder_template_GUID,
17
- PostgreSQL_Server_template_GUID,
18
- Apache_Kafka_Server_template_GUID,
16
+ from .core_guids import (FILEFOLDER_TEMPLATE_GUID,
17
+ POSTGRESQL_SERVER_TEMPLATE_GUID,
18
+ APACHE_KAFKA_SERVER_TEMPLATE_GUID,
19
19
  )
20
20
 
21
21
 
@@ -169,7 +169,7 @@ class AutomatedCuration(Client):
169
169
  The GUID of the Kafka server element.
170
170
  """
171
171
 
172
- body = {"templateGUID": Apache_Kafka_Server_template_GUID, "isOwnAnchor": 'true',
172
+ body = {"templateGUID":APACHE_KAFKA_SERVER_TEMPLATE_GUID, "isOwnAnchor": 'true',
173
173
  "placeholderPropertyValues": {"serverName": kafka_server, "hostIdentifier": host_name,
174
174
  "portNumber": port, "description": description}}
175
175
  body_s = body_slimmer(body)
@@ -241,7 +241,7 @@ class AutomatedCuration(Client):
241
241
  str
242
242
  The GUID of the Postgres server element.
243
243
  """
244
- body = {"templateGUID": PostgreSQL_Server_template_GUID, "isOwnAnchor": 'true',
244
+ body = {"templateGUID":POSTGRESQL_SERVER_TEMPLATE_GUID, "isOwnAnchor": 'true',
245
245
  "placeholderPropertyValues": {"serverName": postgres_server, "hostIdentifier": host_name,
246
246
  "portNumber": port, "databaseUserId": db_user, "description": description,
247
247
  "databasePassword": db_pwd}}
@@ -319,7 +319,7 @@ class AutomatedCuration(Client):
319
319
  str
320
320
  The GUID of the File Folder element.
321
321
  """
322
- body = {"templateGUID": FileFolder_template_GUID,
322
+ body = {"templateGUID": FILEFOLDER_TEMPLATE_GUID,
323
323
  "isOwnAnchor": 'true',
324
324
  "placeholderPropertyValues": {
325
325
  "directoryPathName": path_name,
pyegeria/core_guids.py CHANGED
@@ -9,103 +9,95 @@ Useful from core content archive
9
9
  # Template guids
10
10
  #
11
11
 
12
- FILE_FOLDER_TEMPLATE = "553f51cf-3981-480e-acd8-86ed3e25329d"
12
+ CSV_DATA_FILE_TEMPLATE_GUID = '13770F93-13C8-42BE-9BB8-E0B1B1E52B1F'
13
13
 
14
- KAFKA_SERVER_TEMPLATE = "5e1ff810-5418-43f7-b7c4-e6e062f9aff7"
14
+ KEYSTORE_FILE_TEMPLATE_GUID = 'FBCFCC0C-1652-421F-B49B-C3E1C108768F'
15
15
 
16
- POSTGRESQL_SERVER_TEMPLATE = "542134e6-b9ce-4dce-8aef-22e8daf34fdb"
16
+ OSS_UNITY_CATALOG_FUNCTION_TEMPLATE_GUID = '4AE9F6DF-4678-4B0A-A492-4A982C8397FD'
17
17
 
18
- CSV_Data_File_template_GUID = '1b81010e-8525-43b4-8bd9-40c102f7f7d6'
18
+ DATA_FILE_TEMPLATE_GUID = '66D8DDA9-00CF-4E59-938C-4B0583596B1E'
19
19
 
20
- Keystore_File_template_GUID = '754def0b-b811-4ea0-b8bf-7414fa8a77b4'
20
+ VIEW_SERVER_TEMPLATE_GUID = 'FD61CA01-390D-4AA2-A55D-426826AA4E1B'
21
21
 
22
- OSS_Unity_Catalog_Function_template_GUID = '4ae9f6df-4678-4b0a-a492-4a982c8397fd'
22
+ ARCHIVE_FILE_TEMPLATE_GUID = '7578E504-D00F-406D-A194-3FC0A351CDF9'
23
23
 
24
- Data_File_template_GUID = 'd7633260-0810-43fe-ba48-f3e3e3e7c95c'
24
+ POSTGRESQL_RELATIONAL_DATABASE_TEMPLATE_GUID = '3D398B3F-7AE6-4713-952A-409F3DEA8520'
25
25
 
26
- View_Server_template_GUID = 'fd61ca01-390d-4aa2-a55d-426826aa4e1b'
26
+ OSS_UNITY_CATALOG_VOLUME_TEMPLATE_GUID = '384386BA-83C0-4981-8553-4306AECE440F'
27
27
 
28
- Archive_File_template_GUID = '8a4ea587-dd3e-4148-8c01-0d366d19de11'
28
+ PROGRAM_FILE_TEMPLATE_GUID = '32D27E9C-1FDF-455A-AD2A-42B4D7D99108'
29
29
 
30
- PostgreSQL_Relational_Database_template_GUID = '3d398b3f-7ae6-4713-952a-409f3dea8520'
30
+ FILEFOLDER_TEMPLATE_GUID = 'FBDD8EFD-1B69-474C-BB6D-0A304B394146'
31
31
 
32
- OSS_Unity_Catalog_Volume_template_GUID = 'bf4dc272-a323-4ca7-8e37-b78a005ac578'
32
+ OSS_UNITY_CATALOG_CATALOG_TEMPLATE_GUID = 'F7B05A3E-913C-497D-96F5-ACDEB2EC897E'
33
33
 
34
- Program_File_template_GUID = 'd8b8cae5-f4bd-4631-8836-88dc67a55c00'
34
+ POSTGRESQL_SERVER_TEMPLATE_GUID = '542134E6-B9CE-4DCE-8AEF-22E8DAF34FDB'
35
35
 
36
- FileFolder_template_GUID = '99b0c995-7494-4063-89d1-1e0ec7153abd'
36
+ AUDIO_DATA_FILE_TEMPLATE_GUID = '39B4B670-7F15-4744-A5BA-62E8EDAFBCEE'
37
37
 
38
- OSS_Unity_Catalog_Catalog_template_GUID = '8bf8f102-490f-4718-bd27-d018660124b6'
38
+ DOCUMENT_FILE_TEMPLATE_GUID = 'EB6F728D-FA54-4350-9807-1199CBF96851'
39
39
 
40
- PostgreSQL_Server_template_GUID = '542134e6-b9ce-4dce-8aef-22e8daf34fdb'
40
+ INTEGRATION_DAEMON_TEMPLATE_GUID = '6B3516F0-DD13-4786-9601-07215F995197'
41
41
 
42
- Audio_Data_File_template_GUID = 'f65ea229-5473-469f-a447-32ba09bf1f14'
42
+ XML_DATA_FILE_TEMPLATE_GUID = 'EA67AE71-C674-473E-B38B-689879D2A7D9'
43
43
 
44
- Document_File_template_GUID = '080ca599-095a-499e-ba26-7d58e538c32a'
44
+ PARQUET_DATA_FILE_TEMPLATE_GUID = '7F6CD744-79C3-4D25-A056-EEB1A91574C3'
45
45
 
46
- Integration_Daemon_template_GUID = '6b3516f0-dd13-4786-9601-07215f995197'
46
+ THREED_IMAGE_DATA_FILE_TEMPLATE_GUID = '0059EA2B-6292-4CAC-AA6F-A80A605F1114'
47
47
 
48
- XML_Data_File_template_GUID = '643a284b-3137-41de-8c37-521dcd3a1441'
48
+ YAML_FILE_TEMPLATE_GUID = '2221855B-2B64-4B45-A2EE-C40ADC5E2A64'
49
49
 
50
- Parquet_Data_File_template_GUID = '2396c38e-54aa-4d04-a95d-ce02fb998c55'
50
+ METADATA_ACCESS_SERVER_TEMPLATE_GUID = 'BD8DE890-FA79-4C24-AAB8-20B41B5893DD'
51
51
 
52
- ThreeD_Image_Data_File_template_GUID = '5648eaa6-4826-4964-9657-78ab9cc387d8'
52
+ PROPERTIES_FILE_TEMPLATE_GUID = '3B281111-A0EF-4FC4-99E7-9A0EF84A7636'
53
53
 
54
- YAML_File_template_GUID = '6515915a-c218-4e55-9b2c-d5fbec9dfdb4'
54
+ VECTOR_DATA_FILE_TEMPLATE_GUID = 'DB1BEC7F-55A9-40D3-91C0-A57B76D422E2'
55
55
 
56
- Metadata_Access_Server_template_GUID = 'bd8de890-fa79-4c24-aab8-20b41b5893dd'
56
+ APACHE_KAFKA_SERVER_TEMPLATE_GUID = '5E1FF810-5418-43F7-B7C4-E6E062F9AFF7'
57
57
 
58
- Properties_File_template_GUID = '1cefcfe3-585d-4d78-a4dd-3f929f5c5a9b'
58
+ OSS_UNITY_CATALOG_SCHEMA_TEMPLATE_GUID = 'A75CFB07-31FE-457E-9298-BE145DC93071'
59
59
 
60
- Vector_Data_File_template_GUID = 'ea60c096-71e6-4492-ba10-90de63e4fe3a'
60
+ EXECUTABLE_FILE_TEMPLATE_GUID = '3D99A163-7A13-4576-A212-784010A8302A'
61
61
 
62
- Apache_Kafka_Server_template_GUID = '5e1ff810-5418-43f7-b7c4-e6e062f9aff7'
62
+ JSON_DATA_FILE_TEMPLATE_GUID = 'C4836635-7E9E-446A-83B5-15E206B1AFF3'
63
63
 
64
- OSS_Unity_Catalog_Schema_template_GUID = 'd95e5364-4ebf-42d5-bb39-ff1334143b15'
64
+ FILE_SYSTEM_TEMPLATE_GUID = '522F228C-097C-4F90-9EFC-26C1F2696F87'
65
65
 
66
- Executable_File_template_GUID = '588c89e7-cc16-4ae1-8b81-0cd90250df0c'
66
+ SOURCE_CODE_FILE_TEMPLATE_GUID = '9C7013EF-F29B-4B01-A8EA-5EA14F64C67A'
67
67
 
68
- JSON_Data_File_template_GUID = 'c62ff28b-5cd2-4c74-bba3-0a875ddbbdf4'
68
+ OSS_UNITY_CATALOG_SERVER_TEMPLATE_GUID = '1077A346-7A50-4CB0-A795-B219BAFAABF6'
69
69
 
70
- File_System_template_GUID = 'd3b548d5-c5bf-42f7-8714-80a034b00424'
70
+ APPLE_MACBOOK_PRO_TEMPLATE_GUID = '32A9FD56-85C9-47FE-A211-9DA3871BF4DA'
71
71
 
72
- Source_Code_File_template_GUID = '092e6742-7d5a-40cb-b5be-b0440e730c0a'
72
+ BUILD_INSTRUCTION_FILE_TEMPLATE_GUID = 'FBB2FA2E-8BCB-402E-9BE7-5C6DB9F2C504'
73
73
 
74
- OSS_Unity_Catalog_Server_template_GUID = '1077a346-7a50-4cb0-a795-b219bafaabf6'
74
+ SPREADSHEET_DATA_FILE_TEMPLATE_GUID = 'E4FABFF5-2BA9-4050-9076-6ED917970B4C'
75
75
 
76
- Apple_MacBook_Pro_template_GUID = '32a9fd56-85c9-47fe-a211-9da3871bf4da'
76
+ UNIX_FILE_SYSTEM_TEMPLATE_GUID = '27117270-8667-41D0-A99A-9118F9B60199'
77
77
 
78
- Build_Instruction_File_template_GUID = '7a2b22a1-2198-4ad6-adc0-8a3c2e2faaa7'
78
+ VIDEO_DATA_FILE_TEMPLATE_GUID = '93B2B722-EC0F-4DA4-960A-B8D4922F8BF5'
79
79
 
80
- Spreadsheet_Data_File_template_GUID = '33860da2-c467-4192-908c-f8dab837c098'
80
+ POSTGRESQL_RELATIONAL_DATABASE_SCHEMA_TEMPLATE_GUID = '82A5417C-D882-4271-8444-4C6A996A8BFC'
81
81
 
82
- UNIX_File_System_template_GUID = '6d82998d-5d6c-4cd2-902e-8baa98e152d4'
82
+ ENGINE_HOST_TEMPLATE_GUID = '1764A891-4234-45F1-8CC3-536AF40C790D'
83
83
 
84
- Video_Data_File_template_GUID = '6d7b46f9-c7ea-4d68-b66b-b077ec91bc19'
84
+ AVRO_DATA_FILE_TEMPLATE_GUID = '9F5BE428-058E-41DD-B506-3A222283B579'
85
85
 
86
- PostgreSQL_Relational_Database_Schema_template_GUID = '82a5417c-d882-4271-8444-4c6a996a8bfc'
86
+ OSS_UNITY_CATALOG_TABLE_TEMPLATE_GUID = 'F5B12348-92AC-4A52-B8E0-B06CF215484E'
87
87
 
88
- Engine_Host_template_GUID = '1764a891-4234-45f1-8cc3-536af40c790d'
88
+ FILE_TEMPLATE_GUID = 'AE3067C7-CC72-4A18-88E1-746803C2C86F'
89
89
 
90
- Avro_Data_File_template_GUID = '0c61cfef-a0d3-4130-85fc-d5c39287499c'
90
+ APACHE_KAFKA_TOPIC_TEMPLATE_GUID = 'EA8F81C9-C59C-47DE-9525-7CC59D1251E5'
91
91
 
92
- OSS_Unity_Catalog_Table_template_GUID = 'f5b12348-92ac-4a52-b8e0-b06cf215484e'
92
+ SCRIPT_FILE_TEMPLATE_GUID = 'DBD5E6BB-1FF8-46F4-A007-FB0485F68C92'
93
93
 
94
- File_template_GUID = '9725e90e-ebad-474f-af65-a8aaaca03208'
94
+ APACHE_ATLAS_SERVER_TEMPLATE_GUID = 'FE6DCE45-A978-4417-AB55-17F05B8BCEA7'
95
95
 
96
- Apache_Kafka_Topic_template_GUID = 'ea8f81c9-c59c-47de-9525-7cc59d1251e5'
96
+ RASTER_DATA_FILE_TEMPLATE_GUID = '47211156-F03F-4881-8526-015E695A3DAC'
97
97
 
98
- Script_File_template_GUID = '4842a347-56a1-4940-b340-2f39cf91dc6d'
98
+ DATA_FOLDER_TEMPLATE_GUID = '372A0379-7060-4C9D-8D84-BC709B31794C'
99
99
 
100
- Apache_Atlas_Server_template_GUID = 'fe6dce45-a978-4417-ab55-17f05b8bcea7'
101
-
102
- Raster_Data_File_template_GUID = 'c972afee-0170-446f-893b-f88a373a4a99'
103
-
104
- Data_Folder_template_GUID = 'e854455c-8b5a-4030-8289-2323f7f68841'
105
-
106
- OMAG_Server_Platform_template_GUID = '9b06c4dc-ddc8-47ae-b56b-28775d3a96f0'
107
-
108
- DBC_Relational_Database_Integration_Connector_GUID = '70dcd0b7-9f06-48ad-ad44-ae4d7a7762aa'
100
+ OMAG_SERVER_PLATFORM_TEMPLATE_GUID = '9B06C4DC-DDC8-47AE-B56B-28775D3A96F0'
109
101
 
110
102
  #
111
103
  # Integration Connector GUIDS
@@ -125,4 +117,5 @@ Apache_Kafka_Server_Integration_Connector_GUID = 'fa1f711c-0b34-4b57-8e6e-16162b
125
117
 
126
118
  Software_Server_Integration_Connector_GUID = 'b89d9a5a-2ea6-49bc-a4fc-e7df9f3ca93e'
127
119
 
128
- OSS_Unity_Catalog_Server_Integration_Connector_GUID = '06d068d9-9e08-4e67-8c59-073bbf1013af'
120
+ OSS_Unity_Catalog_Server_Integration_Connector_GUID = '06d068d9-9e08-4e67-8c59-073bbf1013af'
121
+
@@ -1,27 +1,26 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyegeria
3
- Version: 0.4.1
3
+ Version: 0.5.1
4
4
  Summary: A python client for Egeria
5
- Home-page: https://egeria-project.org/egeria-python
6
- Author: Dan Wolfson
7
- Author-email: Dan Wolfson <dan.wolfson@pdr-associates.com>
8
- Project-URL: Homepage, https://github.com/odpi/egeria-python
9
- Project-URL: Issues, https://github.com/odpi/egeria-python/issues
5
+ Home-page: https://github.com/odpi/egeria-python
6
+ License: Apache 2.0
10
7
  Keywords: egeria,metadata,governance
8
+ Author: Dan Wolfson
9
+ Author-email: dan.wolfson@pdr-associates.com
10
+ Requires-Python: >=3.12,<4.0
11
11
  Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: License :: Other/Proprietary License
12
13
  Classifier: Programming Language :: Python
13
14
  Classifier: Programming Language :: Python :: 3
14
- Requires-Python: >=3.10
15
+ Classifier: Programming Language :: Python :: 3.12
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)
22
+ Project-URL: Repository, https://github.com/odpi/egeria-python
15
23
  Description-Content-Type: text/markdown
16
- License-File: LICENSE
17
- Requires-Dist: requests ~=2.31.0
18
- Requires-Dist: validators ~=0.22.0
19
- Requires-Dist: pytest ~=7.4.2
20
- Requires-Dist: urllib3 ~=1.26.15
21
- Requires-Dist: rich ~=13.7.1
22
- Requires-Dist: httpx ~=0.26.0
23
- Provides-Extra: tests
24
- Requires-Dist: pytest ; extra == 'tests'
25
24
 
26
25
  <!-- SPDX-License-Identifier: CC-BY-4.0 -->
27
26
  <!-- Copyright Contributors to the ODPi Egeria project. -->