I would like to save a web page (all content) as a text file. (As if you did right click on webpage -> "Save Page As" -> "Save as text file" and not as html file)
I have tried using the following code:
import urllib2
url=''
page = urllib2.urlopen(url)
page_content = page.read()
file = open('file_text.txt', 'w')
f.write(page_content)
f.close()
My goal is to be able to save a whole text without html code. (for example i would like read "è" instead "é")
Thank you in advance for your help
Aucun commentaire:
Enregistrer un commentaire