pyegeria 0.8.4.2__py3-none-any.whl → 0.8.4.4__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/_client.py +2 -2
- pyegeria/collection_manager_omvs.py +9 -2
- pyegeria/egeria_cat_client.py +3 -7
- pyegeria/egeria_my_client.py +1 -1
- pyegeria/feedback_manager_omvs.py +7 -10
- pyegeria/glossary_browser_omvs.py +2 -2
- pyegeria/glossary_manager_omvs.py +2 -2
- pyegeria/project_manager_omvs.py +2 -2
- {pyegeria-0.8.4.2.dist-info → pyegeria-0.8.4.4.dist-info}/METADATA +1 -1
- {pyegeria-0.8.4.2.dist-info → pyegeria-0.8.4.4.dist-info}/RECORD +13 -13
- {pyegeria-0.8.4.2.dist-info → pyegeria-0.8.4.4.dist-info}/LICENSE +0 -0
- {pyegeria-0.8.4.2.dist-info → pyegeria-0.8.4.4.dist-info}/WHEEL +0 -0
- {pyegeria-0.8.4.2.dist-info → pyegeria-0.8.4.4.dist-info}/entry_points.txt +0 -0
pyegeria/_client.py
CHANGED
@@ -85,10 +85,10 @@ class Client:
|
|
85
85
|
platform_url: str,
|
86
86
|
user_id: str = None,
|
87
87
|
user_pwd: str = None,
|
88
|
-
api_key: str = None,
|
89
|
-
page_size: int = max_paging_size,
|
90
88
|
token: str = None,
|
91
89
|
token_src: str = None,
|
90
|
+
api_key: str = None,
|
91
|
+
page_size: int = max_paging_size,
|
92
92
|
):
|
93
93
|
self.server_name = None
|
94
94
|
self.platform_url = None
|
@@ -46,12 +46,19 @@ class CollectionManager(Client):
|
|
46
46
|
self,
|
47
47
|
server_name: str,
|
48
48
|
platform_url: str,
|
49
|
-
user_id: str
|
49
|
+
user_id: str,
|
50
50
|
user_pwd: str = None,
|
51
51
|
token: str = None,
|
52
52
|
):
|
53
53
|
self.command_base: str = f"/api/open-metadata/collection-manager/collections"
|
54
|
-
Client.__init__(
|
54
|
+
Client.__init__(
|
55
|
+
self,
|
56
|
+
server_name,
|
57
|
+
platform_url,
|
58
|
+
user_id=user_id,
|
59
|
+
user_pwd=user_pwd,
|
60
|
+
token=token,
|
61
|
+
)
|
55
62
|
|
56
63
|
#
|
57
64
|
# Retrieving Collections - https://egeria-project.org/concepts/collection
|
pyegeria/egeria_cat_client.py
CHANGED
@@ -54,18 +54,14 @@ class EgeriaCat(
|
|
54
54
|
user_pwd: str = None,
|
55
55
|
token: str = None,
|
56
56
|
):
|
57
|
-
AssetCatalog.__init__(
|
58
|
-
self, server_name, platform_url, user_id, user_pwd, token=token
|
59
|
-
)
|
57
|
+
AssetCatalog.__init__(self, server_name, platform_url, user_id, user_pwd, token)
|
60
58
|
CollectionManager.__init__(
|
61
59
|
self, server_name, platform_url, user_id, user_pwd, token
|
62
60
|
)
|
63
|
-
EgeriaMy.__init__(
|
64
|
-
self, server_name, platform_url, user_id, user_pwd, token=token
|
65
|
-
)
|
61
|
+
EgeriaMy.__init__(self, server_name, platform_url, user_id, user_pwd, token)
|
66
62
|
|
67
63
|
GlossaryManager.__init__(
|
68
|
-
self, server_name, platform_url, user_id, user_pwd, token
|
64
|
+
self, server_name, platform_url, user_id, user_pwd, token
|
69
65
|
)
|
70
66
|
|
71
67
|
ProjectManager.__init__(
|
pyegeria/egeria_my_client.py
CHANGED
@@ -43,5 +43,5 @@ class EgeriaMy(MyProfile, FeedbackManager):
|
|
43
43
|
):
|
44
44
|
MyProfile.__init__(self, server_name, platform_url, user_id, user_pwd, token)
|
45
45
|
FeedbackManager.__init__(
|
46
|
-
self, server_name, platform_url,
|
46
|
+
self, server_name, platform_url, user_id, user_pwd, token
|
47
47
|
)
|
@@ -108,10 +108,9 @@ class FeedbackManager(Client):
|
|
108
108
|
doesn't pass the user_id on a method call.
|
109
109
|
user_pwd: str
|
110
110
|
The password associated with the user_id. Defaults to None
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
Defaults to False.
|
111
|
+
|
112
|
+
token: str, optional
|
113
|
+
bearer token
|
115
114
|
|
116
115
|
"""
|
117
116
|
|
@@ -119,19 +118,17 @@ class FeedbackManager(Client):
|
|
119
118
|
self,
|
120
119
|
server_name: str,
|
121
120
|
platform_url: str,
|
122
|
-
|
123
|
-
user_id: str = None,
|
121
|
+
user_id: str,
|
124
122
|
user_pwd: str = None,
|
125
|
-
|
126
|
-
sync_mode: bool = True,
|
123
|
+
token: str = None,
|
127
124
|
):
|
128
125
|
self.admin_command_root: str
|
129
126
|
Client.__init__(
|
130
127
|
self,
|
131
128
|
server_name,
|
132
129
|
platform_url,
|
133
|
-
user_id
|
134
|
-
user_pwd
|
130
|
+
user_id,
|
131
|
+
user_pwd,
|
135
132
|
token=token,
|
136
133
|
)
|
137
134
|
|
@@ -42,12 +42,12 @@ class GlossaryBrowser(Client):
|
|
42
42
|
self,
|
43
43
|
server_name: str,
|
44
44
|
platform_url: str,
|
45
|
-
user_id: str
|
45
|
+
user_id: str,
|
46
46
|
user_pwd: str = None,
|
47
47
|
token: str = None,
|
48
48
|
):
|
49
49
|
self.admin_command_root: str
|
50
|
-
Client.__init__(self, server_name, platform_url, user_id, user_pwd, token
|
50
|
+
Client.__init__(self, server_name, platform_url, user_id, user_pwd, token)
|
51
51
|
|
52
52
|
#
|
53
53
|
# Get Valid Values for Enumerations
|
@@ -48,12 +48,12 @@ class GlossaryManager(GlossaryBrowser):
|
|
48
48
|
self,
|
49
49
|
server_name: str,
|
50
50
|
platform_url: str,
|
51
|
-
user_id: str
|
51
|
+
user_id: str,
|
52
52
|
user_pwd: str = None,
|
53
53
|
token: str = None,
|
54
54
|
):
|
55
55
|
self.admin_command_root: str
|
56
|
-
Client.__init__(self, server_name, platform_url, user_id
|
56
|
+
Client.__init__(self, server_name, platform_url, user_id, user_pwd, token)
|
57
57
|
|
58
58
|
#
|
59
59
|
# Get Valid Values for Enumerations
|
pyegeria/project_manager_omvs.py
CHANGED
@@ -40,12 +40,12 @@ class ProjectManager(Client):
|
|
40
40
|
self,
|
41
41
|
server_name: str,
|
42
42
|
platform_url: str,
|
43
|
-
user_id: str
|
43
|
+
user_id: str,
|
44
44
|
user_pwd: str = None,
|
45
45
|
token: str = None,
|
46
46
|
):
|
47
47
|
self.command_base: str = f"/api/open-metadata/project-manager/metadata-elements"
|
48
|
-
Client.__init__(self, server_name, platform_url, user_id
|
48
|
+
Client.__init__(self, server_name, platform_url, user_id, user_pwd, token)
|
49
49
|
|
50
50
|
#
|
51
51
|
# Retrieving Projects= Information - https://egeria-project.org/concepts/project
|
@@ -65,7 +65,7 @@ examples/widgets/tech/list_valid_metadata_values.py,sha256=N3D0_BmREPszgde3uvvYd
|
|
65
65
|
examples/widgets/tech/x_list_related_elements.py,sha256=qBsf1619cecaMCTzG0MG22fAT32WNH2Z3CXrjo9z-5Y,5853
|
66
66
|
pyegeria/Xloaded_resources_omvs.py,sha256=xNLlmEXG8njFyiN08WKkT3D_9iLWzObM_2u5GTirjEo,3276
|
67
67
|
pyegeria/__init__.py,sha256=WyvV-B3BzaMjGBcvrL4hGttuaXcMEpJ3FTQvXsJvqF8,9498
|
68
|
-
pyegeria/_client.py,sha256=
|
68
|
+
pyegeria/_client.py,sha256=qfwwkahIlFT0zxuIzFQFuPJPkMf-W4kgYyM9KVQqJws,26164
|
69
69
|
pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
|
70
70
|
pyegeria/_exceptions.py,sha256=NJ7vAhmvusK1ENvY2MMrBB6A6TgpYjzS9QJxFH56b8c,18470
|
71
71
|
pyegeria/_globals.py,sha256=1Uc8392wjbiVN5L__RzxC1-U97RMXj77_iUsMSgeAjQ,638
|
@@ -74,31 +74,31 @@ pyegeria/action_author_omvs.py,sha256=QZ2wMkQEvAmnr0mcgO8gnB1k95YghIgI1OBykO76O5
|
|
74
74
|
pyegeria/asset_catalog_omvs.py,sha256=ss_nUCUQA0wixUeUZxZQYLcxJ_FVIhK__jn99qvyq4k,24543
|
75
75
|
pyegeria/automated_curation_omvs.py,sha256=JdHppsoGH8bBvSRar_scEzYSVMqhOnN0Mg3PSkMOycE,150352
|
76
76
|
pyegeria/classification_manager_omvs.py,sha256=XQ6VKz6NHtSMPr5BUnamzCBJKKVnoROoVxgz4f1N7IQ,186133
|
77
|
-
pyegeria/collection_manager_omvs.py,sha256=
|
77
|
+
pyegeria/collection_manager_omvs.py,sha256=IbUjKR2skHowHWwA0928KNKxXXJwDLxeVe8266jS7E4,110187
|
78
78
|
pyegeria/core_omag_server_config.py,sha256=qp1mpTm8q6QrP1IOiXIDOpAGGyIG6fJJ0Kqu-XagF88,93659
|
79
79
|
pyegeria/create_tech_guid_lists.py,sha256=jClpvURy20o4UV83LOwhGg3TZdHGzfjZ9y0MNZyG2To,4282
|
80
|
-
pyegeria/egeria_cat_client.py,sha256=
|
80
|
+
pyegeria/egeria_cat_client.py,sha256=hFow2KjftvYou_022yyBUQcZb9OboYlT1hm1lw6VaBs,1817
|
81
81
|
pyegeria/egeria_client.py,sha256=t1SZcM4aftc86G0ZcU4pk7H4Hd4LfjhlRrDraqOnQBY,3360
|
82
82
|
pyegeria/egeria_config_client.py,sha256=oJ3Q4ts9ZayFJFB2cKGHaTqDyAZmsvx0GUzc35fEhdk,1030
|
83
|
-
pyegeria/egeria_my_client.py,sha256=
|
83
|
+
pyegeria/egeria_my_client.py,sha256=ebZBj39MMhzseUC7FmSUHJclknEnHrYSXSEVXmOJ4v8,1340
|
84
84
|
pyegeria/egeria_ops_client.py,sha256=9w9CcYkzXAHZCrq-YuUS30Z13DXVNTdVntpSHBccKBY,2030
|
85
85
|
pyegeria/egeria_tech_client.py,sha256=SIm1Crh2EzjzmYHxiP-tE3dKJp8UpNkJRppVVsixPlQ,2179
|
86
|
-
pyegeria/feedback_manager_omvs.py,sha256=
|
86
|
+
pyegeria/feedback_manager_omvs.py,sha256=Dby7r7ujeyKVZb9WKOgDdopRluHIQEtAoszEvwGe3Ak,162034
|
87
87
|
pyegeria/full_omag_server_config.py,sha256=LFexyOaEsE3GOY2zyUc2rCQcDFPc177BzzWgT7uED7k,46941
|
88
|
-
pyegeria/glossary_browser_omvs.py,sha256=
|
89
|
-
pyegeria/glossary_manager_omvs.py,sha256=
|
88
|
+
pyegeria/glossary_browser_omvs.py,sha256=cDmX7RO9NLlK7VVUmQDCct1-AIfYAqe5WwTN8B9duVI,103134
|
89
|
+
pyegeria/glossary_manager_omvs.py,sha256=mcaYZUrjpoV5bmsVR4kou-Uw-7HtlTggpk_xcURjKVg,129777
|
90
90
|
pyegeria/mermaid_utilities.py,sha256=-0u2_rR4QTUU7hDFxNam-T5zRWMJOKSHzbW_2gUgMsM,8251
|
91
91
|
pyegeria/my_profile_omvs.py,sha256=OcexVwHGLV0JKHN257Un1BZLwcolSS7F6U6jj5uEmQM,40824
|
92
92
|
pyegeria/platform_services.py,sha256=nwuQxnnuf0bpV4LOTAdvpFUKAIUlqtYeXETMsOzFHRg,41710
|
93
|
-
pyegeria/project_manager_omvs.py,sha256=
|
93
|
+
pyegeria/project_manager_omvs.py,sha256=ZChS42UEYRn_SDy9GpmLcW62O1H-JcuYFPoOOGvaMjY,74458
|
94
94
|
pyegeria/registered_info.py,sha256=QcOpQUZaM_6sAvdXM09Plxx-tBSJuNq9aD_yoqnL_Zg,6293
|
95
95
|
pyegeria/runtime_manager_omvs.py,sha256=tl8uePe8gjOkg5J1mZQ5e_kh9LEXn2bfeAMTro02oHQ,35778
|
96
96
|
pyegeria/server_operations.py,sha256=mtl3P6D9LdquBrOzvPr1zapDxSJ-97RerPUJn_NiAto,16722
|
97
97
|
pyegeria/tech_guids_06-09-2024 11:07.py,sha256=B3fytBw9dmjnlEaCKgt6oQoGh-8HUBG0mFQeyDoUEYQ,6229
|
98
98
|
pyegeria/utils.py,sha256=pkVmS3RrbjaS9yz7FtOCwaOfV5FMqz-__Rt5koCnd9c,5374
|
99
99
|
pyegeria/valid_metadata_omvs.py,sha256=3NjdRkcKWQclGcELJIJPtz7RuenjoVWOXazgU70uCrY,36115
|
100
|
-
pyegeria-0.8.4.
|
101
|
-
pyegeria-0.8.4.
|
102
|
-
pyegeria-0.8.4.
|
103
|
-
pyegeria-0.8.4.
|
104
|
-
pyegeria-0.8.4.
|
100
|
+
pyegeria-0.8.4.4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
101
|
+
pyegeria-0.8.4.4.dist-info/METADATA,sha256=QlV4Et5dslM-YKQQtjQtzdI08x5D8X5q1mXXp4yikfg,2819
|
102
|
+
pyegeria-0.8.4.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
103
|
+
pyegeria-0.8.4.4.dist-info/entry_points.txt,sha256=5Q9bDxIqPgdhd3lDnzdRSCYy9hZtNm_BL49bcmbBpGQ,3808
|
104
|
+
pyegeria-0.8.4.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|