Httpsconnectionpool Ssl Error Certificate Verify Failed
I'm working on web scraping some particular websites and therefor I use the python 3 requests package and beautifulsoup. While processing a test over some websites I got this error
Solution 1:
I got it, it just need to ignore the certificate as the code below, you would get a warning as insecure connection.
req = rq.get(current_url, verify = False)
Post a Comment for "Httpsconnectionpool Ssl Error Certificate Verify Failed"