Using boto for AWS S3 Buckets for Signature V4

后端 未结 4 2152
春和景丽
春和景丽 2020-12-06 10:56

I have a problem with using Python-Boto SDK for S3 Buckets for region Frankfurt. According to Amazon link this region will only support V4. This document explains how to ad

4条回答
  •  攒了一身酷
    2020-12-06 11:40

    Try removing s3 from boto config, following code works for me

    if 's3' in boto.config.sections(): boto.config.remove_section('s3')

提交回复
热议问题