禁止requests请求https的提示InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more

时间:2018-03-07 20:17:47   收藏:0   阅读:1583
 提示这个 InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see 技术分享图片
可以禁止提示。
 
方法一:
requests.packages.urllib3.disable_warnings()
 
 

方法二:

import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

 

方法三

 

import warnings
warnings.filterwarnings("ignore")

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!