pipe.setnx(prefix+item[0], gzip.compress(bytes(item[1], 'utf-8')))
我正在尝试使用EC2实例上的gzip python lib压缩文件。我认为gzip是标准库的一部分。但是,出现以下错误
AttributeError: 'module' object has no attribute 'compress'
答案 0 :(得分:0)
我发现其他人添加了一个名为gzip的库。因此,它默认为该库,而不是标准库。我最终改为使用zlib。