2

how to get old post of rss blog feed using feedparser module in python?

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.

How to fetch old entries using feedparser in python?

Hari Krishnan
  • 1,066
  • 2
  • 13
  • 31
  • The xml you reference at http://blog.itiffin.in/index.php/feed/ has only 10 items in it... I'd suggest trying a source that has more than 10 items ... –  Jan 14 '16 at 13:02
  • You mean `feedparser.parse`. – Kenly Jan 14 '16 at 13:04
  • Look the accepted answer http://stackoverflow.com/questions/1676223/feedparser-retrieve-old-messages-from-google-reader. – Kenly Jan 14 '16 at 13:09

0 Answers0