home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_3751 < prev    next >
Encoding:
Text File  |  2010-05-18  |  617 b   |  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.