python 解析html 时lxml跟beautifulSoup对比
根据我使用经验lxml比beautifulSoup速度更快,容错和处理能力更强。
lxml示例如下:
def getGooglePlayAppInfo(self):
pageUrl='https://play.google.com/store/apps/details?id=com.taobao.taobao'
pageUrl_openHandle=self.open_url(pageUrl)
if pageUrl_openHandle:
pageUrlHtmlSource=pageUrl_openHandle.read().decode("utf-8")
#print pageUrlHtmlSource
doc=etree.HTML(pageUrlHtmlSource)
hrefs = doc.xpath(u"//a[@class=\"doc-header-link\"]")
for href in hrefs:
print href.text