Skip to content

Instantly share code, notes, and snippets.

@Allwin12
Created June 20, 2020 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Allwin12/5f21a2c51410df5a85d35a313412aa03 to your computer and use it in GitHub Desktop.
Save Allwin12/5f21a2c51410df5a85d35a313412aa03 to your computer and use it in GitHub Desktop.
import requests
url = 'https://miro.medium.com/max/1400/1*X40IVMQsIgSjWsGAxJG7Zw.jpeg'
response = requests.get(url)
with open('url.png', 'wb') as f:
f.write(response.content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment