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/egeria_client.py CHANGED
@@ -54,8 +54,8 @@ class Egeria(
54
54
 
55
55
  Attributes:
56
56
 
57
- server_name: str
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__(
@@ -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
 
@@ -18,7 +18,7 @@ class EgeriaMy(MyProfile, FeedbackManager):
18
18
 
19
19
  Attributes:
20
20
 
21
- server_name: str
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
- server_name: str,
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
- MyProfile.__init__(self, server_name, platform_url, user_id, user_pwd, token)
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, server_name, platform_url, user_id, user_pwd, token
51
+ self, view_server, platform_url, user_id, user_pwd, token
47
52
  )
48
53
 
49
54
 
@@ -40,7 +40,7 @@ class EgeriaTech(
40
40
 
41
41
  Attributes:
42
42
 
43
- server_name: str
43
+ view_server: str
44
44
  Name of the server to use.
45
45
  platform_url : str
46
46
  URL of the server platform to connect to