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

  1. from calibre.web.feeds.news import BasicNewsRecipe
  2.  
  3. class OpenLeft(BasicNewsRecipe):
  4.     # Information about the recipe
  5.  
  6.     title              = 'Open Left'
  7.     description        = 'Progressive American commentary on current events'
  8.     category           = 'news, commentary'
  9.     language           = 'en'
  10.     __author__         = 'Xanthan Gum'
  11.  
  12.     # Fetch no article older than seven days
  13.  
  14.     oldest_article = 7
  15.  
  16.     # Fetch no more than 100 articles
  17.  
  18.     max_articles_per_feed = 100
  19.  
  20.     # Fetch the articles from the RSS feed
  21.  
  22.     feeds          = [(u'Articles', u'http://www.openleft.com/rss/rss2.xml')]
  23.