有没有办法检查与lxml库相同的节点?例如,在php DOMDocument中有isSameNode
:
a->isSameNode(b) //return boolean
我需要它做这样的事情:
def find_special_node(special_node, xml):
#iterating nodes in xml
if node == special_node:
return node
答案 0 :(得分:1)
您可以使用xpath查找项目,使用“special_node”属性作为find()中的必需属性(和值)。我假设如果节点的所有属性相同(例如类型,值,大小等),则确定两个节点相同。 只是一个猜测
我的实施:
import lxml.etree as etree
def isSameNode(a,b,tagsame=True):
for attrib in a.attrib:
if a.get(attrib) != b.get(attrib):
print a.get(attrib),b.get(attrib)
return False
else:
return False
if a.text != b.text:
return False
if tagsame==True:
if a.tag != b.tag:
return False
if a.prefix != b.prefix:
return False
if a.tail != b.tail:
return False
if a.values()!=b.values(): #may be redundant to the attrib matching
return False
if a.keys() != b.keys(): #may also be redundant to the attrib matching
return False
return True
def find_alike(xml,special_element,tagsame=True):
tree = etree.fromstring(xml)
for node in tree.iter():
if isSameNode(node,special_element,tagsame):
return node
return None
答案 1 :(得分:0)
不确定是否要查看NodeA is NodeB
或NodeA == NodeB
您可以尝试:
for node in X.iter():
if node == special_node: # maybe "node is special_node" ?
return node
无论如何,既然你已经有special_node
,为什么要搜索它?