加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

使用Python保存下载的ZIP文件

发布时间:2020-12-20 12:19:22 所属栏目:Python 来源:网络整理
导读:我正在编写一个脚本,它将自动更新已安装的Calibre版本.目前我已经下载了最新的便携版本.我似乎无法保存zipfile.目前我的代码是: import urllib2import reimport zipfile#tell the user what is happeningprint("Calibre is Updating")#download the pageurl
我正在编写一个脚本,它将自动更新已安装的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()

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读