mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1348151548(BasicNewsRecipe):
|
|
title = u'Index.hu'
|
|
__author__ = 'laca'
|
|
oldest_article = 2
|
|
language = 'hu'
|
|
masthead_url = 'http://index.hu/assets/images/index_logo.gif'
|
|
auto_cleanup = True
|
|
|
|
simultaneous_downloads = 1
|
|
max_articles_per_feed = 50
|
|
|
|
feeds = [(u'Belföld', u'http://index.hu/belfold/rss/'),
|
|
(u'Külföld', u'http://index.hu/kulfold/rss/'),
|
|
(u'Gazdaság', u'http://index.hu/gazdasag/rss/'),
|
|
(u'Tech', u'http://index.hu/tech/rss/'),
|
|
(u'Tudomány', u'http://index.hu/tudomany/rss/'),
|
|
(u'Kultúr', u'http://index.hu/kultur/rss/'),
|
|
(u'Sport Géza', u'http://sportgeza.hu/24ora/rss/'),
|
|
(u'Vélemény', u'http://index.hu/velemeny/rss/'),
|
|
(u'Velvet', u'http://velvet.hu/24ora/rss/'),
|
|
(u'Totalcar', u'http://totalcar.hu/24ora/rss/'),
|
|
(u'Dívány', u'http://divany.hu/24ora/rss/')]
|