From a4c2a4b2f44ce56b8baa07fec6846989a6976808 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 27 Mar 2016 08:54:33 +0530 Subject: [PATCH] Magyar Nemzet by pofa --- recipes/magyar_nemzet.recipe | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 recipes/magyar_nemzet.recipe diff --git a/recipes/magyar_nemzet.recipe b/recipes/magyar_nemzet.recipe new file mode 100644 index 0000000000..570d0e1822 --- /dev/null +++ b/recipes/magyar_nemzet.recipe @@ -0,0 +1,24 @@ +#!/usr/bin/env python2 +# vim:fileencoding=utf-8 +from __future__ import unicode_literals, division, absolute_import, print_function +from calibre.web.feeds.news import AutomaticNewsRecipe + +class BasicUserRecipe1458590017(AutomaticNewsRecipe): + title = 'Magyar Nemzet' + __author__ = 'pofa' + language = 'hu' + oldest_article = 1 + max_articles_per_feed = 50 + auto_cleanup = True + + feeds = [ + ('Kiemelt', 'http://mno.hu/rss/kiemelt'), + ('Belföld', 'http://mno.hu/rss/belfold'), + ('Külföld', 'http://mno.hu/rss/kulfold'), + ('Vélemény', 'http://mno.hu/rss/velemeny'), + ('Kultúrgrund', 'http://mno.hu/rss/grund'), + ('Gazdaság', 'http://mno.hu/rss/gazdasag'), + ('Sport', 'http://mno.hu/rss/sport'), + ('Tudomány \xe9s technika', 'http://mno.hu/rss/tudomany'), + ('Életmód', 'http://mno.hu/rss/eletmod'), + ]