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

时间:2011-11-26 16:08:12

标签: python api windows-xp delicious-api

我在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/上没有,文档文件夹为空。

1 个答案:

答案 0 :(得分:1)

ElementTree在标准Python library until 2.5中不可用。但是,它可用作2.4的单独安装。

看起来这些诽谤的作者甚至已经解释了这一点。来自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