标签:style http io ar os 使用 sp strong 文件
from http://www.iplaypython.com/module/gzip.html
>>> import gzip #导入gzip模块,玩蛇网提示:注意名字为全小写
>>> g = gzip.GzipFile(filename="", mode="wb", compresslevel=9, fileobj=open(‘sitemap.log.gz‘, ‘wb‘))
>>> g.write(open(‘d:\\test\\sitemap.xml‘).read())
>>> g.close()
其中,filename参数是压缩文件内,文件的名字,为空也可以,不修改。fileobj是生成的压缩文件对象,它的路径名称等。最后是把文件写入gzip文件中去,再关闭操作连接。
>>> g = gzip.GzipFile(mode="rb", fileobj=open(‘d:\\test\\sitemap.log.gz‘, ‘rb‘))
>>> open(r"d:\\haha.xml", "wb").write(g.read())
使用的时候注意,函数方法的大小写一点要看仔细,如果gzip文件是这种形式的:*.tar.gz,证明先是由tar命令压缩后,后再由 gzip压缩的,需要先用解压缩tar文件,再用gzip模块解压缩。其实,现在很多网页为了提高浏览器端用户的访问速度,和搜索引擎爬虫抓取的速度,都在使用gzip压缩。
标签:style http io ar os 使用 sp strong 文件
原文地址:http://www.cnblogs.com/tina-ma/p/4076891.html