Python3 和 xml/xslt 库

发布于 2024-12-28 08:52:45 字数 440 浏览 0 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

七堇年 2025-01-04 08:52:45

使用 lxml 的代码的模拟:

from lxml import etree

# ...    
styledoc = etree.parse(my_xslt_file)
transform = etree.XSLT(styledoc)
doc = etree.fromstring(siri_response_data)
result = transform(doc)
# ...

lxml 列出了对 Python 的支持3.2

lxml使用libxml2/libxslt下hood 所以结果应该是相同的。它使用 Cython 生成可在同一源的 Python 2.x 和 3.x 上运行的 C 扩展,示例

The analog of your code using lxml:

from lxml import etree

# ...    
styledoc = etree.parse(my_xslt_file)
transform = etree.XSLT(styledoc)
doc = etree.fromstring(siri_response_data)
result = transform(doc)
# ...

lxml lists support for Python 3.2

lxml uses libxml2/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.

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