DEV Community

Discussion on: Django Person Image Generator

Collapse
 
michaelcurrin profile image
Michael Currin • Edited

Usually the chunk size is much smaller at 1024.

If you're going to use a massive chunk size like that you might as well leave out chunks and use less code.

r = requests.get(url)
with open("wind-turbine.jpg", "wb") as f:
    f.write(r.content)
Enter fullscreen mode Exit fullscreen mode

jdhao.github.io/2020/06/17/downloa...

Using with block instead of open and close is also safer and more common.

Would also love to see 4 space indention instead of 2 for Python code, to match the recommended style.

Collapse
 
buckldav profile image
David

Fixed! Thanks. I didn't proofread much before upload :)