Python中使用gzip模块压缩文件的简单教程
压缩数据创建gzip文件
先看一个略麻烦的做法
importStringIO,gzip content='Lifeisshort.Iusepython' zbuf=StringIO.StringIO() zfile=gzip.GzipFile(mode='wb',compresslevel=9,fileobj=zbuf) zfile.write(content) zfile.close()
但其实有个快捷的封装,不用用到StringIO模块
f=gzip.open('file.gz','wb')
f.write(content)
f.close()
压缩已经存在的文件
python2.7后,可以用with语句
importgzip
withopen("/path/to/file",'rb')asplain_file:
withgzip.open("/path/to/file.gz",'wb')aszip_file:
zip_file.writelines(plain_file)
如果不考虑跨平台,只在linux平台,下面这种方式更直接
fromsubprocessimportcheck_call
check_call('gzip/path/to/file',shell=True)
热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短