View Single Post
Old 11-14-2008, 10:26 PM   #2
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
Quote:
Originally Posted by girlperson1 View Post
The San Francisco Chronicle, Pretty please!!

http://www.sfgate.com/rss/

Code:
#!/usr/bin/env  python

__license__   = 'GPL v3'
__copyright__ = '2008, Darko Miletic <darko.miletic at gmail.com>'
'''
sfgate.com
'''

from calibre.web.feeds.news import BasicNewsRecipe

class sfgate(BasicNewsRecipe):
    title                 = u'San Francisco Chronicle'
    __author__            = u'Darko Miletic'
    description           = u'San Francisco news'    
    oldest_article        = 7
    max_articles_per_feed = 100
    no_stylesheets        = True
    use_embedded_content  = False

    keep_only_tags    = [dict(name='td' , attrs={'class':'column1 w627'})]
    remove_tags_after =  dict(name='div', attrs={'id':'articlecontent' })
    remove_tags = [
                     dict(name='div', attrs={'class':'tools tools_top'})
                    ,dict(name='div', attrs={'id':'articlebox'        })
                  ]

    feeds          = [  
                         (u'Top News Stories', u'http://www.sfgate.com/rss/feeds/news.xml')
                     ]
kiklop74 is offline   Reply With Quote