GZIP python3 AttributeError:“模块”对象没有属性“压缩”

时间:2018-07-06 18:44:04

标签: python-3.x amazon-ec2

pipe.setnx(prefix+item[0], gzip.compress(bytes(item[1], 'utf-8')))

我正在尝试使用EC2实例上的gzip python lib压缩文件。我认为gzip是标准库的一部分。但是,出现以下错误

AttributeError: 'module' object has no attribute 'compress'

1 个答案:

答案 0 :(得分:0)

我发现其他人添加了一个名为gzip的库。因此,它默认为该库,而不是标准库。我最终改为使用zlib。