我想使用python api将音频文件上传到S3存储桶

时间:2017-03-22 07:06:59

标签: python api amazon-s3

我想使用连接到html页面的python api将文件上传到S3存储桶并从S3存储桶下载文件

1 个答案:

答案 0 :(得分:1)

这个' boto3'有一个库,用于在S3中上传文件。要快速设置boto3,请按照以下步骤操作:

boto3 quickstart

上传文件:

import boto3
s3 = boto3.resource('s3')
s3.meta.client.upload_file('filename', 'bucketname', 'desired filename in s3')