阅读背景:

Python使用boto3操作AWS S3中踩过的坑

来源:互联网 
import boto3
s3
= boto3.resource('s3')
s3.meta.client.upload_file(
'/tmp/hello.txt', 'mybucket', 'hello.txt')
import boto3
from botocore.client import Config

s3
= boto3.resource('s3', config=Config(signature_version='s3v4'))
s3.meta.client.upload_file(
'/tmp/hello.txt', 'mybucket', 'hello.txt')

分享到: