python3 InsecureRequestWarning解决方法
使用python3 requests发送https请求,已关闭认证(verify=False)情况下,提示:InsecureRequestWarning: Unverified HTTPS request is being made to host
解决方法:在代码中添加以下代码即可
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

浙公网安备 33010602011771号