如何从特定键的存储桶中读取boto3中文件的内容

时间:2016-08-09 20:07:29

标签: python amazon-web-services amazon-s3 boto3

我需要使用boto3读取存储在AWS中的音频文件的内容。为了做到这一点,我正在做这样的事情:

client = boto3.client('s3')
client.download_file(obj.bucket, obj.key, "temp.mp3")

然而,它没有下载文件并给我一个像这样的clientError:

An error occurred (404) when calling the HeadObject operation: Not Found

我不确定HeadObject是什么。有没有其他方法可以读取存储在特定存储桶中的文件内容?

0 个答案:

没有答案