pyxecm 1.4__tar.gz → 1.6__tar.gz
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-1.4/pyxecm.egg-info → pyxecm-1.6}/PKG-INFO +5 -1
- pyxecm-1.6/pyproject.toml +31 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/__init__.py +5 -0
- pyxecm-1.6/pyxecm/avts.py +1065 -0
- pyxecm-1.6/pyxecm/coreshare.py +2532 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/customizer/__init__.py +4 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/customizer/browser_automation.py +164 -54
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/customizer/customizer.py +588 -231
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/customizer/k8s.py +143 -29
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/customizer/m365.py +1434 -1323
- pyxecm-1.6/pyxecm/customizer/payload.py +19051 -0
- pyxecm-1.6/pyxecm/customizer/pht.py +926 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/customizer/salesforce.py +866 -351
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/customizer/sap.py +4 -4
- pyxecm-1.6/pyxecm/customizer/servicenow.py +1467 -0
- pyxecm-1.6/pyxecm/customizer/successfactors.py +1056 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/helper/__init__.py +2 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/helper/assoc.py +44 -1
- pyxecm-1.6/pyxecm/helper/data.py +1731 -0
- pyxecm-1.6/pyxecm/helper/web.py +284 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/helper/xml.py +170 -34
- pyxecm-1.6/pyxecm/otac.py +647 -0
- pyxecm-1.6/pyxecm/otawp.py +1810 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/otcs.py +5308 -2985
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/otds.py +1909 -1954
- pyxecm-1.6/pyxecm/otmm.py +928 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/otpd.py +13 -10
- {pyxecm-1.4 → pyxecm-1.6/pyxecm.egg-info}/PKG-INFO +5 -1
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm.egg-info/SOURCES.txt +8 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm.egg-info/requires.txt +4 -0
- pyxecm-1.4/pyproject.toml +0 -31
- pyxecm-1.4/pyxecm/customizer/payload.py +0 -9911
- pyxecm-1.4/pyxecm/helper/web.py +0 -160
- pyxecm-1.4/pyxecm/otac.py +0 -361
- {pyxecm-1.4 → pyxecm-1.6}/LICENSE +0 -0
- {pyxecm-1.4 → pyxecm-1.6}/README.md +0 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/customizer/translate.py +0 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm/otiv.py +0 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm.egg-info/dependency_links.txt +0 -0
- {pyxecm-1.4 → pyxecm-1.6}/pyxecm.egg-info/top_level.txt +0 -0
- {pyxecm-1.4 → pyxecm-1.6}/setup.cfg +0 -0
- {pyxecm-1.4 → pyxecm-1.6}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyxecm
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6
|
|
4
4
|
Summary: A Python library to interact with Opentext Extended ECM REST API
|
|
5
5
|
Author-email: Kai Gatzweiler <kgatzweiler@opentext.com>, "Dr. Marc Diefenbruch" <mdiefenb@opentext.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/opentext/pyxecm
|
|
@@ -23,6 +23,10 @@ Requires-Dist: suds
|
|
|
23
23
|
Requires-Dist: python-hcl2
|
|
24
24
|
Requires-Dist: xmltodict
|
|
25
25
|
Requires-Dist: lxml
|
|
26
|
+
Requires-Dist: openpyxl
|
|
27
|
+
Requires-Dist: pandas
|
|
28
|
+
Requires-Dist: python-magic
|
|
29
|
+
Requires-Dist: websockets
|
|
26
30
|
Provides-Extra: customizer
|
|
27
31
|
Requires-Dist: python-hcl2; extra == "customizer"
|
|
28
32
|
Requires-Dist: lxml; extra == "customizer"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
build-backend = 'setuptools.build_meta'
|
|
3
|
+
requires = ['setuptools >= 61.0']
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
classifiers = ['Development Status :: 4 - Beta', 'Programming Language :: Python :: 3', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Intended Audience :: Developers', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System']
|
|
7
|
+
dependencies = ['requests < 3', 'requests_toolbelt', 'setuptools', 'kubernetes', 'zipfile36', 'suds', 'python-hcl2', 'xmltodict', 'lxml', 'openpyxl', 'pandas', 'python-magic', 'websockets']
|
|
8
|
+
description = 'A Python library to interact with Opentext Extended ECM REST API'
|
|
9
|
+
keywords = ['opentext', 'extendedecm', 'contentserver', 'otds', 'appworks', 'archivecenter']
|
|
10
|
+
name = 'pyxecm'
|
|
11
|
+
readme = 'README.md'
|
|
12
|
+
requires-python = '>=3.10'
|
|
13
|
+
version = '1.6'
|
|
14
|
+
|
|
15
|
+
[[project.authors]]
|
|
16
|
+
email = 'kgatzweiler@opentext.com'
|
|
17
|
+
name = 'Kai Gatzweiler'
|
|
18
|
+
|
|
19
|
+
[[project.authors]]
|
|
20
|
+
email = 'mdiefenb@opentext.com'
|
|
21
|
+
name = 'Dr. Marc Diefenbruch'
|
|
22
|
+
|
|
23
|
+
[project.optional-dependencies]
|
|
24
|
+
customizer = ['python-hcl2', 'lxml', 'pyrfc']
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = 'https://github.com/opentext/pyxecm'
|
|
28
|
+
|
|
29
|
+
[tool]
|
|
30
|
+
[tool.setuptools]
|
|
31
|
+
packages = ['pyxecm', 'pyxecm.customizer', 'pyxecm.helper']
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
"""pyxecm - A python library to interact with Opentext Extended ECM REST API."""
|
|
2
|
+
|
|
2
3
|
from .otac import OTAC
|
|
3
4
|
from .otcs import OTCS
|
|
4
5
|
from .otds import OTDS
|
|
5
6
|
from .otiv import OTIV
|
|
6
7
|
from .otpd import OTPD
|
|
8
|
+
from .otmm import OTMM
|
|
9
|
+
from .otawp import OTAWP
|
|
10
|
+
from .avts import AVTS
|
|
11
|
+
from .coreshare import CoreShare
|