“Python Download html como texto” Respostas de código

Python Download html como texto

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)
Envious Elk

Python Download html como texto

import urllib.request    
urllib.request.urlretrieve("http://www.example.com/test.html", "test.txt")
Envious Elk

Respostas semelhantes a “Python Download html como texto”

Perguntas semelhantes a “Python Download html como texto”

Mais respostas relacionadas para “Python Download html como texto” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código