标签: python rss feedparser
如何在python中使用feedparser模块获取rss博客Feed的旧帖?
import feedparser content = feedparser.parse('http://blog.itiffin.in/index.php/feed/') print len(content['items']) # gives 10. But there are lot of old blogs feeds there.
如何在python中使用feedparser获取旧条目?