Why does Python requests ignore the verify parameter?

后端 未结 3 737
滥情空心
滥情空心 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:07

    Combination of OpenSSL upgrade and installing ndg-httpsclient resolved it for me

    sudo pip install ndg-httpsclient

    and

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

提交回复
热议问题