Difference between revisions of "Boto3: aws s3 ls"

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

Revision as of 09:25, 19 April 2022

#!/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

Advertising: