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

  1. from calibre.web.feeds.news import BasicNewsRecipe
  2.  
  3. class CJR(BasicNewsRecipe):
  4.     title              = u'Columbia Journalism Review'
  5.     __author__         = u'Xanthan Gum'
  6.     description        = 'News about journalism.'
  7.     language = 'en'
  8.  
  9.     oldest_article = 7
  10.     max_articles_per_feed = 100
  11.  
  12.     feeds = [(u'News Stories', u'http://www.cjr.org/index.xml')]
  13.  
  14.     def print_version(self, url):
  15.         return url + '?page=all&print=true'
  16.