From 3741f3b0646927d338eaf4f6553285d119a911bb Mon Sep 17 00:00:00 2001 From: marc Date: Tue, 15 Apr 2014 16:56:48 +0200 Subject: [PATCH] add grandes corresponsales spanish recipe --- recipes/grandes_corresponsales_es.recipe | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 recipes/grandes_corresponsales_es.recipe diff --git a/recipes/grandes_corresponsales_es.recipe b/recipes/grandes_corresponsales_es.recipe new file mode 100644 index 0000000000..44885d0ba2 --- /dev/null +++ b/recipes/grandes_corresponsales_es.recipe @@ -0,0 +1,29 @@ +from calibre.web.feeds.news import BasicNewsRecipe +import urllib + +class GrandesCorresponsalesRecipe (BasicNewsRecipe): + __author__ = 'Marc Busqué ' + __url__ = 'http://www.lamarciana.com' + __version__ = '1.0.0' + __license__ = 'GPL v3' + __copyright__ = '2014, Marc Busqué ' + title = u'Grandes corresponsales' + description = u'Corresponsales de verdad, de los que no se quedan en el hotel.' + language = 'es' + tags = 'información, internacional ' + oldest_article = 30 + remove_empty_feeds = True + no_stylesheets = True + extra_css = urllib.urlopen('https://raw.githubusercontent.com/laMarciana/gutenweb/master/dist/gutenweb.css').read().replace('@charset "UTF-8";', '') + + feeds = [ + (u'Rafael Poch', u'http://blogs.lavanguardia.com/berlin/feed'), + (u'Andy Robinson', u'http://blogs.lavanguardia.com/diario-itinerante/feed'), + (u'Rafael Ramos', u'http://blogs.lavanguardia.com/londres/feed'), + (u'Mikel Ayestaran', u'http://www.mikelayestaran.com/blog/?feed=rss2'), + (u'Gervasio Sánchez', u'http://blogs.heraldo.es/gervasiosanchez/?feed=rss2'), + (u'Olga Rodríguez', u'http://olgarodriguez.org/feed/'), + (u'Hernán Zin', u'http://blogs.20minutos.es/enguerra/tag/corresponsales-guerra/feed/'), + (u'Arturo Pérez-Reverte', u'http://feeds.feedburner.com/ArtculosDeArturoPrez-reverte'), + (u'Ramón Lobo', u'http://www.ramonlobo.com/feed/'), + ]