Last active
June 5, 2021 12:56
-
-
Save biranchi2018/7127ab082fca7c42cc59b1a693fc2571 to your computer and use it in GitHub Desktop.
Download a file using Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
url = 'https://www.facebook.com/favicon.ico' | |
r = requests.get(url, allow_redirects=True) | |
with open('facebook.ico', 'wb') as f: | |
f.write(r.content) | |
#=================================================== | |
import urllib | |
urllib.request.urlretrieve("http://randomsite.com/file.gz", "file.gz") | |
#=================================================== | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment