Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wasi0013
Created October 4, 2019 13:35
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wasi0013/ab73f314f8070951b92f6670f68b2d80 to your computer and use it in GitHub Desktop.
Save wasi0013/ab73f314f8070951b92f6670f68b2d80 to your computer and use it in GitHub Desktop.
how to download large file using python, requests without exhausting device ram.
import requests
chunk_size = 4096
filename = "logo.png"
document_url = "https://wasi0013.files.wordpress.com/2018/11/my_website_logo_half_circle_green-e1546027650125.png"
with requests.get(document_url, stream=True) as r:
with open(filename, 'wb') as f:
for chunk in r.iter_content(chunk_size):
if chunk:
f.write(chunk)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment