Python的第三方库requests提示警告InsecureRequestWarning的问题

在Python3中使用以下代码报错:

requests.get(url, verify=False)

错误代码如下:

InsecureRequestWarning: Unverified HTTPS requestisbeing made. Adding certificate verificationisstrongly advised. See:

方法:

在语句前加上以下代码即可不会被报错:

requests.packages.urllib3.disable_warnings()

你可能感兴趣的:(Python的第三方库requests提示警告InsecureRequestWarning的问题)