我有这个提要,我想从http://www.boutique-artisans-du-monde.com/rss/catalog/category/cid/6/store_id/1/中提取信息
从我的代码
try:
xml = urllib2.urlopen(link_rss)
except urllib2.URLError, e:
pass
else:
f = feedparser.parse(xml)
print len(f.entries)
当我打印 len(f.entries) 我得到的最大条目是 50 时,提取所有条目的正确方法是什么?