0

i have this feed which i would like to pull the info out of http://www.boutique-artisans-du-monde.com/rss/catalog/category/cid/6/store_id/1/

from the code i have

try:
   xml = urllib2.urlopen(link_rss)
except urllib2.URLError, e:
   pass
else:
   f = feedparser.parse(xml)
   print len(f.entries)

when i print the len(f.entries) maximum entries i get is 50 what is the correct way to pull all the entries?

1 Answer 1

2

I think it returns all the entries, maybe that's only what the feed contains. If you want to pull older entries you will have to find the correct feed and pass it to the feedparser RSS is just an XML file stored at the server.

check this answer

Sign up to request clarification or add additional context in comments.

4 Comments

Yep, the feed only contains 50 items
@Dikei I guess this answers your question :)
It's not my question though :)
@Dikei sorry, confused you for the OP :)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.