Yuta NakataのBlog

Python / AWS / ITについて役立つ情報を発信します

2024-04-20から1日間の記事一覧

AWS/boto3でRate Exceeded の回避方法

結論 import boto3 from botocore.config import Config config = Config(retries = { 'max_attempts': 10, 'mode': 'standard' } ) client = boto3.client('s3', config=config) でOKです。 巷では、 pip install retrying https://github.com/rholder/retr…