boto ssl_proxy错误:' str'不支持缓冲区接口

时间:2016-02-12 01:35:13

标签: django amazon-s3 boto

此错误似乎是一个已知的问题,并未成为优先事项(请参阅https://github.com/boto/boto/pull/2718)。我使用2.39版本的boto和django-storages-redux为我的媒体文件启用了S3。目前在boto/connection.py in proxy_ssl, line 796收到错误。

我尝试用boto3替换boto,但这不适用于django-storages-redux。

有没有人找到通过SSL代理使用S3的替代方案?

编辑:

当我说boto3不能用于django-storage时,因为存储/后端/ s3boto.py中的这些导入:

try:
    from boto import __version__ as boto_version
    from boto.s3.connection import S3Connection, SubdomainCallingFormat
    from boto.exception import S3ResponseError
    from boto.s3.key import Key as S3Key
    from boto.utils import parse_ts, ISO8601
except ImportError:
    raise ImproperlyConfigured("Could not load Boto's S3 bindings.\n"
                               "See https://github.com/boto/boto")

0 个答案:

没有答案