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
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1348063712(BasicNewsRecipe):
|
|
title = u'Portfolio.hu - English Edition'
|
|
__author__ = 'laca'
|
|
oldest_article = 7
|
|
language = 'en_HU'
|
|
masthead_url = 'http://www.portfolio.hu/img/sit/angolfejlec2010.jpg'
|
|
use_embedded_content = False
|
|
auto_cleanup = True
|
|
encoding = 'cp1252'
|
|
|
|
author = 'laca'
|
|
simultaneous_downloads = 1
|
|
max_articles_per_feed = 50
|
|
|
|
no_stylesheets = True
|
|
|
|
feeds = [(u'Equity news', u'http://www.portfolio.hu/en/rss/cikk/equity.xml'),
|
|
(u'Economy news', u'http://www.portfolio.hu/en/rss/cikkek/economy.xml'),
|
|
(u'FX&Fixed Income news', u'http://www.portfolio.hu/en/rss/cikkek/fx.xml'),
|
|
(u'Tax news', u'http://www.portfolio.hu/en/rss/cikkek/tax.xml'),
|
|
(u'Energy news', u'http://www.portfolio.hu/en/rss/cikkek/energy.xml'),
|
|
(u'Corpfin news', u'http://www.portfolio.hu/en/rss/cikkek/corpfin.xml'),
|
|
(u'MNB news', u'http://www.portfolio.hu/en/rss/cikkek/mnb.xml')]
|