我正在使用python 3.3.3并使用easy_install工具名称setuptools-7.0。从这个工具我下载“feedparser”,但我不明白为什么会发生这种情况。当我在cmd提示符下写入:导入解析器时,它给了我这个错误:
>>> import feedparser
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<frozen importlib._bootstrap>", line 1565, in _find_and_load
File "<frozen importlib._bootstrap>", line 1532, in _find_and_load_unlocked
File "C:\Python33\lib\site-packages\feedparser-5.1.3-py3.3.egg\feedparser.py",
line 283, in <module>
File "C:\Python33\lib\BeautifulSoup.py", line 473
raise AttributeError, "'%s' object has no attribute '%s'" % (self.__class__.
__name__, attr)
^
SyntaxError: invalid syntax
现在这是什么,我从谷歌搜索但是没有找到任何令人满意的解决方案。任何的想法?