calibre/recipes/reuters_ja.recipe
2013-10-26 17:02:07 +05:30

23 lines
803 B
Plaintext

from calibre.web.feeds.news import BasicNewsRecipe
class ReutersJa(BasicNewsRecipe):
title = 'Reuters(Japan)'
description = 'Global news in Japanese'
__author__ = 'Hiroshi Miura'
use_embedded_content = False
language = 'ja'
max_articles_per_feed = 10
remove_javascript = True
auto_cleanup = True
feeds = [(
'Top Stories', 'http://feeds.reuters.com/reuters/JPTopNews?format=xml'),
('World News', 'http://feeds.reuters.com/reuters/JPWorldNews?format=xml'),
('Business News', 'http://feeds.reuters.com/reuters/JPBusinessNews?format=xml'),
('Technology News', 'http://feeds.reuters.com/reuters/JPTechnologyNews?format=xml'),
('Oddly Enough News',
'http://feeds.reuters.com/reuters/JPOddlyEnoughNews?format=xml')
]