我正在尝试在 Speedtest API 上使用以下代码
def get_bytes(self):
s = speedtest.Speedtest()
s.get_best_server()
s.download()
s.upload()
res = s.results.dict()
print(res["download"], res["upload"], res["ping"])
但是,我在此连接方面遇到了一些问题。我一直收到此错误。
speedtest.ConfigRetrievalError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)>
我在 MacOS Mojave 上使用 Python 3.7 并且已经尝试更新 virtualenv 上的证书
你有什么主意吗?