禁止requests请求https的提示InsecurePlatformWarning: A true SSLContext object is not available. This prevent

Posted 北风之神0509

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁止requests请求https的提示InsecurePlatformWarning: A true SSLContext object is not available. This prevent相关的知识,希望对你有一定的参考价值。

 提示这个 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")

 

以上是关于禁止requests请求https的提示InsecurePlatformWarning: A true SSLContext object is not available. This prevent的主要内容,如果未能解决你的问题,请参考以下文章

发布到 url 时禁止 403

小程序发送request请求,提示不在合法域名列表中的解决方法

Python 请求。 403 禁止

Python 3.5 urllib.request 403 禁止错误

使用带有urllib.request的Fortnite Tracker API时出现403(禁止)错误

接口请求提示Request 422 Unprocessable Entity