AlchemyAPI在编译时出错

时间:2011-11-30 19:04:26

标签: python alchemyapi pyxml

我正在尝试AlchemyAPI_Python-0.6 - PyXml模块。我试图运行它的关键字提取器功能,但在尝试编译时遇到以下错误。我使用了示例中给出的keywords.py文件。我复制了python目录下的所有文件(AlchemyAPI.py,keywords.py,api_key.txt)。

Traceback (most recent call last):
  File "C:\Python26\keywords.py", line 4, in <module>
    import AlchemyAPI
  File "C:\Python26\AlchemyAPI.py", line 6, in <module>
    from xml import xpath
  File "C:\Python26\lib\site-packages\_xmlplus\xpath\__init__.py", line 112, in <module>
    from pyxpath import ExprParserFactory
  File "C:\Python26\lib\site-packages\_xmlplus\xpath\pyxpath.py", line 59, in <module>
    from xml.xpath.ParsedAbbreviatedRelativeLocationPath import ParsedAbbreviatedRelativeLocationPath
  File "C:\Python26\lib\site-packages\_xmlplus\xpath\ParsedAbbreviatedRelativeLocationPath.py", line 31
    as = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self')
     ^
SyntaxError: invalid syntax

有人可以帮我解决这个问题吗?

提前谢谢!

2 个答案:

答案 0 :(得分:1)

我为AlchemyAPI工作。

我们刚刚修改了我们的Python SDK,删除了对PyXML的依赖(如果您使用的是Python 2.4及更早版本,则需要lxml)。

请在此处找到新的SDK:http://www.alchemyapi.com/tools/

它支持所有版本的Python 2和Python 3。

答案 1 :(得分:0)

PyXML是为Python 2.4编写的,as关键字是在Python 2.5和2.6中逐渐引入的。在上面的堆栈跟踪的最后一行中,as关键字用作变量名,与Python 2.6的语法冲突。

您可以通过编辑两个文件来解决此问题,将as变量的名称更改为其他内容(例如axis):

  • C:\Python26\lib\site-packages\_xmlplus\xpath\ParsedAbbreviatedRelativeLocationPath.py,第31和32行:

    axis = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self')
    self._middle = ParsedStep.ParsedStep(axis, nt, ppl)
    
  • C:\Python26\lib\site-packages\_xmlplus\xpath\ParsedAbbreviatedAbsoluteLocationPath.py,第27和28行:

    axis = ParsedAxisSpecifier.ParsedAxisSpecifier('descendant-or-self')
    self._step = ParsedStep.ParsedStep(axis, nt, ppl)