Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

270
Views
Boto3: Using boto3.resource('s3') to list all S3 buckets

Is it possible to list all S3 buckets using a boto3 resource, ie boto3.resource('s3')?

I know that it's possible to do so using a low-level service client:

import boto3
boto3.client('s3').list_buckets()

However in an ideal world we can operate at the higher level of resources. Is there a method that allows us to to do and, if not, why?

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

You can use s3.buckets.all():

s3 = boto3.resource('s3')
for bucket in s3.buckets.all():
  print(bucket.name)

Using list comprehension:

s3 = boto3.resource('s3')
buckets = [bucket.name for bucket in s3.buckets.all()]
print(buckets)
over 4 years ago · Santiago Trujillo Report

0

Get .buckets.pages() from the S3 resource and then loop through the pages to grab the buckets:

import boto3


buckets_iter = boto3.resource('s3').buckets.pages()
buckets = []
for bucket in buckets_iter:
    buckets += bucket

print(buckets)

I hope this helps.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!