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

  1. __license__   = 'GPL v3'
  2. __copyright__ = '2011-2011, Federico Escalada <fedeescalada at gmail.com>'
  3.  
  4. from calibre.web.feeds.news import BasicNewsRecipe
  5.  
  6. class Dotpod(BasicNewsRecipe):
  7.     __author__ = 'Federico Escalada'
  8.     description = 'Tecnologia y Comunicacion Audiovisual'
  9.     encoding = 'utf-8'
  10.     language = 'es'
  11.     max_articles_per_feed = 100
  12.     no_stylesheets = True
  13.     oldest_article = 7
  14.     publication_type = 'blog'
  15.     title = 'Dotpod'
  16.     authors = 'Federico Picone'
  17.  
  18.     conversion_options = {
  19.                              'authors'         : authors
  20.                             ,'comments'        : description
  21.                             ,'language'        : language
  22.                          }
  23.  
  24.     feeds = [('Dotpod', 'http://www.dotpod.com.ar/feed/')]
  25.  
  26.     remove_tags = [dict(name='div', attrs={'class':'feedflare'})]
  27.  
  28.