Python3 和 xml/xslt 库
在 python 2.6 中,我这样做是为了实现 xsl 转换
import libxml2
import libxslt
...
styledoc = libxml2.parseFile(my_xslt_file)
style = libxslt.parseStylesheetDoc(styledoc)
doc = libxml2.parseDoc(siri_response_data)
result = style.applyStylesheet(doc, None)
...
Python 3.2 中的等效项是什么?
我问是因为似乎lnxml和libxslt在python3.2中不可用。我听说过 lxml - 这是 libxml2 + libxslt 的直接等效项还是它具有不同的调用模式(需要重写代码)?
In python 2.6 I did this to achieve an xsl tranform
import libxml2
import libxslt
...
styledoc = libxml2.parseFile(my_xslt_file)
style = libxslt.parseStylesheetDoc(styledoc)
doc = libxml2.parseDoc(siri_response_data)
result = style.applyStylesheet(doc, None)
...
What would be the equivalent in Python 3.2?
I ask because it seems that lnxml and libxslt are not available in python3.2. I have heard of lxml - is this a direct equivalent of libxml2 + libxslt or does it have different calling patterns (needing rewriting of the code)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 lxml 的代码的模拟:
lxml
列出了对 Python 的支持3.2lxml
使用libxml2/libxslt
下hood 所以结果应该是相同的。它使用 Cython 生成可在同一源的 Python 2.x 和 3.x 上运行的 C 扩展,示例。The analog of your code using lxml:
lxml
lists support for Python 3.2lxml
useslibxml2/libxslt
under the hood so results should be the same. It uses Cython to generate C extensions that work both on Python 2.x and 3.x from the same source, example.