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

Files changed (56) hide show
  1. pyxecm/__init__.py +6 -4
  2. pyxecm/avts.py +673 -246
  3. pyxecm/coreshare.py +686 -467
  4. pyxecm/customizer/__init__.py +16 -4
  5. pyxecm/customizer/__main__.py +58 -0
  6. pyxecm/customizer/api/__init__.py +5 -0
  7. pyxecm/customizer/api/__main__.py +6 -0
  8. pyxecm/customizer/api/app.py +914 -0
  9. pyxecm/customizer/api/auth.py +154 -0
  10. pyxecm/customizer/api/metrics.py +92 -0
  11. pyxecm/customizer/api/models.py +13 -0
  12. pyxecm/customizer/api/payload_list.py +865 -0
  13. pyxecm/customizer/api/settings.py +103 -0
  14. pyxecm/customizer/browser_automation.py +332 -139
  15. pyxecm/customizer/customizer.py +1007 -1130
  16. pyxecm/customizer/exceptions.py +35 -0
  17. pyxecm/customizer/guidewire.py +322 -0
  18. pyxecm/customizer/k8s.py +713 -378
  19. pyxecm/customizer/log.py +107 -0
  20. pyxecm/customizer/m365.py +2867 -909
  21. pyxecm/customizer/nhc.py +1169 -0
  22. pyxecm/customizer/openapi.py +258 -0
  23. pyxecm/customizer/payload.py +16817 -7467
  24. pyxecm/customizer/pht.py +699 -285
  25. pyxecm/customizer/salesforce.py +516 -342
  26. pyxecm/customizer/sap.py +58 -41
  27. pyxecm/customizer/servicenow.py +593 -371
  28. pyxecm/customizer/settings.py +442 -0
  29. pyxecm/customizer/successfactors.py +408 -346
  30. pyxecm/customizer/translate.py +83 -48
  31. pyxecm/helper/__init__.py +5 -2
  32. pyxecm/helper/assoc.py +83 -43
  33. pyxecm/helper/data.py +2406 -870
  34. pyxecm/helper/logadapter.py +27 -0
  35. pyxecm/helper/web.py +229 -101
  36. pyxecm/helper/xml.py +527 -171
  37. pyxecm/maintenance_page/__init__.py +5 -0
  38. pyxecm/maintenance_page/__main__.py +6 -0
  39. pyxecm/maintenance_page/app.py +51 -0
  40. pyxecm/maintenance_page/settings.py +28 -0
  41. pyxecm/maintenance_page/static/favicon.avif +0 -0
  42. pyxecm/maintenance_page/templates/maintenance.html +165 -0
  43. pyxecm/otac.py +234 -140
  44. pyxecm/otawp.py +1436 -557
  45. pyxecm/otcs.py +7716 -3161
  46. pyxecm/otds.py +2150 -919
  47. pyxecm/otiv.py +36 -21
  48. pyxecm/otmm.py +1272 -325
  49. pyxecm/otpd.py +231 -127
  50. pyxecm-2.0.0.dist-info/METADATA +145 -0
  51. pyxecm-2.0.0.dist-info/RECORD +54 -0
  52. {pyxecm-1.6.dist-info → pyxecm-2.0.0.dist-info}/WHEEL +1 -1
  53. pyxecm-1.6.dist-info/METADATA +0 -53
  54. pyxecm-1.6.dist-info/RECORD +0 -32
  55. {pyxecm-1.6.dist-info → pyxecm-2.0.0.dist-info/licenses}/LICENSE +0 -0
  56. {pyxecm-1.6.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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,53 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pyxecm
3
- Version: 1.6
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
- Provides-Extra: customizer
31
- Requires-Dist: python-hcl2 ; extra == 'customizer'
32
- Requires-Dist: lxml ; extra == 'customizer'
33
- Requires-Dist: pyrfc ; extra == 'customizer'
34
-
35
- # PYXECM
36
-
37
- A python library to interact with Opentext Extended ECM REST API.
38
- API documentation is available on [OpenText Developer](https://developer.opentext.com/ce/products/extendedecm)
39
-
40
-
41
- # Disclaimer
42
-
43
- Copyright © 2023 Open Text Corporation, All Rights Reserved.
44
- The above copyright notice and this permission notice shall be included in all
45
- copies or substantial portions of the Software.
46
-
47
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
48
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
49
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
50
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
51
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
52
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
53
- SOFTWARE.
@@ -1,32 +0,0 @@
1
- pyxecm/__init__.py,sha256=aakkoowQ0bMt8CyublWcAeUZhiQYN8EhODIHi_sMjj0,301
2
- pyxecm/avts.py,sha256=pWXhyyIxqCSmJGokCzKcAsHy2u38kEV8lAEked-8ysw,39704
3
- pyxecm/coreshare.py,sha256=uchINAkJoZfcCeiPRBoVE6soyZUtGreuQLfKiWCyVtU,91462
4
- pyxecm/otac.py,sha256=i1-4nljJUedAsz842s4WXH_YjmEC-hZh66zEGhRS5Uw,21684
5
- pyxecm/otawp.py,sha256=Yisdn4JmGDfUF-GIdgb4MRTu2EumX-MTVlQeZOhvd5I,66030
6
- pyxecm/otcs.py,sha256=uE-5HlvQg19N186-Tc1NFnuEXjCFJvK28wBXwP_Ko6U,423656
7
- pyxecm/otds.py,sha256=eW-cH2oeKFKlARRi-ltX-Ja_DrOSNzDEk6TFhGDt0tE,148019
8
- pyxecm/otiv.py,sha256=nHEBQ9tddtKMiR1yPbGGP-jJiDaQpyoFmZcQFPgw22w,1720
9
- pyxecm/otmm.py,sha256=Pp00htEs46grAChlb5UOsBecYO2GsVzeiQXeZP7b6MM,33780
10
- pyxecm/otpd.py,sha256=zRus7UnYYrwG9tYDPPLxBbGzozATwS07ftYun4kaaV4,12503
11
- pyxecm/customizer/__init__.py,sha256=g32OUKoJiBYY4q9IMQctKTKq6YhFtv-IAIHcRC0KJu4,330
12
- pyxecm/customizer/browser_automation.py,sha256=cbUTGBLmyYO7617QfNJCZtFCK0i8-2hfA6QhKSfuKOY,16430
13
- pyxecm/customizer/customizer.py,sha256=OFrw2u3-4es205H9lMeFN4B0WpQAWxL7i-CnClAvawY,91195
14
- pyxecm/customizer/k8s.py,sha256=iVA4WQodfkHxxkb8j3g2cr-GIR1ll6BMjq1aIXxIUB4,41414
15
- pyxecm/customizer/m365.py,sha256=FvxpcukOjneivAPPQorP34eO3q7QZAzx1RVksCbmy50,145276
16
- pyxecm/customizer/payload.py,sha256=V1yFl6Xw9q05QZynff1hmVugfzjSSjEW0cfPnuim8iw,855135
17
- pyxecm/customizer/pht.py,sha256=lpoV15uyha3lH8pElG8j6U40JuBQC4Op_ci7VO65_EU,31655
18
- pyxecm/customizer/salesforce.py,sha256=k2pGPLDAHANvp_-0QdlU4sbXplBNP2NXsUpjhBHSNJk,61644
19
- pyxecm/customizer/sap.py,sha256=RNrHH0KjBQ10dHXoMaZIEd3EVPC8--4AN7nzy_Iv9k4,5947
20
- pyxecm/customizer/servicenow.py,sha256=JWvlvLxC9nv3fnXOWMCKiHNfqas72a_qUmX4kSltdVQ,57358
21
- pyxecm/customizer/successfactors.py,sha256=6hww4tKF_Bm2aLzFMStPuJmKJ4uBqteXwjWDkW0yDHU,38847
22
- pyxecm/customizer/translate.py,sha256=RxC7O4lxfGaG1nttCm5WI5X2wEM4eEqbVcUtnYns1TQ,3968
23
- pyxecm/helper/__init__.py,sha256=sScoB5RQAEkzP2LLvR_cRYwC1ARSdvBiv-4JwnJA7Dw,140
24
- pyxecm/helper/assoc.py,sha256=bieUr9lkJ0WYohMGsM51wt7OIX_ii4KHaE0cmhRr5TM,6931
25
- pyxecm/helper/data.py,sha256=WnpTi15ChtMWCLsk0BcZ3ry9ZZDnD4ajrFWmavmNGew,68217
26
- pyxecm/helper/web.py,sha256=CYhJW4TgyHc2w9nV75YgGJR3fDHeUjQEMkulNI9U3E8,9263
27
- pyxecm/helper/xml.py,sha256=WNvHI41AKpJnB2h_4gvHg0l0w3WtHlZ3W9q6TV6htYU,31664
28
- pyxecm-1.6.dist-info/LICENSE,sha256=z5DWWd5cHmQYJnq4BDt1bmVQjuXY1Qsp6y0v5ETCw-s,11360
29
- pyxecm-1.6.dist-info/METADATA,sha256=dSw3C2KHkoVC_AJjGk-7Mhb9p3Isoa2av9CiLhGlDbI,2130
30
- pyxecm-1.6.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
31
- pyxecm-1.6.dist-info/top_level.txt,sha256=TGak3_dYN67ugKFbmRxRG1leDyOt0T7dypjdX4Ij1WE,7
32
- pyxecm-1.6.dist-info/RECORD,,