Created on Tue Mar 20 09:23:10 2018
"""
import requests
import zipfile
url = 'https://www.xxxxxxx.zip'
username = 'xxxx'
password = 'xxxx'
file_name = 'xxxxxx.zip'
# Download wellIndex.zip file
print("downloading with requests")
r = requests.get(url, auth=(username, password))
with open(file_name, "wb") as code:
code.write(r.content)
# Unzip files
with zipfile.ZipFile(file_name,"r") as zip_ref:
zip_ref.extractall()
No comments:
Post a Comment