From 1038cb8e47defce0b70e809877e40b32005af9d4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 18 May 2020 09:13:02 +0530 Subject: [PATCH] Tagespost by Pat Stapleton --- recipes/tagespost.recipe | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 recipes/tagespost.recipe diff --git a/recipes/tagespost.recipe b/recipes/tagespost.recipe new file mode 100644 index 0000000000..7362a1735c --- /dev/null +++ b/recipes/tagespost.recipe @@ -0,0 +1,27 @@ +#!/usr/bin/env python2 +# vim:fileencoding=utf-8 +from __future__ import unicode_literals, division, absolute_import, print_function +__license__ = 'GPL v3' +__copyright__ = '2020, Pat Stapleton ' +''' +Recipe for Die Tagespost +''' +from calibre.web.feeds.news import BasicNewsRecipe + + +class AdvancedUserRecipe1589629735(BasicNewsRecipe): + title = 'Tagespost' + language = 'de' + __author__ = 'Pat Stapleton' + description = ('Die Tagespost trägt den Untertitel Katholische Wochenzeitung für Politik, Gesellschaft' + ' und Kultur und ist eine überregionale, wöchentlich im Johann Wilhelm Naumann Verlag in Würzburg erscheinende Zeitung.') + oldest_article = 7 + max_articles_per_feed = 100 + auto_cleanup = True + use_embedded_content = False + + feeds = [ + ('Tagespost', 'https://www.die-tagespost.de/storage/rss/rss/die-tagespost-komplett.xml'), + ] + + extra_css = 'td.textb {font-size: medium;}'