From 3f7a72120b75a03912d2b2a939e98bdb25314f24 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 25 Oct 2011 07:07:51 +0530 Subject: [PATCH] Calibre Blog by Krittika Goyal --- recipes/calibre_blog.recipe | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 recipes/calibre_blog.recipe diff --git a/recipes/calibre_blog.recipe b/recipes/calibre_blog.recipe new file mode 100644 index 0000000000..468876ef3d --- /dev/null +++ b/recipes/calibre_blog.recipe @@ -0,0 +1,18 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class CalibreBlog(BasicNewsRecipe): + title = u'Calibre Blog' + language = 'en' + __author__ = 'Krittika Goyal' + oldest_article = 1000 #days + max_articles_per_feed = 5 + use_embedded_content = False + + no_stylesheets = True + auto_cleanup = True + + + feeds = [ +('Article', + 'http://blog.calibre-ebook.com/feeds/posts/default'), +]