Why does Python requests ignore the verify parameter?

后端 未结 3 735
滥情空心
滥情空心 2020-12-02 01:45

The problem

I have been trying to use Python\'s requests package to download the following URL:

https://service.isracard.co.il/I_logon.jsp

3条回答
  •  庸人自扰
    2020-12-02 02:21

    I run into this as well on macOS Sierra, Python 2.7.9 and it is fixed by:

    sudo pip install --ignore-installed pyOpenSSL --upgrade

    It's probably due to the pyOpenSSL is too old.

提交回复
热议问题