diff --git a/recipes/historias_del_mundo_es.recipe b/recipes/historias_del_mundo_es.recipe new file mode 100644 index 0000000000..99fc440a68 --- /dev/null +++ b/recipes/historias_del_mundo_es.recipe @@ -0,0 +1,23 @@ +from calibre.web.feeds.news import BasicNewsRecipe +import urllib + +class HistoriasDelMundo (BasicNewsRecipe): + __author__ = 'Marc Busqué ' + __url__ = 'http://www.lamarciana.com' + __version__ = '1.0.1' + __license__ = 'GPL v3' + __copyright__ = '2012, Marc Busqué ' + title = u'Historias del Mundo' + description = u'Historias del Mundo contadas por Marc Busqué' + url = 'http://www.marcbusque.org' + language = 'es' + tags = 'viajes, social' + oldest_article = 120 + remove_empty_feeds = True + no_stylesheets = True + cover_url = u'http://www.marcbusque.org/wp-content/uploads/2011/12/cuchitril.png' + extra_css = urllib.urlopen('https://raw.githubusercontent.com/laMarciana/gutenweb/master/dist/gutenweb.css').read().replace('@charset "UTF-8";', '') + + feeds = [ + (u'Historias del Mundo', u'http://www.marcbusque.org/?feed=rss'), + ]