有没有人知道如何将lxml.objectify
与recover=True
一起使用?
我有xml,其中没有引用属性 - > name = value而不是name =' value'。
下面是一些示例代码...我无法控制XML格式,因此我无法返回并将其更改。 etree
解析确实有效
错误是
File "<string>", line unknown
XMLSyntaxError: AttValue: " or ' expected, line 4, column 21
lxml.objectify
代码 - 失败
xmlSample="""<dict>
<maptable>
<hdterm displevel=1 autlookup entrytype=1>Source term</hdterm>
</maptable>
</dict>"""
如果我没有得到答案,我必须重新
import io
#p = objectify.XMLParser(recover=True)
root = objectify.fromstring(xmlSample)
# returns attributes in element node as dict
attrib = root.getattrib()
# how to extract element data
tbl = root.mytable
print("root.mytable type=%s" % type(tbl))
lxml.etree
- 工作!
from lxml import etree, objectify
import io
xmlIO = io.StringIO(xmlSample)
p = etree.XMLParser(recover=True)
tree = etree.parse(xmlIO, parser=p)
root = tree.getroot()
print(root.tag)
输出:
myxml
答案 0 :(得分:0)
更新:
原则上,您可以将recover=True
选项传递给objectify.makeparser()
,以创建一个尝试恢复格式错误的XML文档的解析器。然后,您可以将创建的解析器传递给objectify.fromstring()
,如下所示:
from lxml import etree, objectify
xmlSample="""<dict>
<maptable>
<hdterm displevel=1 autlookup entrytype=1>Source term</hdterm>
</maptable>
</dict>"""
parser = objectify.makeparser(recover=True)
root = objectify.fromstring(xmlSample, parser)
print(type(root.maptable.hdterm))
# output :
# <type 'lxml.objectify.StringElement'>
INITIAL ANSWER:
你可以将两者结合起来; etree
使用recover=True
来修复损坏的XML输入,然后objectify
来解析格式正确的中间XML:
from lxml import etree, objectify
xmlSample="""your_xml_here"""
p = etree.XMLParser(recover=True)
well_formed_xml = etree.fromstring(xmlSample, p)
root = objectify.fromstring(etree.tostring(well_formed_xml))