Kitekintő - Hungarian daily news, from over the world. (latest)
#!/usr/bin/env python2
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1498287046(BasicNewsRecipe):
title = 'Kitekintő'
oldest_article = 1
max_articles_per_feed = 100
auto_cleanup = True
feeds = [
('Gazdaságpolitika', 'http://kitekinto.hu/gazdasagpolitika/feed/'),
('Európai ügyek', 'http://kitekinto.hu/europai-ugyek/feed/'),
('Európán kívül', 'http://kitekinto.hu/europan-kivul/feed/'),
('Veszélyzónák', 'http://kitekinto.hu/veszelyzonak/feed/'),
('Vállalati hírek', 'http://kitekinto.hu/vallalati-hirek/feed/'),
('Tőzsde', 'http://kitekinto.hu/tozsde/feed/'),
('Autó', 'http://kitekinto.hu/auto/feed/'),
('Kultúra', 'http://kitekinto.hu/kultura/feed/'),
]
|