fiddler打开时,pycharm运行报SSL错误

python3访问HTTPS时移除SSL认证

r = requests.get(url, verity=False)

移除警告https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings

import urllib3
urllib3.disable_warnings()
原文地址:https://www.cnblogs.com/qlling/p/13739129.html