What is a good XML stream parser for Python?(什么是用于 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 流解析器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:什么是用于 Python 的好的 XML 流解析器?
基础教程推荐
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 包装空间模型 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
