mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-28 23:11:01 -04:00
21 lines
611 B
Plaintext
21 lines
611 B
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2010, Hiroshi Miura <miurahr@linux.com>'
|
|
'''
|
|
nationalgeographic.co.jp
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
import re
|
|
|
|
|
|
class NationalGeoJp(BasicNewsRecipe):
|
|
title = u'\u30ca\u30b7\u30e7\u30ca\u30eb\u30fb\u30b8\u30aa\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u30cb\u30e5\u30fc\u30b9'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
|
|
feeds = [(u'news', u'http://www.nationalgeographic.co.jp/news/rss.php')]
|
|
|
|
def print_version(self, url):
|
|
return re.sub(r'news_article.php', 'news_printer_friendly.php', url)
|