SSL error with Python requests despite up-to-date dependencies

后端 未结 3 438
天涯浪人
天涯浪人 2020-11-30 05:50

I am getting an SSL \"bad handshake\" error. Most similar responses to this problem seem to stem from old libraries, 1024bit cert. incompatibility, etc... I think

3条回答
  •  甜味超标
    2020-11-30 06:36

    This may help as workaround for your issue.

    print(requests.get(url, proxies,verify = False))
    

提交回复
热议问题