如何将美丽的汤与lxml Parser结合使用以在网站中找到关键字?

时间:2014-04-08 21:17:05

标签: python html-parsing beautifulsoup lxml

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结合使用以在网站正文中查找关键字? 请注意,上面的代码有效,但它没有使用我想要的解析器。

1 个答案:

答案 0 :(得分:0)

使用lxml作为解析器供应' lxml'作为第二个论点。

soup = BeautifulSoup(content, 'lxml')