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

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

加三行代码即可

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

以上。

原文地址:https://www.cnblogs.com/liu-ke/p/7405160.html