From adc1c1f4be4ce172d48d10541a7694594148b8d2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 16 Nov 2011 16:08:38 +0530 Subject: [PATCH] New on Japan by Krittika Goyal --- recipes/japan_news.recipe | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 recipes/japan_news.recipe diff --git a/recipes/japan_news.recipe b/recipes/japan_news.recipe new file mode 100644 index 0000000000..3c5e459f99 --- /dev/null +++ b/recipes/japan_news.recipe @@ -0,0 +1,19 @@ +from calibre.web.feeds.news import BasicNewsRecipe +from calibre.ebooks.BeautifulSoup import BeautifulSoup + +class NewsOnJapan(BasicNewsRecipe): + title = u'News On Japan' + language = 'en' + __author__ = 'Krittika Goyal' + oldest_article = 1 #days + max_articles_per_feed = 25 + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + + + feeds = [ +('News', + 'http://newsonjapan.com/rss/top.xml'), +] \ No newline at end of file