Gzip模块
Gzip模块为python的压缩和解压缩模块,读写gzip 文件
一、使用gzip模块压缩文件:
- 1 import gzip #导入python gzip模块,注意名字为全小写
- 2 g = gzip.GzipFile(filename="", mode="wb", compresslevel=9, fileobj=open('sitemap.log.gz', 'wb'))#filename参数是压缩文件内文件的名字,为空也可以。fileobj是生成的压缩文件对象
- 3 g.write(open('d:\\test\\sitemap.xml').read())
- 4 g.close()
二、使用gzip解压缩文件:
代码如下:
- g = gzip.GzipFile(mode="rb", fileobj=open('d:\\test\\sitemap.log.gz', 'rb')) # python gzip 解压
- open(r"d:\\haha.xml", "wb").write(g.read())
三、实际应用
在实际应用中,例如在爬取网页的过程中,我们检查网页源代码的head头部信息发现,是结果gzip压缩处理的,所以在显示过程中显示不完全,例如:
我们要抓取指定url的源代码
- import urllib2
- from lxml import etree
- request = urllib2.Request('http://outofmemory.cn/')
- response = urllib2.urlopen(request)
- print data.text()
发现显示出的源代码是经过压缩的数据
此时我们需要对齐进行解压操作,最终代码入下:
- #-*-coding:utf8 -*-
- import urllib2
- from lxml import etree
- from StringIO import StringIO #StringIO模块就是在内存中读写str
- import gzip #加压缩文件
- request = urllib2.Request('http://outofmemory.cn/')
- request.add_header('Accept-encoding', 'gzip') #添加头信息
- response = urllib2.urlopen(request)
- if response.info().get('Content-Encoding') == 'gzip':
- buf = StringIO( response.read()) #将读取的response信息作为stringIO方便后面作为文件写入
- f = gzip.GzipFile(fileobj=buf) #解压缩response
- data = f.read()
- print data
四. 官方使用文档
链接:https://docs.python.org/3/library/gzip.html
- gzip — Support for gzip files
- Source code: Lib/gzip.py
- This module provides a simple interface to compress and decompress files just like the GNU programs gzip and gunzip would.
- The data compression is provided by the zlib module.
- The gzip module provides the GzipFile class, as well as the open(), compress() and decompress() convenience functions. The GzipFile class reads and writes gzip-format files, automatically compressing or decompressing the data so that it looks like an ordinary file object.
- Note that additional file formats which can be decompressed by the gzip and gunzip programs, such as those produced by compress and pack, are not supported by this module.
- The module defines the following items:
- gzip.open(filename, mode='rb', compresslevel=9, encoding=None, errors=None, newline=None)
- Open a gzip-compressed file in binary or text mode, returning a file object.
- The filename argument can be an actual filename (a str or bytes object), or an existing file object to read from or write to.
- The mode argument can be any of 'r', 'rb', 'a', 'ab', 'w', 'wb', 'x' or 'xb' for binary mode, or 'rt', 'at', 'wt', or 'xt' for text mode. The default is 'rb'.
- The compresslevel argument is an integer from 0 to 9, as for the GzipFile constructor.
- For binary mode, this function is equivalent to the GzipFile constructor: GzipFile(filename, mode, compresslevel). In this case, the encoding, errors and newline arguments must not be provided.
- For text mode, a GzipFile object is created, and wrapped in an io.TextIOWrapper instance with the specified encoding, error handling behavior, and line ending(s).
- Changed in version 3.3: Added support for filename being a file object, support for text mode, and the encoding, errors and newline arguments.
- Changed in version 3.4: Added support for the 'x', 'xb' and 'xt' modes.
- Changed in version 3.6: Accepts a path-like object.
- class gzip.GzipFile(filename=None, mode=None, compresslevel=9, fileobj=None, mtime=None)
- Constructor for the GzipFile class, which simulates most of the methods of a file object, with the exception of the truncate() method. At least one of fileobj and filename must be given a non-trivial value.
- The new class instance is based on fileobj, which can be a regular file, an io.BytesIO object, or any other object which simulates a file. It defaults to None, in which case filename is opened to provide a file object.
- When fileobj is not None, the filename argument is only used to be included in the gzip file header, which may include the original filename of the uncompressed file. It defaults to the filename of fileobj, if discernible; otherwise, it defaults to the empty string, and in this case the original filename is not included in the header.
- The mode argument can be any of 'r', 'rb', 'a', 'ab', 'w', 'wb', 'x', or 'xb', depending on whether the file will be read or written. The default is the mode of fileobj if discernible; otherwise, the default is 'rb'.
- Note that the file is always opened in binary mode. To open a compressed file in text mode, use open() (or wrap your GzipFile with an io.TextIOWrapper).
- The compresslevel argument is an integer from 0 to 9 controlling the level of compression; 1 is fastest and produces the least compression, and 9 is slowest and produces the most compression. 0 is no compression. The default is 9.
- The mtime argument is an optional numeric timestamp to be written to the last modification time field in the stream when compressing. It should only be provided in compression mode. If omitted or None, the current time is used. See the mtime attribute for more details.
- Calling a GzipFile object’s close() method does not close fileobj, since you might wish to append more material after the compressed data. This also allows you to pass an io.BytesIO object opened for writing as fileobj, and retrieve the resulting memory buffer using the io.BytesIO object’s getvalue() method.
- GzipFile supports the io.BufferedIOBase interface, including iteration and the with statement. Only the truncate() method isn’t implemented.
- GzipFile also provides the following method and attribute:
- peek(n)
- Read n uncompressed bytes without advancing the file position. At most one single read on the compressed stream is done to satisfy the call. The number of bytes returned may be more or less than requested.
- Note While calling peek() does not change the file position of the GzipFile, it may change the position of the underlying file object (e.g. if the GzipFile was constructed with the fileobj parameter).
- New in version 3.2.
- mtime
- When decompressing, the value of the last modification time field in the most recently read header may be read from this attribute, as an integer. The initial value before reading any headers is None.
- All gzip compressed streams are required to contain this timestamp field. Some programs, such as gunzip, make use of the timestamp. The format is the same as the return value of time.time() and the st_mtime attribute of the object returned by os.stat().
- Changed in version 3.1: Support for the with statement was added, along with the mtime constructor argument and mtime attribute.
- Changed in version 3.2: Support for zero-padded and unseekable files was added.
- Changed in version 3.3: The io.BufferedIOBase.read1() method is now implemented.
- Changed in version 3.4: Added support for the 'x' and 'xb' modes.
- Changed in version 3.5: Added support for writing arbitrary bytes-like objects. The read() method now accepts an argument of None.
- Changed in version 3.6: Accepts a path-like object.
- gzip.compress(data, compresslevel=9)
- Compress the data, returning a bytes object containing the compressed data. compresslevel has the same meaning as in the GzipFile constructor above.
- New in version 3.2.
- gzip.decompress(data)
- Decompress the data, returning a bytes object containing the uncompressed data.
- New in version 3.2.
- Examples of usage
- Example of how to read a compressed file:
- import gzip
- with gzip.open('/home/joe/file.txt.gz', 'rb') as f:
- file_content = f.read()
- Example of how to create a compressed GZIP file:
- import gzip
- content = b"Lots of content here"
- with gzip.open('/home/joe/file.txt.gz', 'wb') as f:
- f.write(content)
- Example of how to GZIP compress an existing file:
- import gzip
- import shutil
- with open('/home/joe/file.txt', 'rb') as f_in:
- with gzip.open('/home/joe/file.txt.gz', 'wb') as f_out:
- shutil.copyfileobj(f_in, f_out)
- Example of how to GZIP compress a binary string:
- import gzip
- s_in = b"Lots of content here"
- s_out = gzip.compress(s_in)
- See also
- Module zlib
- The basic data compression module needed to support the gzip file format.
Gzip模块的更多相关文章
- nginx gzip 模块配置
#gzip模块设置 gzip on; #开启gzip压缩输出 gzip_min_length 1k; #最小压缩文件大小 gzip_buffers 4 16k; #压缩缓冲区 gzip_http_ve ...
- Qt的gzip模块实现
一直没找到Qt中方便的gzip模块,于是自己动手,调用zlib模块实现了一份. 目标: 1.gzip的压缩与解压 2.内存中操作 3.方便的Qt接口 实现分析: gzip 压缩算法为 defla ...
- nginx的gzip模块
gzip模块是我们在nginx里面经常用到的,压缩响应的数据,这通常有助于将传输数据的大小减少一半甚至更多.可以让我们访问网站更为流畅. Syntax Default Context gzip on ...
- nginx的gzip模块详解以及配置
文章来源 运维公会:nginx的gzip模块详解以及配置 1.gzip模块作用 gzip这个模块无论在测试环境还是生产环境都是必须要开启,这个模块能高效的将页面的内容,无论是html或者css.j ...
- python中gzip模块的使用
gzip模块能够直接压缩和解压缩bytes-like类型的数据,同时也能实现对应格式文件的压缩与解压缩 一.数据压缩与解压缩 压缩 函数-gzip.compress(data, compresslev ...
- 飘逸的python - 简明gzip模块压缩教程
压缩数据创建gzip文件 先看一个略麻烦的做法 import StringIO,gzip content = 'Life is short.I use python' zbuf = StringIO. ...
- nginix.conf 中的gzip模块设置
gizp模块配置 gzip on; gzip_min_length 1k; gzip_buffers 4 16k; gzip_http_version 1.0; g ...
- 【nginx】关于gzip压缩
有这么一段配置文件 gzip on # 默认值: gzip off # 开启或者关闭gzip模块 gzip_static off; # nginx对于静态文件的处理模块 # 该模块可以读取预先压缩的g ...
- Web服务器处理HTTP压缩之gzip、deflate压缩
现如今在处理http请求的时候,由于请求的资源较多,如果不启用压缩的话,那么页面请求的流量将会非常大.启用gzip压缩,在一定程度上会大大的提高页面性能. 目录 一.什么是gzip 二.什么是de ...
随机推荐
- 深度学习之TCN网络
论文链接:https://arxiv.org/pdf/1803.01271.pdf TCN(Temporal Convolutional Networks) TCN特点: 可实现接收任意长度的输入序列 ...
- SVN与GIT工具使用对比
版本工具 差异 svn git 系统特点 1.集中式版本控制系统(文档管理很方便) 2.企业内部并行集中开发 3.windows系统上开发推荐使用 4.克隆一个拥有将近一万个提交(commit),五个 ...
- python三级联动
#以字典的形式 保存相关省市数据 menu={ '北京':{ '朝阳':{ '国贸':{ 'CICC':{}, 'HP':{}, '银行':{}, 'CCTV':{} }, '望京':{ '陌陌':{ ...
- C++ getline()的两种用法
getline():用于读入一整行的数据.在C++中,有两种getline函数.第一种定义在头文件<istream>中,是istream类的成员函数:第二种定义在头文件<string ...
- FLASK-SQLALCHEMY如何使用or和and条件进行组合查询
FLASK-SQLALCHEMY如何使用or和and条件进行组合查询 http://www.cherishlau.site/2018/03/29/flask-sqlalchemy-use-or-and ...
- 030 ElasticSearch----全文检索技术05---基础知识详解03-聚合
聚合可以让我们极其方便的实现对数据的统计.分析.例如: 什么品牌的手机最受欢迎? 这些手机的平均价格.最高价格.最低价格? 这些手机每月的销售情况如何? 实现这些统计功能的比数据库的sql要方便的多, ...
- [IOT] - Raspberry Pi 4 Model B 系统初始化,Docker CE + .Net Core 开发环境配置
本教程为在 Docker 中配置 .Net Core,如果想在树莓派 Raspbian 系统中配置 .Net Core,请参考:[IOT] - 在树莓派的 Raspbian 系统中安装 .Net Co ...
- Lua代码编写规范
开发中,大量使用lua,暂时根据当前状况,总结相对而言较好的规范,在多人协作中可以更好的开发.交流. 介绍 该文档旨在为使用lua编写应用程序建立编码指南. 制订编码规范的目的: 统一编码标准,通用 ...
- Java学习:数据结构简介
数据结构 数据结构: 数据结构_栈:先进后出 入口和出口在同一侧 数据结构_队列:先进先出 入口和出口在集合的两侧 数据结构_数组: 查询快:数组的地址是连续的,我们通过数组的首地址可以找到数组,通过 ...
- java -jar参数运行方式设置classpath
转载自:https://www.cnblogs.com/aggavara/archive/2012/11/16/2773246.html 当用java -jar yourJarExe.jar来运行一个 ...