Black Swan
0
Q:

python download html as text

import requests

url = "https://stackoverflow.com/questions/24297257/save-html-of-some-website-in-a-txt-file-with-python"

r = requests.get(url)
with open('file.txt', 'w') as file:
    file.write(r.text)
0
import urllib.request    
urllib.request.urlretrieve("http://www.example.com/test.html", "test.txt")
0

New to Communities?

Join the community