mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
23 lines
803 B
Plaintext
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')
|
|
]
|