So I've been trying to modify the existing Explosm recipe to grab more articles. The part I've been trying to modify is this:
Code:
class Explosm(BasicNewsRecipe):
title = u'Explosm Rotated 2'
__author__ = 'Andromeda Rabbit'
description = 'Explosm 2'
language = 'en'
use_embedded_content = False
no_stylesheets = True
oldest_article = 150
remove_javascript = True
remove_empty_feeds = False
max_articles_per_feed = 30
Now, as you can see, the oldest_article and max_articles_per_feed have both been modified to be larger than the original 12 and 24, respectively. However, every time it fetches new articles, I only get 7 total. What am I doing wrong?
Thanks!