pyxecm 1.5__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 -2
- pyxecm/avts.py +1492 -0
- pyxecm/coreshare.py +1075 -960
- 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 +1075 -1057
- pyxecm/customizer/exceptions.py +35 -0
- pyxecm/customizer/guidewire.py +322 -0
- pyxecm/customizer/k8s.py +787 -338
- pyxecm/customizer/log.py +107 -0
- pyxecm/customizer/m365.py +3424 -2270
- pyxecm/customizer/nhc.py +1169 -0
- pyxecm/customizer/openapi.py +258 -0
- pyxecm/customizer/payload.py +18201 -7030
- pyxecm/customizer/pht.py +1047 -210
- pyxecm/customizer/salesforce.py +836 -727
- pyxecm/customizer/sap.py +58 -41
- pyxecm/customizer/servicenow.py +851 -383
- 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 +98 -38
- pyxecm/helper/data.py +2482 -742
- pyxecm/helper/logadapter.py +27 -0
- pyxecm/helper/web.py +229 -101
- pyxecm/helper/xml.py +528 -172
- 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 +2689 -0
- pyxecm/otcs.py +12344 -7547
- pyxecm/otds.py +3166 -2219
- pyxecm/otiv.py +36 -21
- pyxecm/otmm.py +1363 -296
- 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.5.dist-info → pyxecm-2.0.0.dist-info}/WHEEL +1 -1
- pyxecm-1.5.dist-info/METADATA +0 -51
- pyxecm-1.5.dist-info/RECORD +0 -30
- {pyxecm-1.5.dist-info → pyxecm-2.0.0.dist-info/licenses}/LICENSE +0 -0
- {pyxecm-1.5.dist-info → pyxecm-2.0.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyxecm
|
|
3
|
+
Version: 2.0.0
|
|
4
|
+
Summary: A Python library to interact with Opentext Extended ECM REST API
|
|
5
|
+
Author-email: Kai Gatzweiler <kgatzweiler@opentext.com>, "Dr. Marc Diefenbruch" <mdiefenb@opentext.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/opentext/pyxecm
|
|
7
|
+
Keywords: opentext,extendedecm,contentserver,otds,appworks,archivecenter
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Requires-Dist: requests<3
|
|
18
|
+
Requires-Dist: requests_toolbelt
|
|
19
|
+
Requires-Dist: setuptools
|
|
20
|
+
Requires-Dist: kubernetes
|
|
21
|
+
Requires-Dist: zipfile36
|
|
22
|
+
Requires-Dist: suds
|
|
23
|
+
Requires-Dist: python-hcl2
|
|
24
|
+
Requires-Dist: xmltodict
|
|
25
|
+
Requires-Dist: lxml
|
|
26
|
+
Requires-Dist: openpyxl
|
|
27
|
+
Requires-Dist: pandas
|
|
28
|
+
Requires-Dist: python-magic
|
|
29
|
+
Requires-Dist: websockets
|
|
30
|
+
Requires-Dist: pydantic-settings
|
|
31
|
+
Requires-Dist: fastapi
|
|
32
|
+
Requires-Dist: uvicorn
|
|
33
|
+
Requires-Dist: python-multipart
|
|
34
|
+
Requires-Dist: aiofiles
|
|
35
|
+
Requires-Dist: asyncio
|
|
36
|
+
Requires-Dist: jinja2
|
|
37
|
+
Requires-Dist: prometheus-fastapi-instrumentator
|
|
38
|
+
Provides-Extra: browserautomation
|
|
39
|
+
Requires-Dist: selenium; extra == "browserautomation"
|
|
40
|
+
Requires-Dist: chromedriver_autoinstaller; extra == "browserautomation"
|
|
41
|
+
Provides-Extra: dataloader
|
|
42
|
+
Requires-Dist: pandas; extra == "dataloader"
|
|
43
|
+
Requires-Dist: pyyaml; extra == "dataloader"
|
|
44
|
+
Requires-Dist: python-hcl2; extra == "dataloader"
|
|
45
|
+
Requires-Dist: tropycal; extra == "dataloader"
|
|
46
|
+
Requires-Dist: shapely; extra == "dataloader"
|
|
47
|
+
Requires-Dist: cartopy; extra == "dataloader"
|
|
48
|
+
Provides-Extra: sap
|
|
49
|
+
Requires-Dist: pyrfc==2.8.3; extra == "sap"
|
|
50
|
+
Provides-Extra: profiling
|
|
51
|
+
Requires-Dist: pyinstrument; extra == "profiling"
|
|
52
|
+
Dynamic: license-file
|
|
53
|
+
|
|
54
|
+
# PYXECM
|
|
55
|
+
|
|
56
|
+
A python library to interact with Opentext Extended ECM REST API.
|
|
57
|
+
The product API documentation is available on [OpenText Developer](https://developer.opentext.com/ce/products/extendedecm)
|
|
58
|
+
Detailed documentation of this package is available [here](https://opentext.github.io/pyxecm/).
|
|
59
|
+
|
|
60
|
+
# Quick start
|
|
61
|
+
|
|
62
|
+
Install pyxecm with the desired extras into your python environment, extra options are:
|
|
63
|
+
|
|
64
|
+
- browserautomation
|
|
65
|
+
- dataloader
|
|
66
|
+
- sap
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
pip install pyxecm
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Start using the Customizer
|
|
73
|
+
|
|
74
|
+
Create an `.env` file as described here: [sample-environment-variables](customizerapisettings/#sample-environment-variables)
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
python -m pyxecm.customizer.api
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
??? example "Sample Output"
|
|
81
|
+
```console
|
|
82
|
+
INFO: Started server process [93861]
|
|
83
|
+
INFO: Waiting for application startup.
|
|
84
|
+
31-Mar-2025 12:49:53 INFO [CustomizerAPI] [MainThread] Starting maintenance_page thread...
|
|
85
|
+
31-Mar-2025 12:49:53 INFO [CustomizerAPI] [MainThread] Starting processing thread...
|
|
86
|
+
31-Mar-2025 12:49:53 INFO [CustomizerAPI.payload_list] [customization_run_api] Starting 'Scheduler' thread for payload list processing...
|
|
87
|
+
INFO: Application startup complete.
|
|
88
|
+
31-Mar-2025 12:49:53 INFO [CustomizerAPI.payload_list] [customization_run_api] Waiting for thread -> 'Scheduler' to complete...
|
|
89
|
+
INFO: Started server process [93861]
|
|
90
|
+
INFO: Waiting for application startup.
|
|
91
|
+
INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
|
|
92
|
+
INFO: Application startup complete.
|
|
93
|
+
INFO: Uvicorn running on http://0.0.0.0:5555 (Press CTRL+C to quit)
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Access the Customizer API at [http://localhost:8000/api](http://localhost:8000/api)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
## Start using the package libraries
|
|
100
|
+
```python
|
|
101
|
+
from pyxecm import OTCS
|
|
102
|
+
|
|
103
|
+
otcs_object = OTCS(
|
|
104
|
+
protocol="https",
|
|
105
|
+
hostname="otcs.domain.tld",
|
|
106
|
+
port="443",
|
|
107
|
+
public_url="otcs.domain.tld",
|
|
108
|
+
username="admin",
|
|
109
|
+
password="********",
|
|
110
|
+
base_path="/cs/llisapi.dll",
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
otcs_object.authenticate()
|
|
114
|
+
|
|
115
|
+
nodes = otcs_object.get_subnodes(2000)
|
|
116
|
+
|
|
117
|
+
for node in nodes["results"]:
|
|
118
|
+
print(node["data"]["properties"]["id"], node["data"]["properties"]["name"])
|
|
119
|
+
```
|
|
120
|
+
??? example "Sample Output"
|
|
121
|
+
```console
|
|
122
|
+
13050 Administration
|
|
123
|
+
13064 Case Management
|
|
124
|
+
18565 Contract Management
|
|
125
|
+
18599 Customer Support
|
|
126
|
+
18536 Engineering & Construction
|
|
127
|
+
13107 Enterprise Asset Management
|
|
128
|
+
18632 Human Resources
|
|
129
|
+
6554 Inbox Folders
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
# Disclaimer
|
|
133
|
+
|
|
134
|
+
!!! quote ""
|
|
135
|
+
Copyright © 2025 Open Text Corporation, All Rights Reserved.
|
|
136
|
+
The above copyright notice and this permission notice shall be included in all
|
|
137
|
+
copies or substantial portions of the Software.
|
|
138
|
+
|
|
139
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
140
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
141
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
142
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
143
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
144
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
145
|
+
SOFTWARE.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
pyxecm/__init__.py,sha256=bR3w0DYfGhluEa6Hp0jhzpltjWVjwLIG9dYSynZZbEY,391
|
|
2
|
+
pyxecm/avts.py,sha256=CK8EK0qxegbUrsiYVH89jS5W7TDVYjdl_ByOcCw6k3U,55311
|
|
3
|
+
pyxecm/coreshare.py,sha256=wIwJk_t29I4oxwn0T67Cy8Pyl7XpjrNDwN8_udXldF4,93298
|
|
4
|
+
pyxecm/otac.py,sha256=F0ca8mE2BFlR0x3A6mV-dKEo4hzP7--gqsCv4-i2qeE,22839
|
|
5
|
+
pyxecm/otawp.py,sha256=U5pOtQf-1jFiZ7XhXkd64zGA8SATRc1Jyb93ArUzAes,95799
|
|
6
|
+
pyxecm/otcs.py,sha256=4ky7px5v6Nj5PfCZSTRCTQhSHUk7TsAl4N3Avuq4p80,581473
|
|
7
|
+
pyxecm/otds.py,sha256=O6diWtuXAp27kWkfOCEWI5oZJfbnnAZpWbAT9xySu_w,183774
|
|
8
|
+
pyxecm/otiv.py,sha256=I5lt4sz7TN3W7BCstCKQY2WQnei-t0tXdM4QjRQRmWI,2358
|
|
9
|
+
pyxecm/otmm.py,sha256=ovjCfzoeuxH5R7v7f_GVSEn7zvaN1sSHsrtQ_PRLeP8,74819
|
|
10
|
+
pyxecm/otpd.py,sha256=6rfCoO5Jm6pETCyp6aKYNTyvI1z44wP76zS-qRotyVk,14831
|
|
11
|
+
pyxecm/customizer/__init__.py,sha256=T39r7ylBXhECDaCQeV2rmgIEO4WJzuC61FSK51cgzBI,512
|
|
12
|
+
pyxecm/customizer/__main__.py,sha256=29JhUCUAcKPohCukMksS02n6J_a8HPkeReWvQ59_Hhs,1499
|
|
13
|
+
pyxecm/customizer/browser_automation.py,sha256=nd4II1kEVbCVHEDKDNlYB8oT4fpZGLQh5Pqem391Pdg,22357
|
|
14
|
+
pyxecm/customizer/customizer.py,sha256=VYyamfj2-wkqRyuRovcoHFJjE-6_KfGqROjA2Uv1L3k,85516
|
|
15
|
+
pyxecm/customizer/exceptions.py,sha256=YXX0in-UGXfJb6Fei01JQetOtAHqUiITb49OTSaZRkE,909
|
|
16
|
+
pyxecm/customizer/guidewire.py,sha256=Oa2q5cL16bf7q3QDJennM77tUba6DqPwjLRAQVVFvio,9135
|
|
17
|
+
pyxecm/customizer/k8s.py,sha256=Vw578K4645kZG1CGMHn3vbPpkbGZaibDgw7f6a_o71o,47291
|
|
18
|
+
pyxecm/customizer/log.py,sha256=N-EZc822AYWniUb3PCQ8vPZ9ki61ZzMfSprdTDP-jKY,3015
|
|
19
|
+
pyxecm/customizer/m365.py,sha256=7f1GG93eRx8HcdxfMaK5DMOV5lwErB1_peqesRVOx20,209672
|
|
20
|
+
pyxecm/customizer/nhc.py,sha256=Yu2t0lc3CUqpDeZ4RWTNZCsNRz9hG4Bx8-p21ZLYRHM,45647
|
|
21
|
+
pyxecm/customizer/openapi.py,sha256=dI5YQzxBVVeT0TWMzEfOxyPAnM4fAsBt3F1MrAK9jLg,7161
|
|
22
|
+
pyxecm/customizer/payload.py,sha256=rsOUH5VnJg8E8dey8P91cT9l9Gh62GbDF9yejtgPmoE,1231292
|
|
23
|
+
pyxecm/customizer/pht.py,sha256=f7VGsFQlXx3vdYRio8ydo1msadUvG2j3dtg4waORMVA,47520
|
|
24
|
+
pyxecm/customizer/salesforce.py,sha256=MB_8mDUikettUGQpcuG19QQyeNjxq1Z0BF6asQGkgZ8,63518
|
|
25
|
+
pyxecm/customizer/sap.py,sha256=4smnL-epWe9tVrPI7AK1lVUqaEAbyphPWeExV7UfOfc,6388
|
|
26
|
+
pyxecm/customizer/servicenow.py,sha256=ak0MgRZvmftf3bDzHAiPRjHbu1zGsVRg-RBSn6nRIDM,64775
|
|
27
|
+
pyxecm/customizer/settings.py,sha256=3HmEsA7VkTzLh8a1slvJcDQFS20B3EWtNOL_UAmUxI4,19977
|
|
28
|
+
pyxecm/customizer/successfactors.py,sha256=iRoOCiZ9NXSGCzpxViavQKPrHAU1PxMvh7gK8mpRY8o,38299
|
|
29
|
+
pyxecm/customizer/translate.py,sha256=O2I928YQx1F2rucI3eQM2k8oybVfsbUHFikrNt5PAQ8,4788
|
|
30
|
+
pyxecm/customizer/api/__init__.py,sha256=8oXxEEFSu2afpyQURpxMA2qTZAB3MUdbBrndogDn5Oc,92
|
|
31
|
+
pyxecm/customizer/api/__main__.py,sha256=0DvtXJUeOOvpRfcq67CZ0HhE5gI4vLD1UTCAfNXQrT4,128
|
|
32
|
+
pyxecm/customizer/api/app.py,sha256=ayRLsuK_pJz1NQ1BrOfhC9aSWsmldKX56ii87NfJU4M,28508
|
|
33
|
+
pyxecm/customizer/api/auth.py,sha256=z5KQbO7Vlh9T4hz-w1vqgmRdFSGcZnOe_IcBnDw5CKc,4461
|
|
34
|
+
pyxecm/customizer/api/metrics.py,sha256=2sEovK9KL2rEWC0ywi5_bwWKMWdkKho32ZIj37dDqLg,2712
|
|
35
|
+
pyxecm/customizer/api/models.py,sha256=lKebaIHbALZ10quCCKQ3wf7w8V6k84tFXcPV1zbQsS0,271
|
|
36
|
+
pyxecm/customizer/api/payload_list.py,sha256=CAPWmjwinK8bTtrJcQ_9vpJvPZdQBb2N_1bQ1dsUqe0,28390
|
|
37
|
+
pyxecm/customizer/api/settings.py,sha256=tYHIYKoSYcE9IiYI1qEijDkK1DAA0gi9wwI5FaP4pfc,3805
|
|
38
|
+
pyxecm/helper/__init__.py,sha256=B35HdIZC9wZ1m_sx4NOPggyFFJoXmFuA1T2tuPDU1W8,246
|
|
39
|
+
pyxecm/helper/assoc.py,sha256=yOh4GFZEkTfIaVVrHBr4bhMtIv-E76oDVWGqaUdVqyA,7321
|
|
40
|
+
pyxecm/helper/data.py,sha256=Mit8qYWDU_YgK98UtLFPEr2ZNE5xk5lJS_wjyv63-jk,123178
|
|
41
|
+
pyxecm/helper/logadapter.py,sha256=ExrIKpA2JKegkTIky0wDDTgPYSvVmwQLrDh5jko_6hQ,724
|
|
42
|
+
pyxecm/helper/web.py,sha256=k010t9gzBflPxnxUdIGvulL69ASzdCEDY-UQ3JXQZ1w,13380
|
|
43
|
+
pyxecm/helper/xml.py,sha256=RtWu3MdbJmmvvjMLha7tJ-nV8BrqioR51yWXxFPzCR0,43777
|
|
44
|
+
pyxecm/maintenance_page/__init__.py,sha256=09to4a8rygOIN6Z1SCN9tLtW1qPUC78Z-scDbpt0E-Q,136
|
|
45
|
+
pyxecm/maintenance_page/__main__.py,sha256=lFBgG3PkXz8ddYK_3wb376IoUAvpDEACVbrmx7xrFc8,158
|
|
46
|
+
pyxecm/maintenance_page/app.py,sha256=aJUiZc2kNmtrl0sfg10rXBySgNBBSBCfyC6_G2Q17EU,1698
|
|
47
|
+
pyxecm/maintenance_page/settings.py,sha256=VRReZeNdza7i7lgnQ3wVojzoPDGXZnzr5rsMJY1EnHk,955
|
|
48
|
+
pyxecm/maintenance_page/static/favicon.avif,sha256=POuuPXKbjHVP3BjNLpFIx8MfkQg5z2LZA7sK6lejARg,1543
|
|
49
|
+
pyxecm/maintenance_page/templates/maintenance.html,sha256=0OAinv7jmj3Aa7GNCIoBLDGEMW1-_HdJfwWmkmb6Cs4,5581
|
|
50
|
+
pyxecm-2.0.0.dist-info/licenses/LICENSE,sha256=z5DWWd5cHmQYJnq4BDt1bmVQjuXY1Qsp6y0v5ETCw-s,11360
|
|
51
|
+
pyxecm-2.0.0.dist-info/METADATA,sha256=IFwdFWvfSAF6N-1A_nqVa6K4PYlWCiXCGLYr_cC2_b8,5135
|
|
52
|
+
pyxecm-2.0.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
53
|
+
pyxecm-2.0.0.dist-info/top_level.txt,sha256=TGak3_dYN67ugKFbmRxRG1leDyOt0T7dypjdX4Ij1WE,7
|
|
54
|
+
pyxecm-2.0.0.dist-info/RECORD,,
|
pyxecm-1.5.dist-info/METADATA
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: pyxecm
|
|
3
|
-
Version: 1.5
|
|
4
|
-
Summary: A Python library to interact with Opentext Extended ECM REST API
|
|
5
|
-
Author-email: Kai Gatzweiler <kgatzweiler@opentext.com>, "Dr. Marc Diefenbruch" <mdiefenb@opentext.com>
|
|
6
|
-
Project-URL: Homepage, https://github.com/opentext/pyxecm
|
|
7
|
-
Keywords: opentext,extendedecm,contentserver,otds,appworks,archivecenter
|
|
8
|
-
Classifier: Development Status :: 4 - Beta
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
-
Classifier: Operating System :: OS Independent
|
|
12
|
-
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System
|
|
14
|
-
Requires-Python: >=3.10
|
|
15
|
-
Description-Content-Type: text/markdown
|
|
16
|
-
License-File: LICENSE
|
|
17
|
-
Requires-Dist: requests <3
|
|
18
|
-
Requires-Dist: requests-toolbelt
|
|
19
|
-
Requires-Dist: setuptools
|
|
20
|
-
Requires-Dist: kubernetes
|
|
21
|
-
Requires-Dist: zipfile36
|
|
22
|
-
Requires-Dist: suds
|
|
23
|
-
Requires-Dist: python-hcl2
|
|
24
|
-
Requires-Dist: xmltodict
|
|
25
|
-
Requires-Dist: lxml
|
|
26
|
-
Requires-Dist: openpyxl
|
|
27
|
-
Requires-Dist: pandas
|
|
28
|
-
Provides-Extra: customizer
|
|
29
|
-
Requires-Dist: python-hcl2 ; extra == 'customizer'
|
|
30
|
-
Requires-Dist: lxml ; extra == 'customizer'
|
|
31
|
-
Requires-Dist: pyrfc ; extra == 'customizer'
|
|
32
|
-
|
|
33
|
-
# PYXECM
|
|
34
|
-
|
|
35
|
-
A python library to interact with Opentext Extended ECM REST API.
|
|
36
|
-
API documentation is available on [OpenText Developer](https://developer.opentext.com/ce/products/extendedecm)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
# Disclaimer
|
|
40
|
-
|
|
41
|
-
Copyright © 2023 Open Text Corporation, All Rights Reserved.
|
|
42
|
-
The above copyright notice and this permission notice shall be included in all
|
|
43
|
-
copies or substantial portions of the Software.
|
|
44
|
-
|
|
45
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
46
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
47
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
48
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
49
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
50
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
51
|
-
SOFTWARE.
|
pyxecm-1.5.dist-info/RECORD
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
pyxecm/__init__.py,sha256=f0oWCTOUQrX9JuJZaP4r-5d493lSwvrGksu8xPxg4bI,253
|
|
2
|
-
pyxecm/coreshare.py,sha256=P23gGqnHFFP4akeC5ISSZXNwcNbDTFssXpIIDQdWvfI,95691
|
|
3
|
-
pyxecm/otac.py,sha256=i1-4nljJUedAsz842s4WXH_YjmEC-hZh66zEGhRS5Uw,21684
|
|
4
|
-
pyxecm/otcs.py,sha256=ZJvYOWiRnD_GutI6hM2923gap-xhWWtSG9jVuebE5YI,418633
|
|
5
|
-
pyxecm/otds.py,sha256=Q9ZHs1vQiPz2ZbkubjKUxX2r_Gl5F0NcqrWNXxllk1E,160812
|
|
6
|
-
pyxecm/otiv.py,sha256=nHEBQ9tddtKMiR1yPbGGP-jJiDaQpyoFmZcQFPgw22w,1720
|
|
7
|
-
pyxecm/otmm.py,sha256=pNy5oIk70duAlOEG3e43JxpQMQbCldRL9iD0KBGyUjU,28566
|
|
8
|
-
pyxecm/otpd.py,sha256=zRus7UnYYrwG9tYDPPLxBbGzozATwS07ftYun4kaaV4,12503
|
|
9
|
-
pyxecm/customizer/__init__.py,sha256=g32OUKoJiBYY4q9IMQctKTKq6YhFtv-IAIHcRC0KJu4,330
|
|
10
|
-
pyxecm/customizer/browser_automation.py,sha256=cbUTGBLmyYO7617QfNJCZtFCK0i8-2hfA6QhKSfuKOY,16430
|
|
11
|
-
pyxecm/customizer/customizer.py,sha256=7GHsuq2njG29xL5bLqdYe5eDcw2TpBgZMJOs6X4xKrY,86293
|
|
12
|
-
pyxecm/customizer/k8s.py,sha256=XMoLVQXxJwq51aXaYANwaqniYi7lqNnmVOmEkaqSuQY,36455
|
|
13
|
-
pyxecm/customizer/m365.py,sha256=emZOJX503-i3FWOqVXe26geiz_apFZiI-jWtoWJxE40,184000
|
|
14
|
-
pyxecm/customizer/payload.py,sha256=74n_KpNZ3s6ftDkjMP3fmsSHcrPXDb5gZrPgkcQ4Tiw,765958
|
|
15
|
-
pyxecm/customizer/pht.py,sha256=AxP8v8SbzkBZaxYDJ3Dqr330l29RJwzpkuKNIW46VjM,17348
|
|
16
|
-
pyxecm/customizer/salesforce.py,sha256=j2oqI4uzQdsl52hMMK9OyzL6Z3EUZYnvqEGQ_OscMEY,63787
|
|
17
|
-
pyxecm/customizer/sap.py,sha256=RNrHH0KjBQ10dHXoMaZIEd3EVPC8--4AN7nzy_Iv9k4,5947
|
|
18
|
-
pyxecm/customizer/servicenow.py,sha256=3ytAjLVKbWDL9MmTPPgPe7-bMDN1JLBQSGtkcGil20k,46745
|
|
19
|
-
pyxecm/customizer/successfactors.py,sha256=6hww4tKF_Bm2aLzFMStPuJmKJ4uBqteXwjWDkW0yDHU,38847
|
|
20
|
-
pyxecm/customizer/translate.py,sha256=RxC7O4lxfGaG1nttCm5WI5X2wEM4eEqbVcUtnYns1TQ,3968
|
|
21
|
-
pyxecm/helper/__init__.py,sha256=sScoB5RQAEkzP2LLvR_cRYwC1ARSdvBiv-4JwnJA7Dw,140
|
|
22
|
-
pyxecm/helper/assoc.py,sha256=MKjDgPYnRcuHkDMIvFMtYXiyMWPXpNie6UQrVgV0s-0,6488
|
|
23
|
-
pyxecm/helper/data.py,sha256=__B9FVwXBPpByaRaJ-l348po3dcaBXw4J1jVzQRy608,60308
|
|
24
|
-
pyxecm/helper/web.py,sha256=CYhJW4TgyHc2w9nV75YgGJR3fDHeUjQEMkulNI9U3E8,9263
|
|
25
|
-
pyxecm/helper/xml.py,sha256=SjMzZcFF37p50ESewF83bh5vl1oDOIjbYRLRZNVEeOU,31664
|
|
26
|
-
pyxecm-1.5.dist-info/LICENSE,sha256=z5DWWd5cHmQYJnq4BDt1bmVQjuXY1Qsp6y0v5ETCw-s,11360
|
|
27
|
-
pyxecm-1.5.dist-info/METADATA,sha256=NumUPC4fUYuiZJyN39qnYX1BqOBjUPXxYFPaP3w8N08,2076
|
|
28
|
-
pyxecm-1.5.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
29
|
-
pyxecm-1.5.dist-info/top_level.txt,sha256=TGak3_dYN67ugKFbmRxRG1leDyOt0T7dypjdX4Ij1WE,7
|
|
30
|
-
pyxecm-1.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|