Difference between revisions of "Boto3: aws s3 ls"

From wikieduonline
Jump to navigation Jump to search
 
Line 6: Line 6:
 
  [[def]] aws_s3_ls():
 
  [[def]] aws_s3_ls():
 
   mys3conn = [[boto3.client]]("s3")
 
   mys3conn = [[boto3.client]]("s3")
   mys3list = mys3conn.list_buckets()
+
   mys3list = mys3conn.[[list_buckets]]()
 
   [[print]] (mys3list)
 
   [[print]] (mys3list)
 
   
 
   

Latest revision as of 13:57, 2 April 2024

#!/usr/bin/env python3

import boto3
 
def aws_s3_ls():
  mys3conn = boto3.client("s3")
  mys3list = mys3conn.list_buckets()
  print (mys3list)

def main ():
  aws_s3_ls()

if __name__ == "__main__":
  main()

See also[edit]

Advertising: