Python中使用gzip模块压缩文件的简单教程

WBOY
發布: 2016-06-10 15:15:55
原創
1458 人瀏覽過

压缩数据创建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模块

f = gzip.open('file.gz', 'wb')
f.write(content)
f.close()
登入後複製

压缩已经存在的文件
python2.7后,可以用with语句

import gzip
with open("/path/to/file", 'rb') as plain_file:
  with gzip.open("/path/to/file.gz", 'wb') as zip_file:
    zip_file.writelines(plain_file)
登入後複製

如果不考虑跨平台,只在linux平台,下面这种方式更直接

from subprocess import check_call
check_call('gzip /path/to/file',shell=True)
登入後複製

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板