[Python] 使用boto3上傳圖片到AWS的S3空間 發佈日期: 2019 年 8 月 17 日 作者: Sky Leong import boto3 bucket = 'abc.example.com' s3 = boto3.resource('s3') data = open('./test.png', 'rb') s3.Bucket(bucket).put_object(Key=img, Body=data,ACL='public-read') 相關文章Python存取google sheet (更新版)[Python] 發送含附件emailvs-code-python設定interpreterCSS漸變外框Raspberry 設定Camera[Python] list內容亂序