如何安装 pydelicious Python del.icio.us API?

发布于 2024-12-18 12:29:16 字数 327 浏览 2 评论 0原文

我在 Windows XP 上运行 Python 2.4 并安装了 pydelicious API 版本 0.6。运行安装脚本后,我收到 ImportError: No module named etree.ElementTree

如何安装?

哪个版本的 API 可与 Python 2.4 配合使用?

文档在哪里?下载网站上没有 http://code.google.com/p/pydelicious/ 并且文档文件夹是空的。

I am running Python 2.4 on Windows XP and installed pydelicious API version 0.6. Upon running the install script I get ImportError: No module named etree.ElementTree.

How to install it?

Which version of the API works with Python 2.4?

Where is the documentation? There is none on the download site http://code.google.com/p/pydelicious/ and the documentation folder is empty.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

草莓味的萝莉 2024-12-25 12:29:16

ElementTree 在标准 Python 库 2.5 之前才可用。不过,它可以单独安装 2.4

看起来 pydelicious 的作者甚至已经解释了这一点。来自他们的来源

try:
    from elementtree.ElementTree import parse as parse_xml
except ImportError:
    # Python 2.5 and higher
    from xml.etree.ElementTree import parse as parse_xml

ElementTree was not available in the standard Python library until 2.5. It is available, though, as a separate install for 2.4.

It looks like the pydelicious authors have even accounted for this. From their sources:

try:
    from elementtree.ElementTree import parse as parse_xml
except ImportError:
    # Python 2.5 and higher
    from xml.etree.ElementTree import parse as parse_xml
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文