I'm new to feedparser and would like to retrive the full number or entries/articles from a feed.
myfeed = feedparser.parse(feedurl)
print len(myfeed['entries'])
For instance if I use
feedurl = 'http://www.korben.info/feed'
It only returns only 30 entries. It's the same with other sites.
Why is this so limited ?
I need to retrieve the full list of articles URLs from a site.
How can I achieve this please ? Thank you for your help.