我想使用 Python 将网页的文本内容保存到 Excel 文件中。作为一个新手,到目前为止我可以锻炼,但我不确定它是否正确。
from bs4 import BeautifulSoup
from urllib2 import urlopen
html = urlopen("http://www.chicagoreader.com").read()
soup = BeautifulSoup(html, "lxml")
它看起来好吗?自动将文本内容保存到 Excel 文件中的下一步是什么?我已经安装了 xlutils 但不知道如何使用它。
有人可以在这里帮助我吗?谢谢。