0

我正在尝试使用命名空间从 xml 文件中选择一个 xml 节点。我已经有一个选择工作,但不能让它为第二个工作。

这是简化的 xml(在 python 代码中存储为 BookMetaData):

<?xml version='1.0' encoding='utf-8'?>
<package xmlns="http://www.idpf.org/2007/opf" unique-identifier="calibre_id">
  <metadata xmlns:opf="http://www.idpf.org/2007/opf" 
  xmlns:dc="http://purl.org/dc/elements/1.1/" 
  xmlns:calibre="http://calibre.kovidgoyal.net/2009/metadata">
    <dc:title>De blanke masai V2</dc:title>
    <meta name="calibre:user_metadata:#origfieldvalue" content="{&quot;is_category&quot;: true, &quot;#extra#&quot;: null}"/>
  </metadata>
</package>

这是我到目前为止编写的python代码:

#!/usr/bin/python
# All imports
import lxml.html
import lxml.etree

# namespaces
theNamespaces = {'opf' : "http://www.idpf.org/2007/opf", 
'dc' : "http://purl.org/dc/elements/1.1/", 
'calibre' : "http://calibre.kovidgoyal.net/2009/metadata",
'unique-identifier' : "calibre_id" }

# This part is working perfectly
theXMLdoc = lxml.etree.fromstring(BookMetaData)
theElement2 = theXMLdoc.xpath("//dc:title", namespaces = theNamespaces)[0]
print "lxml.html Source Value:"
print( theElement2.text)
print ""


# This part only returns an emtpy list
theOrigValueElement = theXMLdoc.xpath("//meta[@name='calibre:user_metadata:#origfieldvalue']", namespaces = theNamespaces)
print "Original value of OrigFieldValue:"
print( theOrigValueElement)
print ""

我试过的东西不起作用:
how-to-use-xpath-from-lxml-on-null-namespaced-nodes namspace“ http://www.idpf.org/2007/opf ”被使用了两次,一次在“包”中不带前缀,一次在“元数据”中带前缀。因此,向命名空间添加另一个前缀将无济于事。

有人可以帮我弄这个吗?

4

1 回答 1

1

如果您只是将 opf 前缀添加到您的 xpath 语句

//opf:meta[@name='calibre:user_metadata:#origfieldvalue']

这似乎可以解决问题

于 2012-07-19T16:58:16.020 回答