mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
26 lines
731 B
Plaintext
26 lines
731 B
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2010,2014, Hiroshi Miura <miurahr@linux.com>'
|
|
'''
|
|
www.kahoku.co.jp
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class KahokuShinpoNews(BasicNewsRecipe):
|
|
title = u'\u6cb3\u5317\u65b0\u5831'
|
|
__author__ = 'Hiroshi Miura'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 20
|
|
description = 'Tohoku regional news paper in Japan'
|
|
publisher = 'Kahoku Shinpo Sha'
|
|
category = 'news, japan'
|
|
language = 'ja'
|
|
encoding = 'Shift_JIS'
|
|
no_stylesheets = True
|
|
|
|
feeds = [(u'news', u'http://www.kahoku.co.jp/rss/index_thk.xml')]
|
|
|
|
keep_only_tags = [{'class': "category"}, {'class': "ttl"}, {
|
|
'class': 'photoimg'}, {'class': "txt"}, {'class': "data"}]
|