我们可以在BeautifulSoup中使用xpath吗?我正在使用BeautifulSoup来抓取一个网址,我有以下代码import urllibimport urllib2from BeautifulSoup import BeautifulSoupurl = "http://www.example.com/servlet/av/ResultTemplate=AVResult.html"req = urllib2.Request(url)response = urllib2.urlopen(req)the_page = response.read()soup = BeautifulSoup(the_page)soup.findAll('td',attrs={'class':'empformbody'})现在在上面的代码中我们可以findAll用来获取与它们相关的标签和信息,但我想使用xpath。是否可以将xpath与BeautifulSoup一起使用?如果可能的话,有人可以给我一个示例代码,以便更有帮助吗?
添加回答
举报
0/150
提交
取消