I was having the same issue. I was able to fix it by using certifi package to get the location of certificates in the environment and assigning the path to verify. import certifi . . . cert_path = certifi.where() requests.get(url, headers, verify=cert_path)
... View more