本文介绍了什么是用于 Python 的好的 XML 流解析器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有任何适用于 Python 的 XML 解析器可以解析文件流?我的 XML 文件太大而无法放入内存,因此我需要解析流.
Are there any XML parsers for Python that can parse file streams? My XML files are too big to fit in memory, so I need to parse the stream.
理想情况下,我不需要有 root 访问权限来安装东西,所以 lxml
不是一个很好的选择.
Ideally I wouldn't have to have root access to install things, so lxml
is not a very good option.
我一直在使用 xml.etree.ElementTree
但我确信它坏了.
推荐答案
使用 xml.etree.cElementTree
.它比 xml.etree.ElementTree
快得多.它们都没有损坏.您的文件已损坏(请参阅我对您其他问题的回答).
Use xml.etree.cElementTree
. It's much faster than xml.etree.ElementTree
. Neither of them are broken. Your files are broken (see my answer to your other question).
这篇关于什么是用于 Python 的好的 XML 流解析器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!