pyxecm 1.5__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.

Files changed (39) hide show
  1. {pyxecm-1.5/pyxecm.egg-info → pyxecm-1.6}/PKG-INFO +3 -1
  2. {pyxecm-1.5 → pyxecm-1.6}/pyproject.toml +2 -2
  3. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/__init__.py +2 -0
  4. pyxecm-1.6/pyxecm/avts.py +1065 -0
  5. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/coreshare.py +467 -571
  6. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/customizer.py +160 -19
  7. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/k8s.py +139 -25
  8. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/m365.py +694 -1498
  9. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/payload.py +2306 -485
  10. pyxecm-1.6/pyxecm/customizer/pht.py +926 -0
  11. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/salesforce.py +378 -443
  12. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/servicenow.py +379 -133
  13. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/helper/assoc.py +20 -0
  14. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/helper/data.py +237 -33
  15. pyxecm-1.6/pyxecm/otawp.py +1810 -0
  16. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/otcs.py +3180 -2938
  17. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/otds.py +1591 -1875
  18. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/otmm.py +131 -11
  19. {pyxecm-1.5 → pyxecm-1.6/pyxecm.egg-info}/PKG-INFO +3 -1
  20. {pyxecm-1.5 → pyxecm-1.6}/pyxecm.egg-info/SOURCES.txt +2 -0
  21. {pyxecm-1.5 → pyxecm-1.6}/pyxecm.egg-info/requires.txt +2 -0
  22. pyxecm-1.5/pyxecm/customizer/pht.py +0 -503
  23. {pyxecm-1.5 → pyxecm-1.6}/LICENSE +0 -0
  24. {pyxecm-1.5 → pyxecm-1.6}/README.md +0 -0
  25. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/__init__.py +0 -0
  26. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/browser_automation.py +0 -0
  27. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/sap.py +0 -0
  28. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/successfactors.py +0 -0
  29. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/customizer/translate.py +0 -0
  30. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/helper/__init__.py +0 -0
  31. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/helper/web.py +0 -0
  32. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/helper/xml.py +1 -1
  33. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/otac.py +0 -0
  34. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/otiv.py +0 -0
  35. {pyxecm-1.5 → pyxecm-1.6}/pyxecm/otpd.py +0 -0
  36. {pyxecm-1.5 → pyxecm-1.6}/pyxecm.egg-info/dependency_links.txt +0 -0
  37. {pyxecm-1.5 → pyxecm-1.6}/pyxecm.egg-info/top_level.txt +0 -0
  38. {pyxecm-1.5 → pyxecm-1.6}/setup.cfg +0 -0
  39. {pyxecm-1.5 → pyxecm-1.6}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyxecm
3
- Version: 1.5
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
@@ -25,6 +25,8 @@ Requires-Dist: xmltodict
25
25
  Requires-Dist: lxml
26
26
  Requires-Dist: openpyxl
27
27
  Requires-Dist: pandas
28
+ Requires-Dist: python-magic
29
+ Requires-Dist: websockets
28
30
  Provides-Extra: customizer
29
31
  Requires-Dist: python-hcl2; extra == "customizer"
30
32
  Requires-Dist: lxml; extra == "customizer"
@@ -4,13 +4,13 @@
4
4
 
5
5
  [project]
6
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']
7
+ dependencies = ['requests < 3', 'requests_toolbelt', 'setuptools', 'kubernetes', 'zipfile36', 'suds', 'python-hcl2', 'xmltodict', 'lxml', 'openpyxl', 'pandas', 'python-magic', 'websockets']
8
8
  description = 'A Python library to interact with Opentext Extended ECM REST API'
9
9
  keywords = ['opentext', 'extendedecm', 'contentserver', 'otds', 'appworks', 'archivecenter']
10
10
  name = 'pyxecm'
11
11
  readme = 'README.md'
12
12
  requires-python = '>=3.10'
13
- version = '1.5'
13
+ version = '1.6'
14
14
 
15
15
  [[project.authors]]
16
16
  email = 'kgatzweiler@opentext.com'
@@ -6,4 +6,6 @@ from .otds import OTDS
6
6
  from .otiv import OTIV
7
7
  from .otpd import OTPD
8
8
  from .otmm import OTMM
9
+ from .otawp import OTAWP
10
+ from .avts import AVTS
9
11
  from .coreshare import CoreShare