python如何保存文件为zip格式_使用Python保存下载的ZIP文件

我正在编写一个脚本,它将自动更新已安装的Calibre版本.目前我已经下载了最新的便携版本.我似乎无法保存zipfile.目前我的代码是:

import urllib2

import re

import zipfile

#tell the user what is happening

print("Calibre is Updating")

#download the page

url = urllib2.urlopen ( "http://sourceforge.net/projects/calibre/files" ).read()

#determin current version

result = re.search('title="/[0-9.]*/([a-zA-Z\-]*-[0-9\.]*)', url).groups()[0][:-1]

#download file

download = "http://status.calibre-ebook.com/dist/portable/" + result

urllib2.urlopen( download )

#save

output = open('install.zip', 'w')

output.write(zipfile.ZipFile("install.zip", ""))

output.close()

你不需要为此使用zipfile.ZipFile(以及你使用它的方式,以及urllib2.urlopen也有问题).相反,您需要将urlopen结果保存在变量中,然后读取它并将该输出写入.zip文件.试试这段代码:

#download file

download = "http://status.calibre-ebook.com/dist/portable/" + result

request = urllib2.urlopen( download )

#save

output = open("install.zip", "w")

output.write(request.read())

output.close()

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值