I am trying to to a very simple python request using requests.get but am getting the following error using this code:
url = 'https://www.tesco.com/'
status = requests.get(url)
The error:
requests.exceptions.SSLError: HTTPSConnectionPool(host='www.tesco.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)')))
Can anyone explain to me how to fix this and more importantly what the error means?
Many Thanks