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?