Python中使⽤gzip模块压缩⽂件的简单教程
压缩数据创建gzip⽂件
先看⼀个略⿇烦的做法
import StringIO,gzip
content = 'Life is short.I use python'
zbuf = StringIO.StringIO()
zfile = gzip.GzipFile(mode='wb', compresslevel=9, fileobj=zbuf)
zfile.write(content)
zfile.close()
但其实有个快捷的封装,不⽤⽤到StringIO模块
writelines使用方法python
f = gzip.open('', 'wb')
f.write(content)
f.close()
压缩已经存在的⽂件
python2.7后,可以⽤with语句
import gzip
with open("/path/to/file", 'rb') as plain_file:
with gzip.open("/path/", 'wb') as zip_file:
zip_file.writelines(plain_file)
如果不考虑跨平台,只在linux平台,下⾯这种⽅式更直接
from subprocess import check_call
check_call('gzip /path/to/file',shell=True)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。