pyegeria 0.8.4.36__py3-none-any.whl → 0.8.4.37__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/asset_catalog_omvs.py +9 -9
- pyegeria/automated_curation_omvs.py +5 -5
- pyegeria/classification_manager_omvs.py +193 -407
- pyegeria/collection_manager_omvs.py +160 -280
- pyegeria/core_omag_server_config.py +77 -72
- pyegeria/egeria_cat_client.py +11 -6
- pyegeria/egeria_client.py +3 -2
- pyegeria/egeria_config_client.py +5 -0
- pyegeria/egeria_my_client.py +9 -4
- pyegeria/egeria_tech_client.py +1 -1
- pyegeria/feedback_manager_omvs.py +92 -333
- pyegeria/full_omag_server_config.py +54 -50
- pyegeria/glossary_browser_omvs.py +128 -284
- pyegeria/glossary_manager_omvs.py +132 -451
- pyegeria/my_profile_omvs.py +57 -153
- pyegeria/platform_services.py +1 -1
- pyegeria/project_manager_omvs.py +110 -197
- pyegeria/registered_info.py +13 -13
- pyegeria/valid_metadata_omvs.py +75 -227
- pyegeria/x_action_author_omvs.py +1 -1
- {pyegeria-0.8.4.36.dist-info → pyegeria-0.8.4.37.dist-info}/METADATA +1 -1
- {pyegeria-0.8.4.36.dist-info → pyegeria-0.8.4.37.dist-info}/RECORD +25 -25
- {pyegeria-0.8.4.36.dist-info → pyegeria-0.8.4.37.dist-info}/LICENSE +0 -0
- {pyegeria-0.8.4.36.dist-info → pyegeria-0.8.4.37.dist-info}/WHEEL +0 -0
- {pyegeria-0.8.4.36.dist-info → pyegeria-0.8.4.37.dist-info}/entry_points.txt +0 -0
pyegeria/egeria_client.py
CHANGED
@@ -54,8 +54,8 @@ class Egeria(
|
|
54
54
|
|
55
55
|
Attributes:
|
56
56
|
|
57
|
-
|
58
|
-
Name of the server to use.
|
57
|
+
view_server: str
|
58
|
+
Name of the view server to use.
|
59
59
|
platform_url : str
|
60
60
|
URL of the server platform to connect to
|
61
61
|
user_id : str
|
@@ -82,6 +82,7 @@ class Egeria(
|
|
82
82
|
CollectionManager.__init__(
|
83
83
|
self, view_server, platform_url, user_id, user_pwd, token
|
84
84
|
)
|
85
|
+
|
85
86
|
EgeriaMy.__init__(self, view_server, platform_url, user_id, user_pwd, token)
|
86
87
|
|
87
88
|
GlossaryManager.__init__(
|
pyegeria/egeria_config_client.py
CHANGED
@@ -32,6 +32,11 @@ class EgeriaConfig(FullServerConfig, ServerOps):
|
|
32
32
|
def __init__(
|
33
33
|
self, server_name: str, platform_url: str, user_id: str, user_pwd: str = None
|
34
34
|
):
|
35
|
+
self.server_name = server_name
|
36
|
+
self.platform_url = platform_url
|
37
|
+
self.user_id = user_id
|
38
|
+
self.user_pwd = user_pwd
|
39
|
+
|
35
40
|
FullServerConfig.__init__(self, server_name, platform_url, user_id, user_pwd)
|
36
41
|
ServerOps.__init__(self, server_name, platform_url, user_id, user_pwd)
|
37
42
|
|
pyegeria/egeria_my_client.py
CHANGED
@@ -18,7 +18,7 @@ class EgeriaMy(MyProfile, FeedbackManager):
|
|
18
18
|
|
19
19
|
Attributes:
|
20
20
|
|
21
|
-
|
21
|
+
view_server: str
|
22
22
|
Name of the server to use.
|
23
23
|
platform_url : str
|
24
24
|
URL of the server platform to connect to
|
@@ -35,15 +35,20 @@ class EgeriaMy(MyProfile, FeedbackManager):
|
|
35
35
|
|
36
36
|
def __init__(
|
37
37
|
self,
|
38
|
-
|
38
|
+
view_server: str,
|
39
39
|
platform_url: str,
|
40
40
|
user_id: str,
|
41
41
|
user_pwd: str = None,
|
42
42
|
token: str = None,
|
43
43
|
):
|
44
|
-
|
44
|
+
self.view_server = view_server
|
45
|
+
self.platform_url = platform_url
|
46
|
+
self.user_id = user_id
|
47
|
+
self.user_pwd = user_pwd
|
48
|
+
|
49
|
+
MyProfile.__init__(self, view_server, platform_url, user_id, user_pwd, token)
|
45
50
|
FeedbackManager.__init__(
|
46
|
-
self,
|
51
|
+
self, view_server, platform_url, user_id, user_pwd, token
|
47
52
|
)
|
48
53
|
|
49
54
|
|