我是Feedparser的新手,经过很长一段时间的休息后又回到了Python,因此不胜感激。我已经尝试过文档,这些文档非常好,但是仍然有些滞后。

我如何让Feedparser获取rss feed,并从中获取前10个项目的标题和说明,并分别标记每个项目,以便可以将它们插入其他代码中的任何位置? IE。我可以只使用第一项和第二项的标题以及其他人的描述吗?

希望有道理!任何帮助,不胜感激

最佳答案

import feedparser
f = feedparser.parse('http://domain/feed')
# f contains a dictionary key 'entries'
# entries is a list of dictionaries with 'title' and 'content' keys
for e in f['entries']:
    print e.get('title', '')
    print e.get('summary', '')

希望能有所帮助。

10-08 17:22