pyxecm 1.6__py3-none-any.whl → 2.0.0__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.
Potentially problematic release.
This version of pyxecm might be problematic. Click here for more details.
- pyxecm/__init__.py +6 -4
- pyxecm/avts.py +673 -246
- pyxecm/coreshare.py +686 -467
- pyxecm/customizer/__init__.py +16 -4
- pyxecm/customizer/__main__.py +58 -0
- pyxecm/customizer/api/__init__.py +5 -0
- pyxecm/customizer/api/__main__.py +6 -0
- pyxecm/customizer/api/app.py +914 -0
- pyxecm/customizer/api/auth.py +154 -0
- pyxecm/customizer/api/metrics.py +92 -0
- pyxecm/customizer/api/models.py +13 -0
- pyxecm/customizer/api/payload_list.py +865 -0
- pyxecm/customizer/api/settings.py +103 -0
- pyxecm/customizer/browser_automation.py +332 -139
- pyxecm/customizer/customizer.py +1007 -1130
- pyxecm/customizer/exceptions.py +35 -0
- pyxecm/customizer/guidewire.py +322 -0
- pyxecm/customizer/k8s.py +713 -378
- pyxecm/customizer/log.py +107 -0
- pyxecm/customizer/m365.py +2867 -909
- pyxecm/customizer/nhc.py +1169 -0
- pyxecm/customizer/openapi.py +258 -0
- pyxecm/customizer/payload.py +16817 -7467
- pyxecm/customizer/pht.py +699 -285
- pyxecm/customizer/salesforce.py +516 -342
- pyxecm/customizer/sap.py +58 -41
- pyxecm/customizer/servicenow.py +593 -371
- pyxecm/customizer/settings.py +442 -0
- pyxecm/customizer/successfactors.py +408 -346
- pyxecm/customizer/translate.py +83 -48
- pyxecm/helper/__init__.py +5 -2
- pyxecm/helper/assoc.py +83 -43
- pyxecm/helper/data.py +2406 -870
- pyxecm/helper/logadapter.py +27 -0
- pyxecm/helper/web.py +229 -101
- pyxecm/helper/xml.py +527 -171
- pyxecm/maintenance_page/__init__.py +5 -0
- pyxecm/maintenance_page/__main__.py +6 -0
- pyxecm/maintenance_page/app.py +51 -0
- pyxecm/maintenance_page/settings.py +28 -0
- pyxecm/maintenance_page/static/favicon.avif +0 -0
- pyxecm/maintenance_page/templates/maintenance.html +165 -0
- pyxecm/otac.py +234 -140
- pyxecm/otawp.py +1436 -557
- pyxecm/otcs.py +7716 -3161
- pyxecm/otds.py +2150 -919
- pyxecm/otiv.py +36 -21
- pyxecm/otmm.py +1272 -325
- pyxecm/otpd.py +231 -127
- pyxecm-2.0.0.dist-info/METADATA +145 -0
- pyxecm-2.0.0.dist-info/RECORD +54 -0
- {pyxecm-1.6.dist-info → pyxecm-2.0.0.dist-info}/WHEEL +1 -1
- pyxecm-1.6.dist-info/METADATA +0 -53
- pyxecm-1.6.dist-info/RECORD +0 -32
- {pyxecm-1.6.dist-info → pyxecm-2.0.0.dist-info/licenses}/LICENSE +0 -0
- {pyxecm-1.6.dist-info → pyxecm-2.0.0.dist-info}/top_level.txt +0 -0
pyxecm/otiv.py
CHANGED
|
@@ -1,27 +1,25 @@
|
|
|
1
|
-
"""
|
|
2
|
-
OTIV Module to keep Intelligent Viewing specific data
|
|
3
|
-
such as connection parameters, license information ...
|
|
4
|
-
|
|
5
|
-
Class: OTIV
|
|
6
|
-
Methods:
|
|
7
|
-
|
|
8
|
-
__init__ : class initializer
|
|
9
|
-
config : returns config data set
|
|
10
|
-
"""
|
|
1
|
+
"""OTIV Module to keep Intelligent Viewing specific data."""
|
|
11
2
|
|
|
12
3
|
__author__ = "Dr. Marc Diefenbruch"
|
|
13
|
-
__copyright__ = "Copyright 2024, OpenText"
|
|
4
|
+
__copyright__ = "Copyright (C) 2024-2025, OpenText"
|
|
14
5
|
__credits__ = ["Kai-Philip Gatzweiler"]
|
|
15
6
|
__maintainer__ = "Dr. Marc Diefenbruch"
|
|
16
7
|
__email__ = "mdiefenb@opentext.com"
|
|
17
8
|
|
|
18
9
|
import logging
|
|
10
|
+
from importlib.metadata import version
|
|
19
11
|
|
|
20
|
-
|
|
12
|
+
APP_NAME = "pyxecm"
|
|
13
|
+
APP_VERSION = version("pyxecm")
|
|
14
|
+
MODULE_NAME = APP_NAME + ".otiv"
|
|
15
|
+
|
|
16
|
+
default_logger = logging.getLogger(MODULE_NAME)
|
|
21
17
|
|
|
22
18
|
|
|
23
19
|
class OTIV:
|
|
24
|
-
"""
|
|
20
|
+
"""Class OTIV is used to manage stettings for OpenText Intelligent Viewing."""
|
|
21
|
+
|
|
22
|
+
logger: logging.Logger = default_logger
|
|
25
23
|
|
|
26
24
|
_config: dict
|
|
27
25
|
|
|
@@ -32,16 +30,31 @@ class OTIV:
|
|
|
32
30
|
product_description: str,
|
|
33
31
|
license_file: str,
|
|
34
32
|
default_license: str = "FULLTIME_USERS_REGULAR",
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
logger: logging.Logger = default_logger,
|
|
34
|
+
) -> None:
|
|
35
|
+
"""Initialize the OTIV class for Intelligent Viewing.
|
|
37
36
|
|
|
38
37
|
Args:
|
|
39
|
-
resource_name (str):
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
38
|
+
resource_name (str):
|
|
39
|
+
The OTDS resource name.
|
|
40
|
+
product_name (str):
|
|
41
|
+
The OTDS product name for licensing.
|
|
42
|
+
product_description (str):
|
|
43
|
+
The OTDS product description for licensing.
|
|
44
|
+
license_file (str):
|
|
45
|
+
The path to license file.
|
|
46
|
+
default_license (str, optional):
|
|
47
|
+
Defaults to "FULLTIME_USERS_REGULAR".
|
|
48
|
+
logger (logging.Logger, optional):
|
|
49
|
+
The logging object to use for all log messages. Defaults to default_logger.
|
|
50
|
+
|
|
43
51
|
"""
|
|
44
52
|
|
|
53
|
+
if logger != default_logger:
|
|
54
|
+
self.logger = logger.getChild("otiv")
|
|
55
|
+
for logfilter in logger.filters:
|
|
56
|
+
self.logger.addFilter(logfilter)
|
|
57
|
+
|
|
45
58
|
# Initialize otiv_config as an empty dictionary
|
|
46
59
|
otiv_config = {}
|
|
47
60
|
|
|
@@ -56,10 +69,12 @@ class OTIV:
|
|
|
56
69
|
# end method definition
|
|
57
70
|
|
|
58
71
|
def config(self) -> dict:
|
|
59
|
-
"""
|
|
72
|
+
"""Return the configuration dictionary.
|
|
60
73
|
|
|
61
74
|
Returns:
|
|
62
|
-
dict:
|
|
75
|
+
dict:
|
|
76
|
+
The configuration dictionary.
|
|
77
|
+
|
|
63
78
|
"""
|
|
64
79
|
return self._config
|
|
65
80
|
|