Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in AWS by (19.1k points)

I want to copy a file in the s3 bucket using python.

Ex: I have a bucket name = test. And in the bucket, I have 2 folders named "dump" & "input". Now I want to copy a file from local directory to S3 "dump" folder using python... Can anyone help me?

1 Answer

0 votes
by (44.4k points)

Try this code:

import boto

import boto.s3

import sys

from boto.s3.key import Key

 

AWS_ACCESS_KEY_ID = ''

AWS_SECRET_ACCESS_KEY = ''

 

bucket_name = AWS_ACCESS_KEY_ID.lower() + '-dump'

conn = boto.connect_s3(AWS_ACCESS_KEY_ID,

        AWS_SECRET_ACCESS_KEY)

 

 

bucket = conn.create_bucket(bucket_name,

    location=boto.s3.connection.Location.DEFAULT)

 

testfile = "replace this with an actual filename"

print 'Uploading %s to Amazon S3 bucket %s' % \

   (testfile, bucket_name)

 

def percent_cb(complete, total):

    sys.stdout.write('.')

    sys.stdout.flush()

 

 

k = Key(bucket)

k.key = 'my test file'

k.set_contents_from_filename(testfile,

    cb=percent_cb, num_cb=10)

Related questions

0 votes
1 answer

Want to get 50% Hike on your Salary?

Learn how we helped 50,000+ professionals like you !

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Jul 23, 2019 in AWS by yuvraj (19.1k points)

Browse Categories

...