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