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
Try removing s3 from boto config, following code works for me
if 's3' in boto.config.sections(): boto.config.remove_section('s3')