使用Python(boto3包)从S3读取zip文件时的内存问题

时间:2017-11-22 06:17:54

标签: python amazon-s3 boto3

请找到代码段

s3_resource =  boto3.resource('s3',       
   aws_access_key_id = 'XXXXXXX',       
   aws_secret_access_key = 'XXXXX')

file = s3_resource.Object('xxxxxx',filePath).get()
with io.BytesIO(file['Body'].read()) as t:
        t.seek(0)
        with ZipFile(t, 'r') as myzip:

该文件是压缩的zip文件。 我收到内存错误(使用io.BytesIO(文件[' Body']。read())为t :) 是否有效使用python

中的boto3包从S3读取压缩的zip文件

0 个答案:

没有答案