I have a small Python script that essentially downloads a zip file, unzips it, and saves the contents (shapefiles) to a folder on my network. It stopped working not too long ago and I'm not sure why. I was testing each line in the Python Consol, and when it got to the last line shown below (zipresp = urlopen(zipurl)), it gave me a bunch of errors that I don't understand. Can anyone tell me more on the errors?
from urllib.request import urlopen
from zipfile import ZipFile
zipurl = "http://apps.ohiodnr.gov/geodata/Statewide/OGWells_statewide.zip"
# Download the file from the URL