Created
February 10, 2012 17:25
-
-
Save garnaat/1791086 to your computer and use it in GitHub Desktop.
Update the content-type of an existing key in S3 using boto
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto | |
s3 = boto.connect_s3() | |
bucket = s3.lookup('mybucket') | |
key = bucket.lookup('mykey') | |
# Copy the key onto itself, preserving the ACL but changing the content-type | |
key.copy(key.bucket, key.name, preserve_acl=True, metadata={'Content-Type': 'text/plain'}) | |
key = bucket.lookup('mykey') | |
print key.content_type |
Helped me too, thanks
Exactly what I was looking for. Thanks!
bucket.lookup(key_name)
has been deprecated. Source Boto. Use bucket.get_key(key_name)
instead.
thanx for large help!
can copy self is very key idea ;-)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, this helped me a lot dude.