我通过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
答案 0 :(得分:1)
这个问题是由一个太旧的python版本引起的
python 2.7.9 +
我没有这些问题