是否有一个开关可以忽略 LXML 中未定义的命名空间前缀?
我正在解析不兼容的 XML 文件(Sphinx 的 xmlpipe2 格式),并且希望 LXML 解析器忽略事实上,存在未解析的命名空间前缀。
Sphinx XML 的示例:
<sphinx:schema>
<sphinx:field name="subject"/>
<sphinx:field name="content"/>
<sphinx:attr name="published" type="timestamp"/>
<sphinx:attr name="author_id" type="int" bits="16" default="1"/>
</sphinx:schema>
我知道传递一个解析器关键字选项来尝试恢复损坏的 XML,例如
parser = etree.XMLParser(recover=True)
tree = etree.parse('sphinxTest.xml', parser)
,但上面的内容不会忽略前缀,而是将其删除。
我可以创建一个添加删除的前缀的目标,例如
parser = etree.XMLParser(target = AddPrefix())
,其中 AddPrefix()
是一个将前缀添加到每个属性标记的类。 有没有更简单的方法来做到这一点? 最终我想以编程方式干净地编写Sphinx的xmlpipe2格式。
I'm parsing a non-compliant XML file (Sphinx's xmlpipe2 format) and would like LXML parser to ignore the fact that there are unresolved namespace prefixes.
An example of the Sphinx XML:
<sphinx:schema>
<sphinx:field name="subject"/>
<sphinx:field name="content"/>
<sphinx:attr name="published" type="timestamp"/>
<sphinx:attr name="author_id" type="int" bits="16" default="1"/>
</sphinx:schema>
I'm aware of passing a parser keyword option to try and recover broken XML, e.g.
parser = etree.XMLParser(recover=True)
tree = etree.parse('sphinxTest.xml', parser)
but the above does not ignore the prefix, it removes it.
I could create a target which adds in the removed prefix e.g.
parser = etree.XMLParser(target = AddPrefix())
where AddPrefix()
is a class which adds in the prefix to every attribute tag.
Is there a simpler way to do this?
Eventually i want to programmatically write Sphinx's xmlpipe2 format cleanly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
xmlns:sphinx="bogus"
添加到根元素。Add
xmlns:sphinx="bogus"
to the root element.