是否有一个开关可以忽略 LXML 中未定义的命名空间前缀?

发布于 2024-09-15 01:37:23 字数 857 浏览 6 评论 0原文

我正在解析不兼容的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拔了角的鹿 2024-09-22 01:37:23

xmlns:sphinx="bogus" 添加到根元素。

Add xmlns:sphinx="bogus" to the root element.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文