首页 > 后端开发 > Python教程 > Python中使用gzip模块压缩文件的简单教程

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

WBOY
发布: 2016-06-10 15:15:55
原创
1491 人浏览过

压缩数据创建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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板