Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to use python to download files from the interent

import requests


url = 'https://www.facebook.com/favicon.ico'
r = requests.get(url, allow_redirects=True)

open('facebook.ico', 'wb').write(r.content)

#####################output################
the file facebook.ico was created in the python folder
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #python #download #files #interent
ADD COMMENT
Topic
Name
2+6 =