我有这个 HTML:
<a href="some content">Click here</a>
如何在 Python 2.7 上提取some content
和click me
使用?xpath
到目前为止,我有以下内容(仅从 href 结果中提取“一些内容”):
import lxml.etree as LE
import requests
r = requests.get("http://localhost")
html = r.text
root = LH.fromstring(html)
print root.xpath('//a/@href')