Google 存储服务帐户身份验证需要 PyOpenSSL 一段时间后

Google storage Service account authentication requires PyOpenSSL after some time

我通过 python boto plugin

使用 google 存储

我的 python 脚本 按预期工作了大约一个小时左右 。然后它给了我错误:

Service account authentication requires PyOpenSSL. Please install this library and try again.

我的代码:

import boto

src_uri = boto.storage_uri(DOGS_BUCKET + '/' + filename, GOOGLE_STORAGE)
object_contents = StringIO.StringIO()
src_uri.get_key().get_file(object_contents)

pyopenssl 已安装

此问题是由于 python 版本太旧引起的

我使用 python 2.7.9+

时没有这些问题