📌  相关文章
📜  boto3 将文件上传到 s3 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:27.030000             🧑  作者: Mango

代码示例1
import boto3
s3 = boto3.resource('s3')
s3.meta.client.upload_file('/tmp/hello.txt', 'mybucket', 'hello.txt')