def main():
openurl = urllib2.urlopen("http://www.pythonforbeginners.com")
content = openurl.read()
code = openurl.code
soup = BeautifulSoup(content) #I think I need to change something here!!
print soup
if soup.body.find(text=re.compile('python', re.IGNORECASE)):
print "i think it's working"
openurl.close()
如何修改此代码以允许我将lxml解析器与Beautiful Soup结合使用以在网站正文中查找关键字? 请注意,上面的代码有效,但它没有使用我想要的解析器。
答案 0 :(得分:0)
使用lxml作为解析器供应' lxml'作为第二个论点。
soup = BeautifulSoup(content, 'lxml')