python中zip和unzip数据的方法


Posted in Python onMay 27, 2015

本文实例讲述了python zip和unzip数据的方法。分享给大家供大家参考。具体实现方法如下:

# zipping and unzipping a string using the zlib module
# a very large string could be zipped and saved to a file speeding up file writing time 
# and later reloaded and unzipped by another program speeding up reading of the file
# tested with Python24   vegaseat   15aug2005
import zlib
str1 = \
"""Dallas Cowboys football practice at Valley Ranch was delayed on Wednesday 
for nearly two hours. One of the players, while on his way to the locker
room happened to look down and notice a suspicious looking, unknown white
powdery substance on the practice field.
The coaching staff immediately suspended practice while the FBI was
called in to investigate. After a complete field analysis, the FBI
determined that the white substance unknown to the players was the goal
line.
Practice was resumed when FBI Special Agents decided that the team would not
be likely to encounter the substance again.
"""
print '-'*70 # 70 dashes for the fun of it
print str1
print '-'*70
crc_check1 = zlib.crc32(str1)
print "crc before zip=", crc_check1
print "Length of original str1 =", len(str1)
# zip compress the string
zstr1 = zlib.compress(str1)
print "Length of zipped str1 =", len(zstr1)
filename = 'Dallas.zap'
# write the zipped string to a file
fout = open(filename, 'w')
try:
  print >> fout, zstr1
except IOError:
  print "Failed to open file..."
else:
  print "done writing", filename
fout.close()
# read the zip file back
fin = open(filename, 'r')
try:
  zstr2 = fin.read()
except IOError:
  print "Failed to open file..."
else:
  print "done reading", filename
fin.close()
# unzip the zipped string from the file
str2 = zlib.decompress(zstr2)
print '-'*70
print str2
print '-'*70
crc_check2 = zlib.crc32(str2)
print "crc after unzip =", crc_check2, "(check sums should match)"

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
使用Python编写类UNIX系统的命令行工具的教程
Apr 15 Python
深入解析Python编程中JSON模块的使用
Oct 15 Python
Python使用Redis实现作业调度系统(超简单)
Mar 22 Python
Python图像处理之识别图像中的文字(实例讲解)
May 10 Python
Python基础之函数的定义与使用示例
Mar 23 Python
Django分页功能的实现代码详解
Jul 29 Python
Python3 main函数使用sys.argv传入多个参数的实现
Dec 25 Python
Python表达式的优先级详解
Feb 18 Python
简述python&pytorch 随机种子的实现
Oct 07 Python
python 自定义异常和主动抛出异常(raise)的操作
Dec 11 Python
python实现模拟器爬取抖音评论数据的示例代码
Jan 06 Python
python读取mat文件生成h5文件的实现
Jul 15 Python
Python pickle模块用法实例分析
May 27 #Python
Python创建模块及模块导入的方法
May 27 #Python
Python类的用法实例浅析
May 27 #Python
Python socket编程实例详解
May 27 #Python
Python简单删除目录下文件以及文件夹的方法
May 27 #Python
python解析xml文件实例分析
May 27 #Python
Python定时执行之Timer用法示例
May 27 #Python
You might like
在windows平台上构建自己的PHP实现方法(仅适用于php5.2)
2013/07/05 PHP
php实现的click captcha点击验证码类实例
2014/09/23 PHP
php基于mcrypt_encrypt和mcrypt_decrypt实现字符串加密解密的方法
2016/07/12 PHP
基于PHP的登录和注册的功能的实现
2020/08/06 PHP
基本jquery的控制tabs打开的数量的代码
2010/10/17 Javascript
javascript页面动态显示时间变化示例代码
2013/12/18 Javascript
JavaScript返回0-1之间随机数的方法
2015/04/06 Javascript
jQuery验证插件validate使用详解
2016/05/11 Javascript
使用Web Uploader实现多文件上传
2016/06/08 Javascript
基于vue+ bootstrap实现图片上传图片展示功能
2017/05/17 Javascript
jQuery实现切换隐藏与显示同时切换图标功能
2017/10/29 jQuery
JS实现的图片选择顺序切换和循环切换功能示例【测试可用】
2018/12/28 Javascript
Angular8 Http拦截器简单使用教程
2019/08/20 Javascript
压缩Vue.js打包后的体积方法总结(Vue.js打包后体积过大问题)
2020/02/03 Javascript
浅析JavaScript预编译和暗示全局变量
2020/09/03 Javascript
[00:44]TI7不朽珍藏III——军团指挥官不朽展示
2017/07/15 DOTA
Python处理json字符串转化为字典的简单实现
2016/07/07 Python
Python编程二分法实现冒泡算法+快速排序代码示例
2018/01/15 Python
Django框架使用内置方法实现登录功能详解
2019/06/12 Python
PyCharm使用Docker镜像搭建Python开发环境
2019/12/26 Python
python 实现将Numpy数组保存为图像
2020/01/09 Python
Python写捕鱼达人的游戏实现
2020/03/31 Python
Python通过队列来实现进程间通信的示例
2020/10/14 Python
CSS3绘制圆角矩形的简单示例
2015/09/28 HTML / CSS
CSS3 transition 实现通知消息轮播条
2020/10/14 HTML / CSS
Oroton中国官网:澳洲知名奢侈配饰品牌
2017/03/26 全球购物
护理实习自我鉴定
2013/12/14 职场文书
一名老师的自我评价
2014/02/07 职场文书
现金出纳岗位职责
2014/03/15 职场文书
宣传口号大全
2014/06/16 职场文书
2016年五一促销广告语
2016/01/28 职场文书
2016年6.5世界环境日宣传活动总结
2016/04/01 职场文书
windows安装python超详细图文教程
2021/05/21 Python
python开发飞机大战游戏
2021/07/15 Python
【海涛解说】暗牧也疯狂,牛蛙成配角
2022/04/01 DOTA
Three.js实现雪糕地球的使用示例详解
2022/07/07 Javascript