解决python2.7.9以下版本requests访问https的问题

在python2.7.9以下版本requests访问https连接后,总会报一些关于SSL warning。

解决法子可以参考:https://urllib3.readthedocs.io/en/latest/security.html#insecureplatformwarning

(链接里面还包含各种其他问题的解决法子)

0x01 更新python的版本

到官网https://www.python.org/downloads/release/python-2711/ (这是目前最新的2.7.11,好像自py2.7.10后都自带pip)

下载后,windows可以覆盖安装原来的版本的,建议重启电脑(或者你先关闭之前所有python进程),再安装新版本python,安装路径选择之前旧版本所在路径即可覆盖安装。

0x02 升级ndg-httpsclient

windows的话打开cmd,

pip install --upgrade ndg-httpsclient

这样就可以了。