使用哪个验证 python XML api?
我对 xml 不太熟悉,所以我不知道应该在 python 中使用哪个 api。 到目前为止我一直在使用xmlproc,但听说它已经不再开发了。
我基本上只有一个要求:我想根据我可以在程序中选择的 dtd 进行验证。 我无法推动文档类型的事情。
性能并不重要,所以我想使用现有的最简单的 api。
用什么? 大家有简单的例子吗?
I new to xml stuff, so I have no idea which api I should use in python.
Till now I used xmlproc, but I heard it is not developed any more.
I have basically only one requirement: I want to validate against a dtd that I can choose in my program. I can't thrust the doctype thing.
Performance does not really matter, so I would like to use the most easy api that exists.
What to use? Have you guys a simple example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于我当前的项目,我使用 lxml,它相当容易使用。 此页面描述了使用 DTD 进行验证
For my current project, I'm using lxml, which is fairly easy to use. Validation with DTD is described on this page