Running a simple request on Python3.9 on Mac OS BigSur, I'm getting this error:
HTTPSConnectionPool(host='store.immediasys.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:1091)')))
import requests
try:
t = requests.get("https://store.immediasys.com/")
except Exception as e:
pass
I've tried ran the Install Certificates in the Python3.9 folder and I already have certifi installed and updated. Any help with this? It happens on different websites.