昨天我安装了feedparser(在OSX 10.5上),并且工作正常,但现在停止工作了。
这是脚本(从feedparser文档复制)
import feedparser
d = feedparser.parse('http://feedparser.org/docs/examples/atom10.xml')
d['feed']['title']
u'Sample Feed'
它告诉我:
Traceback (most recent call last):
File "example.py", line 3, in <module>
import feedparser
File "example.py", line 2, in <module>
d = feedparser.parse('http://feedparser.org/docs/examples/atom10.xml')
AttributeError: 'module' object has no attribute 'parse'
但是使用feedparser的实际脚本也停止工作,出现同样的错误。
最佳答案
关键是当有一个名为feedparser.py的脚本时,python会将其视为要以比安装的模块更高的优先级进行导入的模块。
关于python - Feedparser停止工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4934204/