python爬虫遇到https站点InsecureRequestWarning警告解决方案

python学习网 2017-08-22 13:26:02

python爬虫遇到https站点InsecureRequestWarning警告解决方案

加三行代码即可

from requests.packages.urllib3.exceptions import InsecureRequestWarning,InsecurePlatformWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
requests.packages.urllib3.disable_warnings(InsecurePlatformWarning)

 

以上。

阅读(810) 评论(0)