getting SSLError in Python3.11.4
import requests from requests.auth import HTTPBasicAuth username = “” password = “” response = requests.get(url, headers=headers, auth=HTTPBasicAuth(username, passwrd)) Getting Below Error while calling the above API: SSLError: HTTPSConnectionPool(host=”, port=): Max retries exceeded with url: ” (Caused by SSLError(SSLError(1, ‘[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:1002)’))) requests==2.32.3 requests-mock==1.12.1 urllib3==1.26.18 urllib3-secure-extra==0.1.0 pyOpenSSL==23.1.0 certifi==2024.12.14 idna==3.7 cryptography==40.0.2 python-3.11 2 […]
getting SSLError in Python3.11.4
import requests from requests.auth import HTTPBasicAuth username = “” password = “” response = requests.get(url, headers=headers, auth=HTTPBasicAuth(username, passwrd)) Getting Below Error while calling the above API: SSLError: HTTPSConnectionPool(host=”, port=): Max retries exceeded with url: ” (Caused by SSLError(SSLError(1, ‘[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:1002)’))) requests==2.32.3 requests-mock==1.12.1 urllib3==1.26.18 urllib3-secure-extra==0.1.0 pyOpenSSL==23.1.0 certifi==2024.12.14 idna==3.7 cryptography==40.0.2 python-3.11 2 […]
Python is interpretting n as 0xd0 when reading as bytes
newline is getting interpretted as Ð (0xd0) instead of (0x0a) and I genuinly don’t have any idea on how to fix this. I don’t know where to begin either.