作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的 python 脚本,例如:
#!/usr/bin/python
import requests
from lxml import html
response = requests.get('http://site.ir/')
out=response.content
tree = html.fromstring(open(out).read())
print [e.text_content() for e in tree.xpath('//div[class="group"]/div[class="groupinfo"]/a/text()')]
我使用 xpath 来获取标签 a
的值,如下图所示... 但输出样本不是我所期望的。
更新我也有以下错误:
Traceback (most recent call last):
File "p.py", line 7, in <module>
tree = html.fromstring(open(out).read())
IOError: [Errno 36] File name too long: '\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ....
最佳答案
您需要将 @
放在属性名称的开头以在 XPath 中寻址属性:
//div[@class="group"]/div[@class="groupinfo"]/a/text()
关于python - python中通过xpath提取A标签的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26038039/
我是一名优秀的程序员,十分优秀!