I'm trying to get a web via Python requests (version 2.25.1), and I get the following error:
SSLError: HTTPSConnectionPool(host='www.weathermod-bg.eu', port=443): Max retries exceeded with url: /wr/
img_data.php?srs=DCE (Caused by SSLError(SSLError(1, '[SSL: WRONG_SIGNATURE_TYPE] wrong signature type (_ssl.c:1129)')))
I have tried with and without the verify
parameter, i.e.
r = requests.get(url, verify=False)
This command also fails. However I can get the url from a browser without problems, so it does not seem to be a connection issue.
Any ideas what I'm missing here?