View Single Post
Old 08-06-2009, 11:08 AM   #9
kiklop74
Guru
kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.kiklop74 can program the VCR without an owner's manual.
 
kiklop74's Avatar
 
Posts: 800
Karma: 194644
Join Date: Dec 2007
Location: Argentina
Device: Kindle Voyage
No need for all that complication since guardian feeds contain complete text of every article:

Code:
class Guardian_uk(BasicNewsRecipe):
    title                 = 'The Guardian'
    oldest_article        = 2
    max_articles_per_feed = 100
    no_stylesheets        = True
    use_embedded_content  = True
    encoding              = 'utf-8'
    language              = _('English')
    
    feeds              = [(u'News: Main Section', u'http://www.guardian.co.uk/theguardian/mainsection/rss')]

    remove_tags        = [dict(name='div', attrs={'class':['related','guRssAdvert','terms']})]
Just add more feeds you need
kiklop74 is offline   Reply With Quote