pyxecm 2.0.1__py3-none-any.whl → 2.0.3__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.
- pyxecm/__init__.py +3 -2
- pyxecm/avts.py +3 -1
- pyxecm/customizer/api/app.py +2 -2
- pyxecm/customizer/api/auth/functions.py +37 -30
- pyxecm/customizer/api/common/functions.py +54 -0
- pyxecm/customizer/api/common/router.py +50 -3
- pyxecm/customizer/api/settings.py +5 -3
- pyxecm/customizer/api/terminal/router.py +43 -18
- pyxecm/customizer/api/v1_csai/models.py +18 -0
- pyxecm/customizer/api/v1_csai/router.py +26 -1
- pyxecm/customizer/api/v1_payload/functions.py +9 -3
- pyxecm/customizer/browser_automation.py +508 -200
- pyxecm/customizer/customizer.py +123 -22
- pyxecm/customizer/guidewire.py +170 -37
- pyxecm/customizer/payload.py +614 -257
- pyxecm/customizer/settings.py +21 -3
- pyxecm/helper/xml.py +1 -1
- pyxecm/otawp.py +10 -6
- pyxecm/otca.py +187 -21
- pyxecm/otcs.py +496 -206
- pyxecm/otds.py +1 -0
- pyxecm/otkd.py +1369 -0
- pyxecm/otmm.py +190 -66
- {pyxecm-2.0.1.dist-info → pyxecm-2.0.3.dist-info}/METADATA +3 -6
- {pyxecm-2.0.1.dist-info → pyxecm-2.0.3.dist-info}/RECORD +28 -26
- {pyxecm-2.0.1.dist-info → pyxecm-2.0.3.dist-info}/WHEEL +1 -1
- {pyxecm-2.0.1.dist-info → pyxecm-2.0.3.dist-info}/licenses/LICENSE +0 -0
- {pyxecm-2.0.1.dist-info → pyxecm-2.0.3.dist-info}/top_level.txt +0 -0
pyxecm/otds.py
CHANGED
|
@@ -565,6 +565,7 @@ class OTDS:
|
|
|
565
565
|
self.logger.info("Session has expired - try to re-authenticate...")
|
|
566
566
|
self.authenticate(revalidate=True)
|
|
567
567
|
retries += 1
|
|
568
|
+
time.sleep(REQUEST_RETRY_DELAY / 10) # Add a delay before retrying
|
|
568
569
|
else:
|
|
569
570
|
# Handle plain HTML responses to not pollute the logs
|
|
570
571
|
content_type = response.headers.get("content-type", None)
|