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.
- {pyegeria-0.4.1.data/scripts → examples/doc_samples}/Create_Collection_Sample.py +0 -0
- {pyegeria-0.4.1.data/scripts → examples/doc_samples}/Create_Sustainability_Collection_Sample.py +0 -0
- examples/widgets/catalog_user/README.md +15 -0
- examples/widgets/catalog_user/__init__.py +0 -0
- {pyegeria-0.4.1.data/scripts → examples/widgets/catalog_user}/list_assets.py +6 -3
- {pyegeria-0.4.1.data/scripts → examples/widgets/catalog_user}/view_asset_graph.py +5 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/catalog_user}/view_collection.py +5 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/catalog_user}/view_glossary.py +6 -3
- examples/widgets/developer/README.md +24 -0
- examples/widgets/developer/__init__.py +0 -0
- {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/get_guid_info.py +6 -8
- {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/get_tech_details.py +11 -22
- {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_asset_types.py +5 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_registered_services.py +5 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_relationship_types.py +6 -4
- {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_tech_templates.py +3 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_tech_types.py +5 -3
- {pyegeria-0.4.1.data/scripts → examples/widgets/developer}/list_valid_metadata_values.py +15 -13
- examples/widgets/operational/README.md +24 -0
- examples/widgets/operational/__init__.py +7 -0
- {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/get_tech_type_elements.py +5 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/get_tech_type_template.py +11 -14
- examples/widgets/operational/view_asset_events.py +78 -0
- {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_coco_status.py +5 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_eng_action_status.py +5 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_gov_eng_status.py +5 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_integ_daemon_status.py +5 -4
- {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_platform_status.py +6 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_server_list.py +5 -2
- {pyegeria-0.4.1.data/scripts → examples/widgets/operational}/view_server_status.py +7 -4
- examples/widgets/personal_organizer/README.md +17 -0
- examples/widgets/personal_organizer/__init__.py +0 -0
- {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/get_my_profile.py +6 -3
- {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/list_projects.py +6 -4
- {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/list_todos.py +6 -3
- {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/view_my_todos.py +8 -11
- {pyegeria-0.4.1.data/scripts → examples/widgets/personal_organizer}/view_open_todos.py +6 -2
- pyegeria/__init__.py +1 -1
- pyegeria/automated_curation_omvs.py +6 -6
- pyegeria/core_guids.py +47 -54
- {pyegeria-0.4.1.dist-info → pyegeria-0.5.1.dist-info}/METADATA +15 -16
- pyegeria-0.5.1.dist-info/RECORD +67 -0
- {pyegeria-0.4.1.dist-info → pyegeria-0.5.1.dist-info}/WHEEL +1 -2
- pyegeria-0.5.1.dist-info/entry_points.txt +29 -0
- pyegeria-0.4.1.dist-info/RECORD +0 -58
- pyegeria-0.4.1.dist-info/top_level.txt +0 -1
- {pyegeria-0.4.1.dist-info → pyegeria-0.5.1.dist-info}/LICENSE +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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"]
|
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"]
|
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
|
-
|
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
|
-
|
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
|
-
|
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
@@ -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 (
|
17
|
-
|
18
|
-
|
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":
|
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":
|
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":
|
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
|
-
|
12
|
+
CSV_DATA_FILE_TEMPLATE_GUID = '13770F93-13C8-42BE-9BB8-E0B1B1E52B1F'
|
13
13
|
|
14
|
-
|
14
|
+
KEYSTORE_FILE_TEMPLATE_GUID = 'FBCFCC0C-1652-421F-B49B-C3E1C108768F'
|
15
15
|
|
16
|
-
|
16
|
+
OSS_UNITY_CATALOG_FUNCTION_TEMPLATE_GUID = '4AE9F6DF-4678-4B0A-A492-4A982C8397FD'
|
17
17
|
|
18
|
-
|
18
|
+
DATA_FILE_TEMPLATE_GUID = '66D8DDA9-00CF-4E59-938C-4B0583596B1E'
|
19
19
|
|
20
|
-
|
20
|
+
VIEW_SERVER_TEMPLATE_GUID = 'FD61CA01-390D-4AA2-A55D-426826AA4E1B'
|
21
21
|
|
22
|
-
|
22
|
+
ARCHIVE_FILE_TEMPLATE_GUID = '7578E504-D00F-406D-A194-3FC0A351CDF9'
|
23
23
|
|
24
|
-
|
24
|
+
POSTGRESQL_RELATIONAL_DATABASE_TEMPLATE_GUID = '3D398B3F-7AE6-4713-952A-409F3DEA8520'
|
25
25
|
|
26
|
-
|
26
|
+
OSS_UNITY_CATALOG_VOLUME_TEMPLATE_GUID = '384386BA-83C0-4981-8553-4306AECE440F'
|
27
27
|
|
28
|
-
|
28
|
+
PROGRAM_FILE_TEMPLATE_GUID = '32D27E9C-1FDF-455A-AD2A-42B4D7D99108'
|
29
29
|
|
30
|
-
|
30
|
+
FILEFOLDER_TEMPLATE_GUID = 'FBDD8EFD-1B69-474C-BB6D-0A304B394146'
|
31
31
|
|
32
|
-
|
32
|
+
OSS_UNITY_CATALOG_CATALOG_TEMPLATE_GUID = 'F7B05A3E-913C-497D-96F5-ACDEB2EC897E'
|
33
33
|
|
34
|
-
|
34
|
+
POSTGRESQL_SERVER_TEMPLATE_GUID = '542134E6-B9CE-4DCE-8AEF-22E8DAF34FDB'
|
35
35
|
|
36
|
-
|
36
|
+
AUDIO_DATA_FILE_TEMPLATE_GUID = '39B4B670-7F15-4744-A5BA-62E8EDAFBCEE'
|
37
37
|
|
38
|
-
|
38
|
+
DOCUMENT_FILE_TEMPLATE_GUID = 'EB6F728D-FA54-4350-9807-1199CBF96851'
|
39
39
|
|
40
|
-
|
40
|
+
INTEGRATION_DAEMON_TEMPLATE_GUID = '6B3516F0-DD13-4786-9601-07215F995197'
|
41
41
|
|
42
|
-
|
42
|
+
XML_DATA_FILE_TEMPLATE_GUID = 'EA67AE71-C674-473E-B38B-689879D2A7D9'
|
43
43
|
|
44
|
-
|
44
|
+
PARQUET_DATA_FILE_TEMPLATE_GUID = '7F6CD744-79C3-4D25-A056-EEB1A91574C3'
|
45
45
|
|
46
|
-
|
46
|
+
THREED_IMAGE_DATA_FILE_TEMPLATE_GUID = '0059EA2B-6292-4CAC-AA6F-A80A605F1114'
|
47
47
|
|
48
|
-
|
48
|
+
YAML_FILE_TEMPLATE_GUID = '2221855B-2B64-4B45-A2EE-C40ADC5E2A64'
|
49
49
|
|
50
|
-
|
50
|
+
METADATA_ACCESS_SERVER_TEMPLATE_GUID = 'BD8DE890-FA79-4C24-AAB8-20B41B5893DD'
|
51
51
|
|
52
|
-
|
52
|
+
PROPERTIES_FILE_TEMPLATE_GUID = '3B281111-A0EF-4FC4-99E7-9A0EF84A7636'
|
53
53
|
|
54
|
-
|
54
|
+
VECTOR_DATA_FILE_TEMPLATE_GUID = 'DB1BEC7F-55A9-40D3-91C0-A57B76D422E2'
|
55
55
|
|
56
|
-
|
56
|
+
APACHE_KAFKA_SERVER_TEMPLATE_GUID = '5E1FF810-5418-43F7-B7C4-E6E062F9AFF7'
|
57
57
|
|
58
|
-
|
58
|
+
OSS_UNITY_CATALOG_SCHEMA_TEMPLATE_GUID = 'A75CFB07-31FE-457E-9298-BE145DC93071'
|
59
59
|
|
60
|
-
|
60
|
+
EXECUTABLE_FILE_TEMPLATE_GUID = '3D99A163-7A13-4576-A212-784010A8302A'
|
61
61
|
|
62
|
-
|
62
|
+
JSON_DATA_FILE_TEMPLATE_GUID = 'C4836635-7E9E-446A-83B5-15E206B1AFF3'
|
63
63
|
|
64
|
-
|
64
|
+
FILE_SYSTEM_TEMPLATE_GUID = '522F228C-097C-4F90-9EFC-26C1F2696F87'
|
65
65
|
|
66
|
-
|
66
|
+
SOURCE_CODE_FILE_TEMPLATE_GUID = '9C7013EF-F29B-4B01-A8EA-5EA14F64C67A'
|
67
67
|
|
68
|
-
|
68
|
+
OSS_UNITY_CATALOG_SERVER_TEMPLATE_GUID = '1077A346-7A50-4CB0-A795-B219BAFAABF6'
|
69
69
|
|
70
|
-
|
70
|
+
APPLE_MACBOOK_PRO_TEMPLATE_GUID = '32A9FD56-85C9-47FE-A211-9DA3871BF4DA'
|
71
71
|
|
72
|
-
|
72
|
+
BUILD_INSTRUCTION_FILE_TEMPLATE_GUID = 'FBB2FA2E-8BCB-402E-9BE7-5C6DB9F2C504'
|
73
73
|
|
74
|
-
|
74
|
+
SPREADSHEET_DATA_FILE_TEMPLATE_GUID = 'E4FABFF5-2BA9-4050-9076-6ED917970B4C'
|
75
75
|
|
76
|
-
|
76
|
+
UNIX_FILE_SYSTEM_TEMPLATE_GUID = '27117270-8667-41D0-A99A-9118F9B60199'
|
77
77
|
|
78
|
-
|
78
|
+
VIDEO_DATA_FILE_TEMPLATE_GUID = '93B2B722-EC0F-4DA4-960A-B8D4922F8BF5'
|
79
79
|
|
80
|
-
|
80
|
+
POSTGRESQL_RELATIONAL_DATABASE_SCHEMA_TEMPLATE_GUID = '82A5417C-D882-4271-8444-4C6A996A8BFC'
|
81
81
|
|
82
|
-
|
82
|
+
ENGINE_HOST_TEMPLATE_GUID = '1764A891-4234-45F1-8CC3-536AF40C790D'
|
83
83
|
|
84
|
-
|
84
|
+
AVRO_DATA_FILE_TEMPLATE_GUID = '9F5BE428-058E-41DD-B506-3A222283B579'
|
85
85
|
|
86
|
-
|
86
|
+
OSS_UNITY_CATALOG_TABLE_TEMPLATE_GUID = 'F5B12348-92AC-4A52-B8E0-B06CF215484E'
|
87
87
|
|
88
|
-
|
88
|
+
FILE_TEMPLATE_GUID = 'AE3067C7-CC72-4A18-88E1-746803C2C86F'
|
89
89
|
|
90
|
-
|
90
|
+
APACHE_KAFKA_TOPIC_TEMPLATE_GUID = 'EA8F81C9-C59C-47DE-9525-7CC59D1251E5'
|
91
91
|
|
92
|
-
|
92
|
+
SCRIPT_FILE_TEMPLATE_GUID = 'DBD5E6BB-1FF8-46F4-A007-FB0485F68C92'
|
93
93
|
|
94
|
-
|
94
|
+
APACHE_ATLAS_SERVER_TEMPLATE_GUID = 'FE6DCE45-A978-4417-AB55-17F05B8BCEA7'
|
95
95
|
|
96
|
-
|
96
|
+
RASTER_DATA_FILE_TEMPLATE_GUID = '47211156-F03F-4881-8526-015E695A3DAC'
|
97
97
|
|
98
|
-
|
98
|
+
DATA_FOLDER_TEMPLATE_GUID = '372A0379-7060-4C9D-8D84-BC709B31794C'
|
99
99
|
|
100
|
-
|
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.
|
3
|
+
Version: 0.5.1
|
4
4
|
Summary: A python client for Egeria
|
5
|
-
Home-page: https://
|
6
|
-
|
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
|
-
|
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. -->
|