请找到代码段
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文件