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 return None. Any idea's
boto.Version '2.5.2'
amazon_connection = S3Connection(ec2_key, ec2_secret)
bucket = amazon_connection.get_bucket('test')
for key in bucket.list():
print " Key %s " % (key)
print key.get_metadata("company")
print key.get_metadata("x-amz-meta-company")