diff --git a/recipes/icons/reflex_cz.png b/recipes/icons/reflex_cz.png new file mode 100644 index 0000000000..c04b28a5ff Binary files /dev/null and b/recipes/icons/reflex_cz.png differ diff --git a/recipes/reflex_cz.recipe b/recipes/reflex_cz.recipe new file mode 100644 index 0000000000..93c1c035b5 --- /dev/null +++ b/recipes/reflex_cz.recipe @@ -0,0 +1,19 @@ +#!/usr/bin/env python +# vim:fileencoding=utf-8 +from calibre.web.feeds.news import AutomaticNewsRecipe + +class ReflexCzRecipe(AutomaticNewsRecipe): + __author__ = 'Mailo' + title = 'Reflex' + description = 'Reflex.cz je každodenní kritický průvodce aktuálním domácím i světovým děním. Názorový a autorský online magazín kultovního společenského týdeníku Reflex inteligentnímu čtenáři nabízí komentáře, glosy a originální články od vyhlášených autorů J.X. Doležala, Milana Tesaře, Bohumila Pečinky nebo Marka Stoniše. Za poplatek je na stránkách dostupný také unikátní archiv tištěného Reflexu, včetně aktuálního čísla.' + oldest_article = 10 + max_articles_per_feed = 100 + auto_cleanup = True + + feeds = [ + ('Reflex', 'https://www.reflex.cz/rss'), + ] + + language = 'cs' + cover_url = 'https://1958898586.rsc.cdn77.org/dist/assets/reflex/logo-reflex.svg' +