我正在尝试使用请求模块(http://docs.python-requests.org/en/latest/)通过 ssl 连接到主机
但我的代码:
import requests
requests.get("myurl", cert="hosts_certificate_file.crt")
抛出此错误:
_ssl.c:364: error:140B0002:SSL routines:SSL_CTX_use_PrivateKey_file:system lib
我试图传递verify=False
给requests.get()
,但它也不起作用。