From 58e6ab7e839879655311146c977d899693c10587 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 2 May 2012 16:04:39 +0530 Subject: [PATCH] Vice Magazine by atordo --- recipes/vice_magazine.recipe | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 recipes/vice_magazine.recipe diff --git a/recipes/vice_magazine.recipe b/recipes/vice_magazine.recipe new file mode 100644 index 0000000000..262c09269c --- /dev/null +++ b/recipes/vice_magazine.recipe @@ -0,0 +1,17 @@ +# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai +from calibre.web.feeds.news import BasicNewsRecipe + +class ViceESRecipe(BasicNewsRecipe): + title = u'Vice Magazine España' + __author__ = 'atordo' + description = u'La página web oficial de la revista Vice España' + category = u'noticias, fotografía, blogs, moda, arte, cine, música, literatura, tecnología' + cover_url = 'http://www.seeklogo.com/images/V/Vice-logo-668578AC94-seeklogo.com.gif' + oldest_article = 20 + max_articles_per_feed = 30 + auto_cleanup = True + no_stylesheets = True + language = 'es' + + feeds = [('Vice', 'http://www.vice.com/es/rss')] +