Getting Certain Attribute Value Using XPath
From the following HTML snippet: &l
Solution 1:
Like this:
data = """<link rel="index" href="/index.php" />
<link rel="contents" href="/getdata.php" />
<link rel="copyright" href="/blabla.php" />
<link rel="shortcut icon" href="/img/all/favicon.ico" />
"""
from lxml import etree
d = etree.HTML(data)
d.xpath('//link[@rel="shortcut icon"]/@href')
['/img/all/favicon.ico']
Post a Comment for "Getting Certain Attribute Value Using XPath"