From 058f782f01c1838c47edf9250675bc8e62dea1f1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 6 Jul 2012 13:26:39 +0530 Subject: [PATCH] Warentest by asdfdsfksd --- recipes/warentest.recipe | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 recipes/warentest.recipe diff --git a/recipes/warentest.recipe b/recipes/warentest.recipe new file mode 100644 index 0000000000..19246abd8a --- /dev/null +++ b/recipes/warentest.recipe @@ -0,0 +1,16 @@ +from calibre.web.feeds.news import BasicNewsRecipe + +class Warentest(BasicNewsRecipe): + title = u'Warentest' + language = 'de' + description = 'Stiftung Warentest is a German consumer organisation and foundation involved in investigating and comparing goods and services in an unbiased way' + __author__ = 'asdfdsfksd' + needs_subscription = False + max_articles_per_feed = 100 + auto_cleanup = True + + feeds = [(u'Test', u'http://www.test.de/rss/alles/')] + + def get_cover_url(self): + return 'http://www.test.de/img/pp/logo.png' +