Answers for "download multiple url files in a folder python"

4

python download file from url

import requests


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

open('facebook.ico', 'wb').write(r.content)
Posted by: Guest on January-17-2021
0

save a text file from web python

import urllib2response = urllib2.urlopen('https://wordpress.org/plugins/about/readme.txt')data = response.read()print(data)
Posted by: Guest on February-09-2021

Code answers related to "download multiple url files in a folder python"

Python Answers by Framework

Browse Popular Code Answers by Language