From 4c5155ccbe586f3799f112632619738d57948f52 Mon Sep 17 00:00:00 2001 From: Jony <23194385+jony0008@users.noreply.github.com> Date: Sun, 15 Mar 2020 14:20:46 +0100 Subject: [PATCH] Delete historias_del_mundo_es.recipe --- recipes/historias_del_mundo_es.recipe | 31 --------------------------- 1 file changed, 31 deletions(-) delete mode 100644 recipes/historias_del_mundo_es.recipe diff --git a/recipes/historias_del_mundo_es.recipe b/recipes/historias_del_mundo_es.recipe deleted file mode 100644 index 44e49db37d..0000000000 --- a/recipes/historias_del_mundo_es.recipe +++ /dev/null @@ -1,31 +0,0 @@ -# vim:fileencoding=utf-8 -from __future__ import unicode_literals -from calibre.web.feeds.news import BasicNewsRecipe - - -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' - - def get_extra_css(self): - if not self.extra_css: - br = self.get_browser() - self.extra_css = br.open_novisit( - 'https://raw.githubusercontent.com/laMarciana/gutenweb/master/dist/gutenweb.css').read().replace('@charset "UTF-8";', '') - return self.extra_css - - feeds = [ - (u'Historias del Mundo', u'http://www.marcbusque.org/?feed=rss'), - ]