提示这个 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")
原文地址:https://www.cnblogs.com/ydf0509/p/8524725.html
时间: 2024-10-09 10:30:28