python使用requests時報錯requests.exceptions.SSLError: HTTPSConnectionPool

requests.exceptions.SSLError: HTTPSConnectionPool(host='www.baidu.com', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError(1, u'[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)'),))  html

 
錯誤提示就是上面這樣的。首先我找了不少的資料,有不少人說關閉證書驗證(verify=False))能夠解決這個問題或者說是在進行GET時,指定SSL證書.
response = requests.get('http://www.baidu.com/', headers = header, verify=False)  
但我用以上兩種方法都沒有完美解決此問題,並且有些還有後續錯誤好比InsecureRequestWarning

 

正確的作法參考文檔資料ide

https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warningsui

https://urllib3.readthedocs.io/en/latest/user-guide.html#sslurl

參考博客:http://blog.csdn.net/zahuopuboss/article/details/52964809spa

 

只要安裝一下幾個requests依賴包就能夠解決此問題.net

 

pip install cryptography htm

pip install pyOpenSSLblog

pip install certifiip

 

原文轉至博客:https://blog.csdn.net/qq_31077649/article/details/79013199ssl

相關文章
相關標籤/搜索