pyxecm 1.4__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 (40) hide show
  1. {pyxecm-1.4/pyxecm.egg-info → pyxecm-1.5}/PKG-INFO +3 -1
  2. pyxecm-1.5/pyproject.toml +31 -0
  3. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/__init__.py +3 -0
  4. pyxecm-1.5/pyxecm/coreshare.py +2636 -0
  5. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/customizer/__init__.py +4 -0
  6. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/customizer/browser_automation.py +164 -54
  7. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/customizer/customizer.py +451 -235
  8. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/customizer/k8s.py +6 -6
  9. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/customizer/m365.py +1136 -221
  10. pyxecm-1.5/pyxecm/customizer/payload.py +17230 -0
  11. pyxecm-1.5/pyxecm/customizer/pht.py +503 -0
  12. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/customizer/salesforce.py +694 -114
  13. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/customizer/sap.py +4 -4
  14. pyxecm-1.5/pyxecm/customizer/servicenow.py +1221 -0
  15. pyxecm-1.5/pyxecm/customizer/successfactors.py +1056 -0
  16. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/helper/__init__.py +2 -0
  17. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/helper/assoc.py +24 -1
  18. pyxecm-1.5/pyxecm/helper/data.py +1527 -0
  19. pyxecm-1.5/pyxecm/helper/web.py +284 -0
  20. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/helper/xml.py +170 -34
  21. pyxecm-1.5/pyxecm/otac.py +647 -0
  22. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/otcs.py +2779 -698
  23. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/otds.py +347 -108
  24. pyxecm-1.5/pyxecm/otmm.py +808 -0
  25. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/otpd.py +13 -10
  26. {pyxecm-1.4 → pyxecm-1.5/pyxecm.egg-info}/PKG-INFO +3 -1
  27. {pyxecm-1.4 → pyxecm-1.5}/pyxecm.egg-info/SOURCES.txt +6 -0
  28. {pyxecm-1.4 → pyxecm-1.5}/pyxecm.egg-info/requires.txt +2 -0
  29. pyxecm-1.4/pyproject.toml +0 -31
  30. pyxecm-1.4/pyxecm/customizer/payload.py +0 -9911
  31. pyxecm-1.4/pyxecm/helper/web.py +0 -160
  32. pyxecm-1.4/pyxecm/otac.py +0 -361
  33. {pyxecm-1.4 → pyxecm-1.5}/LICENSE +0 -0
  34. {pyxecm-1.4 → pyxecm-1.5}/README.md +0 -0
  35. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/customizer/translate.py +0 -0
  36. {pyxecm-1.4 → pyxecm-1.5}/pyxecm/otiv.py +0 -0
  37. {pyxecm-1.4 → pyxecm-1.5}/pyxecm.egg-info/dependency_links.txt +0 -0
  38. {pyxecm-1.4 → pyxecm-1.5}/pyxecm.egg-info/top_level.txt +0 -0
  39. {pyxecm-1.4 → pyxecm-1.5}/setup.cfg +0 -0
  40. {pyxecm-1.4 → pyxecm-1.5}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyxecm
3
- Version: 1.4
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
@@ -23,6 +23,8 @@ 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
26
28
  Provides-Extra: customizer
27
29
  Requires-Dist: python-hcl2; extra == "customizer"
28
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