eaf_base_api 2.5.2__tar.gz → 2.5.3__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.
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/PKG-INFO +1 -1
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/base_api/base.py +5 -4
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/base_api/modules/config.py +1 -0
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/pyproject.toml +1 -1
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/LICENSE +0 -0
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/README.md +0 -0
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/base_api/__init__.py +0 -0
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/base_api/modules/__init__.py +0 -0
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/base_api/modules/errors.py +0 -0
- {eaf_base_api-2.5.2 → eaf_base_api-2.5.3}/base_api/modules/progress_bars.py +0 -0
|
@@ -763,10 +763,11 @@ class BaseCore:
|
|
|
763
763
|
raise KillSwitch("CRITICAL PROXY ERROR, CHECK LOGS!")
|
|
764
764
|
|
|
765
765
|
def initialize_session(self):
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
766
|
+
if not self.config.ssl_context:
|
|
767
|
+
ctx = ssl.create_default_context(cafile=certifi.where())
|
|
768
|
+
if not self.config.verify_ssl:
|
|
769
|
+
ctx.check_hostname = False
|
|
770
|
+
ctx.verify_mode = ssl.CERT_NONE
|
|
770
771
|
|
|
771
772
|
if not http2_possible and self.config.use_http2:
|
|
772
773
|
self.logger.error(f"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|