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

  1. from calibre.web.feeds.news import BasicNewsRecipe
  2.  
  3. class FactCheckOrg(BasicNewsRecipe):
  4.     title          = u'Factcheck'
  5.     __author__     = u'Michael Heinz'
  6.     language = 'en'
  7.     oldest_article = 7
  8.     max_articles_per_feed = 100
  9.     recursion = 0
  10.  
  11.     publication_type = 'magazine'
  12.     masthead_url = 'http://factcheck.org/wp-content/themes/Streamline/images/headernew.jpg'
  13.     cover_url = 'http://factcheck.org/wp-content/themes/Streamline/images/headernew.jpg'
  14.  
  15.     remove_tags = [ dict({'id':['footer','footerabout','sidebar']}) ]
  16.  
  17.  
  18.     feeds          = [(u'Factcheck', u'feed://www.factcheck.org/feed/')]
  19.  
  20.