mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
25 lines
982 B
Python
25 lines
982 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
|
|
from calibre.web.feeds.news import AutomaticNewsRecipe
|
|
|
|
|
|
class BasicUserRecipe1498286429(AutomaticNewsRecipe):
|
|
title = 'Kitekint\u0151'
|
|
language = 'hu'
|
|
__author__ = 'pofa'
|
|
oldest_article = 1
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
('Gazdas\xe1gpolitika', 'http://kitekinto.hu/gazdasagpolitika/feed/'),
|
|
('Eur\xf3pai \xfcgyek', 'http://kitekinto.hu/europai-ugyek/feed/'),
|
|
('Eur\xf3p\xe1n k\xedv\xfcl', 'http://kitekinto.hu/europan-kivul/feed/'),
|
|
('Vesz\xe9lyz\xf3n\xe1k', 'http://kitekinto.hu/veszelyzonak/feed/'),
|
|
('V\xe1llalati h\xedrek', 'http://kitekinto.hu/vallalati-hirek/feed/'),
|
|
('T\u0151zsde', 'http://kitekinto.hu/tozsde/feed/'),
|
|
('Aut\xf3', 'http://kitekinto.hu/auto/feed/'),
|
|
('Kult\xfara', 'http://kitekinto.hu/kultura/feed/'), ]
|