PythonでS3バケット内の一覧を取得し、特定のKeyで検索 Key名と最終更新日、カウント数をファイルに出力
所用で必要になったので
# -*- coding: utf-8 -*-
import boto3
PUBLIC_S3_BUCKET_NAME_TEST = 'バケット名'
def access_count():
count = 0
with open('file.txt', 'w') as f:
# バケットの一覧取得
S3 = boto3.resource('s3')
S3BUCKET = S3.Bucket(PUBLIC_S3_BUCKET_NAME_TEST)
for obj in S3BUCKET.objects.all():
if '検索名' in obj.key:
count += 1
print(count, obj.key, obj.last_modified, file=f)
print('total=' + str(count), file=f)
Author And Source
この問題について(PythonでS3バケット内の一覧を取得し、特定のKeyで検索 Key名と最終更新日、カウント数をファイルに出力), 我々は、より多くの情報をここで見つけました https://qiita.com/dominos_ff/items/c5e8ea403950e0606e3b著者帰属:元の著者の情報は、元の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 .