问题
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 "é")
回答1:
Have a look at html2text as mentioned elsewhere
import urllib2
import html2text
url=''
page = urllib2.urlopen(url)
html_content = page.read()
rendered_content = html2text.html2text(html_content)
file = open('file_text.txt', 'w')
file.write(rendered_content)
file.close()
来源:https://stackoverflow.com/questions/35166169/how-to-save-web-page-as-text-file-python