📅  最后修改于: 2022-03-11 14:45:14.189000             🧑  作者: Mango
http = urllib3.PoolManager()
with http.request('GET', url, preload_content=False) as r, open(path, 'wb') as out_file:
shutil.copyfileobj(r, out_file)