BottlePy 和 GEVENT 的 SSL 错误
SSL error with BottlePy and GEVENT
我需要一个 Web 服务器,在 Python 中,速度要尽可能快。
我找到了 BottlePy,并将默认服务器更改为 Gevent,以便更快。
但是现在,当我尝试将图像发送到 Azure Blob 时,我收到此错误:
TypeError: __init__() got an unexpected keyword argument 'server_hostname'
有人可以帮帮我吗?
谢谢
这是一个 gevent 错误:
https://groups.google.com/forum/#!searchin/gevent/ssl/gevent/olkwX4jUUlU/_OJECy1ppYIJ
修复它安装最后一个版本 (gevent-1.1rc5)
sudo pip install --pre gevent --upgrade
最后一个是Release Candidate,那么你需要--pre
参数。
https://groups.google.com/forum/#!topic/gevent/5mXt5w2kukE
我需要一个 Web 服务器,在 Python 中,速度要尽可能快。 我找到了 BottlePy,并将默认服务器更改为 Gevent,以便更快。 但是现在,当我尝试将图像发送到 Azure Blob 时,我收到此错误:
TypeError: __init__() got an unexpected keyword argument 'server_hostname'
有人可以帮帮我吗?
谢谢
这是一个 gevent 错误: https://groups.google.com/forum/#!searchin/gevent/ssl/gevent/olkwX4jUUlU/_OJECy1ppYIJ
修复它安装最后一个版本 (gevent-1.1rc5)
sudo pip install --pre gevent --upgrade
最后一个是Release Candidate,那么你需要--pre
参数。
https://groups.google.com/forum/#!topic/gevent/5mXt5w2kukE