How do I download a file in python to local directory C:\1\1. I see lot of examples but most seem to be 5+ years old with out of date information. Thanks.
import urllib.request
url = "http://download.thinkbroadband.com/10MB.zip"
file_name = url.split('/')[-1]
u = urllib.request.urlretrieve.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print("Downloading: %s Bytes: %s" % (file_name, file_size))
file_size_dl = 0
block_sz = 8192
while True:
buffer = u.read(block_sz)
if not buffer:
break
file_size_dl += len(buffer)
f.write(buffer)
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
status = status + chr(8)*(len(status)+1)
print(status,)
f.close()
Error: function has no attribute url open
AttributeError: 'function' object has no attribute 'urlopen'
Can someone explain to me how i download a simple zip from a website this does not work for me. Cheers.