如何在Python中使用bzip2压缩文件?

时间:2016-09-20 22:43:29

标签: python compression bzip2

这就是我所拥有的:

import bz2

compressionLevel = 9
source_file = '/foo/bar.txt' #this file can be in a different format, like .csv or others...
destination_file = '/foo/bar.bz2'

tarbz2contents = bz2.compress(source_file, compressionLevel)
fh = open(destination_file, "wb")
fh.write(tarbz2contents)
fh.close()

我知道bz2.compress的第一个参数是一个数据,但这是我发现澄清我需要的简单方法。

我知道BZ2File但是,我找不到任何使用BZ2File的好例子。

1 个答案:

答案 0 :(得分:4)

documentation for bz2.compress表示它需要数据,而不是文件名 请尝试替换以下行:

tarbz2contents = bz2.compress(open(source_file, 'rb').read(), compressionLevel)

......或者可能:

with open(source_file, 'rb') as data:
    tarbz2contents = bz2.compress(data.read(), compressionLevel)