home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Calibre / calibre-0.8.18.msi / file_280 / dosisdiarias.recipe < prev    next >
Encoding:
Text File  |  2011-09-09  |  1.1 KB  |  32 lines

  1. __license__   = 'GPL v3'
  2. __copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
  3. '''
  4. http://www.dosisdiarias.com
  5. '''
  6.  
  7. from calibre.web.feeds.recipes import BasicNewsRecipe
  8.  
  9. class DosisDiarias(BasicNewsRecipe):
  10.     title                  = 'Alberto Montt en dosis diarias'
  11.     __author__             = 'Darko Miletic'
  12.     description            = 'Mire sin compromiso y si le gusta vuelva'
  13.     oldest_article         = 5
  14.     max_articles_per_feed  = 100
  15.     no_stylesheets         = True
  16.     use_embedded_content   = True
  17.     encoding               = 'utf-8'
  18.     publisher              = 'Alberto Montt'
  19.     category               = 'comic, blog, spanish'
  20.     language               = 'es'
  21.  
  22.     conversion_options = {
  23.                              'comments'        : description
  24.                             ,'tags'            : category
  25.                             ,'language'        : language
  26.                             ,'publisher'       : publisher
  27.                          }
  28.  
  29.     remove_tags = [dict(name='div',attrs={'class':'feedflare'})]
  30.  
  31.     feeds = [(u'Dosis diaria', u'http://feeds.feedburner.com/montt' )]
  32.