python boto3でS3操作
インストール
pipか何かでboto3をインストール. 自分はcondaを使ってインストール.
$ conda install -c anaconda boto3=1.3.1
aws cliを使って、クレデンシャル情報とデフォルトの地域を登録
$ aws configure
aws_access_key_id = ACCESS_KEY_ID
aws_secret_access_key = SECRET_ACCESS_KEY
region = ap-northeast-1
output = json
なお、直接, 下記のようにファイルに追記してもok
$ vim ~/.aws/credentials
[default]
aws_access_key_id = ACCESS_KEY_ID
aws_secret_access_key = SECRET_ACCESS_KEY
$ vim ~/.aws/config:
[default]
region = ap-norteast-1
output = json
バケットリストの取得
import boto3
s3 = boto3.resource('s3')
for bucket in s3.buckets.all():
print(bucket.name)
アップロード
import boto3
s3 = boto3.resource('s3')
data = open('test.jpg', 'rb')
s3.Bucket('my-bucket').put_object(Key='test.jpg', Body=data)
Author And Source
この問題について(python boto3でS3操作), 我々は、より多くの情報をここで見つけました https://qiita.com/Uejun/items/5163ccadd5bdb4417f30著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .