home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Calibre / calibre-0.8.18.msi / file_280 / sfbg.recipe < prev    next >
Text File  |  2011-09-09  |  656b  |  26 lines

  1. from calibre.web.feeds.news import BasicNewsRecipe
  2.  
  3. class SanFranciscoBayGuardian(BasicNewsRecipe):
  4.     title = u'San Francisco Bay Guardian'
  5.     language = 'en'
  6.     __author__ = 'Krittika Goyal'
  7.     oldest_article = 31 #days
  8.     max_articles_per_feed = 25
  9.  
  10.     no_stylesheets = True
  11.     remove_tags = [
  12.         dict(name='iframe'),
  13.     ]
  14.  
  15.  
  16.     feeds = [
  17.         ('sfbg', 'http://www.sfbg.com/rss.xml'),
  18.         ('politics', 'http://www.sfbg.com/politics/rss.xml'),
  19.         ('blogs', 'http://www.sfbg.com/blog/rss.xml'),
  20.         ('pixel_vision', 'http://www.sfbg.com/pixel_vision/rss.xml'),
  21.         ('bruce', 'http://www.sfbg.com/bruce/rss.xml'),
  22.     ]
  23.  
  24.  
  25.  
  26.