Trying to get meta_data that i have set on all my items in an s3 bucket. Which can be seen in the screenshot and below is the code I\'m using. The two get_metadata calls ret
bucket.list() does not return metadata. try this instead:
for key in bucket.list(): akey = bucket.get_key(key.name) print akey.get_metadata("company")