mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
22 lines
752 B
Plaintext
22 lines
752 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Index(BasicNewsRecipe):
|
|
|
|
title = u'INDEX.HU'
|
|
oldest_article = 3
|
|
max_articles_per_feed = 50
|
|
language = 'hu'
|
|
|
|
__author__ = 'Ezmegaz'
|
|
|
|
feeds = [(u'ALL', u'http://index.hu/24ora/rss/'),
|
|
(u'BELF\xd6LD', u'http://index.hu/belfold/rss/default/'),
|
|
(u'K\xdcLF\xd6LD', u'http://index.hu/kulfold/rss/default/'),
|
|
(u'BULV\xc1R', u'http://index.hu/bulvar/rss/default/'),
|
|
(u'GAZDAS\xc1G', u'http://index.hu/gazdasag/rss/default/'),
|
|
(u'TECH', u'http://index.hu/tech/rss/main/'),
|
|
(u'KULT\xdaRA', u'http://index.hu/kultur/rss/main/'),
|
|
(u'TUDOM\xc1NY', u'http://index.hu/tudomany/rss/main/'),
|
|
(u'V\xc9LEM\xc9NY', u'http://index.hu/velemeny/rss/default/')]
|
|
|