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

  1. # -*- coding: utf-8 -*-
  2.  
  3. from calibre.web.feeds.news import BasicNewsRecipe
  4.  
  5. class BlogdaCidadania(BasicNewsRecipe):
  6.     title                  = 'Blog da Cidadania'
  7.     __author__             = 'Diniz Bortolotto'
  8.     description            = 'Posts do Blog da Cidadania'
  9.     oldest_article         = 7
  10.     max_articles_per_feed  = 50
  11.     encoding               = 'utf8'
  12.     publisher              = 'Eduardo Guimaraes'
  13.     category               = 'politics, Brazil'
  14.     language               = 'pt_BR'
  15.     publication_type       = 'politics portal'
  16.  
  17.     feeds                  = [(u'Blog da Cidadania', u'http://www.blogcidadania.com.br/feed/')]
  18.  
  19.     reverse_article_order  = True
  20.  
  21.