解決pycharm警告InsecureRequestWarning:

alongwaywith發表於2020-11-17

在爬網站12306的時候,發現證書不安全,打算使用verify=False來跳過
但是出現了warning
在這裡插入圖片描述

後面才知道查了資料才知道
pycharm中為了安全起見是預設關閉了認證功能
如果你使用requests傳送HTTPS請求,(已經關閉認證(verify=False)情況下),控制檯會輸出以下錯誤:
InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
修正的話加入這個就可以了
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

具體的話可以去這個網址看看https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings

當然這只是個warning 你不管他也行

相關文章