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')]