“Python Descargar html como texto” Código de respuesta

Python Descargar 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 Descargar html como texto

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

Respuestas similares a “Python Descargar html como texto”

Preguntas similares a “Python Descargar html como texto”

Más respuestas relacionadas con “Python Descargar html como texto” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código