pyxecm 1.3.0__tar.gz → 1.5__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.

Files changed (41) hide show
  1. {pyxecm-1.3.0/pyxecm.egg-info → pyxecm-1.5}/PKG-INFO +4 -1
  2. pyxecm-1.5/pyproject.toml +31 -0
  3. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/__init__.py +3 -0
  4. pyxecm-1.5/pyxecm/coreshare.py +2636 -0
  5. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/customizer/__init__.py +6 -0
  6. pyxecm-1.5/pyxecm/customizer/browser_automation.py +497 -0
  7. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/customizer/customizer.py +466 -235
  8. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/customizer/k8s.py +49 -27
  9. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/customizer/m365.py +1183 -263
  10. pyxecm-1.5/pyxecm/customizer/payload.py +17230 -0
  11. pyxecm-1.5/pyxecm/customizer/pht.py +503 -0
  12. pyxecm-1.5/pyxecm/customizer/salesforce.py +1782 -0
  13. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/customizer/sap.py +5 -5
  14. pyxecm-1.5/pyxecm/customizer/servicenow.py +1221 -0
  15. pyxecm-1.5/pyxecm/customizer/successfactors.py +1056 -0
  16. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/customizer/translate.py +2 -2
  17. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/helper/__init__.py +2 -0
  18. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/helper/assoc.py +27 -7
  19. pyxecm-1.5/pyxecm/helper/data.py +1527 -0
  20. pyxecm-1.5/pyxecm/helper/web.py +284 -0
  21. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/helper/xml.py +244 -40
  22. pyxecm-1.5/pyxecm/otac.py +647 -0
  23. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/otcs.py +3866 -1103
  24. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/otds.py +397 -150
  25. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/otiv.py +1 -1
  26. pyxecm-1.5/pyxecm/otmm.py +808 -0
  27. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm/otpd.py +17 -12
  28. {pyxecm-1.3.0 → pyxecm-1.5/pyxecm.egg-info}/PKG-INFO +4 -1
  29. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm.egg-info/SOURCES.txt +7 -0
  30. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm.egg-info/requires.txt +3 -0
  31. pyxecm-1.3.0/pyproject.toml +0 -31
  32. pyxecm-1.3.0/pyxecm/customizer/browser_automation.py +0 -322
  33. pyxecm-1.3.0/pyxecm/customizer/payload.py +0 -8744
  34. pyxecm-1.3.0/pyxecm/helper/web.py +0 -120
  35. pyxecm-1.3.0/pyxecm/otac.py +0 -361
  36. {pyxecm-1.3.0 → pyxecm-1.5}/LICENSE +0 -0
  37. {pyxecm-1.3.0 → pyxecm-1.5}/README.md +0 -0
  38. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm.egg-info/dependency_links.txt +0 -0
  39. {pyxecm-1.3.0 → pyxecm-1.5}/pyxecm.egg-info/top_level.txt +0 -0
  40. {pyxecm-1.3.0 → pyxecm-1.5}/setup.cfg +0 -0
  41. {pyxecm-1.3.0 → pyxecm-1.5}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyxecm
3
- Version: 1.3.0
3
+ Version: 1.5
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
@@ -21,7 +21,10 @@ Requires-Dist: kubernetes
21
21
  Requires-Dist: zipfile36
22
22
  Requires-Dist: suds
23
23
  Requires-Dist: python-hcl2
24
+ Requires-Dist: xmltodict
24
25
  Requires-Dist: lxml
26
+ Requires-Dist: openpyxl
27
+ Requires-Dist: pandas
25
28
  Provides-Extra: customizer
26
29
  Requires-Dist: python-hcl2; extra == "customizer"
27
30
  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']
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.5'
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,9 @@
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 .coreshare import CoreShare