how to download tiny files using python requests
import requests | |
filename = "logo.png" | |
document_url = "https://wasi0013.files.wordpress.com/2018/11/my_website_logo_half_circle_green-e1546027650125.png" | |
with open(filename, 'wb') as f: | |
f.write(requests.get(document_url).content) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment