下载压缩包并解压
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的实现代码