我正在使用带xpath的lxml来解析epub3,xhtml内容文件。
我想选择属性为li
的所有epub:type="footnote"
个节点
例如
<li epub:type="footnote" id="fn14"> ... </li>
我找不到合适的xpath表达式。
表达式
//*[self::li][@id]
确实选择了具有属性id的所有li
个节点,但是当我尝试
//*[self::li][@epub:type]
我收到错误
lxml.etree.XPathEvalError: Undefined namespace prefix
XML
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="stylesheet.css" />
</head>
<body>
<section class="footnotes">
<hr />
<ol>
<li id="fn1" epub:type="footnote">
<p>See foo</p>
</li>
</ol>
</section>
</body>
</html>
有关如何编写正确表达式的任何建议吗?
答案 0 :(得分:5)
您是否已将名称空间前缀epub
声明为lxml?
>>> tree.getroot().xpath(
... "//li[@epub:type = 'footnote']",
... namespaces={'epub':'http://www.idpf.org/2007/ops'}
... )
XHTML命名空间也让你沮丧。尝试:
>>> tree.getroot().xpath(
... "//xhtml:li[@epub:type = 'footnote']",
... namespaces={'epub':'http://www.idpf.org/2007/ops', 'xhtml': 'http://www.w3.org/1999/xhtml'}
... )