下载压缩包并解压

Posted 扬志九洲

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下载压缩包并解压相关的知识,希望对你有一定的参考价值。

import urllib.request
import zipfile

class Filedepose():
    def __init__(self,url,filename):
        self.url=url
        self.filename=filename
        self.download()
        self.unzip()

    def download(self):
        urllib.request.urlretrieve(self.url,self.filename)

    def unzip(self):
        zip_file=zipfile.ZipFile(self.filename)
        try:
            zip_file.extractall()
        except Exception as e:
            print("解压失败。")
        finally:
            zip_file.close

以上是关于下载压缩包并解压的主要内容,如果未能解决你的问题,请参考以下文章

Hadoop:读取hdfs上zip压缩包并解压到hdfs的实现代码

Bugku—杂项-隐写解题思路

安装jieba分词库

安装软件的安装包解压后,解压后的文件可以删除吗。会不会影响软件运行。

JavaWeb项目文件夹生成Zip压缩包并下载到本地

maven搭建webapp开发环境