Answers for "python download html file from url"

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

python download html as string

# open-webpage.py

import urllib.request, urllib.error, urllib.parse

url = 'http://www.oldbaileyonline.org/browse.jsp?id=t17800628-33&div=t17800628-33'

response = urllib.request.urlopen(url)
webContent = response.read()

print(webContent[0:300])
Posted by: Guest on December-03-2020

Code answers related to "python download html file from url"

Python Answers by Framework

Browse Popular Code Answers by Language