From d18a155ea795c2cbbccef51907d2361e41cd455e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 30 Apr 2011 08:49:53 -0600 Subject: [PATCH] The Big Picture and Auto industry news by welovelucy --- recipes/auto_blog.recipe | 16 ++++++++++++++++ recipes/big_picture.recipe | 12 ++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 recipes/auto_blog.recipe create mode 100644 recipes/big_picture.recipe diff --git a/recipes/auto_blog.recipe b/recipes/auto_blog.recipe new file mode 100644 index 0000000000..33e2c7095e --- /dev/null +++ b/recipes/auto_blog.recipe @@ -0,0 +1,16 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class AutoBlog(BasicNewsRecipe): + title = u'Auto Blog' + __author__ = 'Welovelucy' + language = 'en' + description = 'Auto industry news' + oldest_article = 7 + max_articles_per_feed = 100 + + feeds = [(u'AutoBlog', u'http://www.autoblog.com/rss.xml')] + + def print_version(self, url): + return url + 'print/' + + diff --git a/recipes/big_picture.recipe b/recipes/big_picture.recipe new file mode 100644 index 0000000000..e393e951c1 --- /dev/null +++ b/recipes/big_picture.recipe @@ -0,0 +1,12 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class BigPicture(BasicNewsRecipe): + title = u'The Big Picture' + __author__ = 'Welovelucy' + description = ('Macro perspective on capital markets, economy, technology' + ' and digital media') + language = 'en' + oldest_article = 7 + max_articles_per_feed = 100 + + feeds = [(u'Big Picture', u'http://feeds.feedburner.com/TheBigPicture')]