File size: 232 Bytes
ff0eb39 |
1 2 3 4 5 6 7 8 9 10 11 |
import shutil
import requests
def download_file(url, local_filename):
with requests.get(url, stream=True) as r:
with open(local_filename, "wb") as f:
shutil.copyfileobj(r.raw, f)
return local_filename
|