如何下载文件到本地目录

How do I download file to local directory

如何将 python 中的文件下载到本地目录 C:。我看到很多示例,但大多数示例似乎已有 5 年以上的历史,并且信息已过时。谢谢

 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()

错误:函数没有属性url打开

AttributeError: 'function' object has no attribute 'urlopen'

有人可以向我解释一下我如何从一个对我不起作用的网站下载一个简单的 zip。干杯。

import requests

url = "http://download.thinkbroadband.com/10MB.zip"
src = r"C:\downloaded_zip.zip"


respo = requests.get(url, stream=True, verify=False)
if respo.status_code == requests.codes.ok:
    out = open(src, "wb")
    for block in respo.iter_content(1024):
        if not block:
            break

        out.write(block)

    out.close()
else:
    print("Not able to download ZIP url {url}: {status}, {content}".format(url=url, status=respo.status_code, content=respo.content))