#!/usr/bin/env python __license__ = 'GPL v3' __copyright__ = '2008 - 2009, Darko Miletic ' ''' engadget.com ''' from calibre.web.feeds.news import BasicNewsRecipe class Engadget(BasicNewsRecipe): title = u'Engadget' __author__ = 'Darko Miletic' description = 'Tech news' language = 'en' oldest_article = 7 max_articles_per_feed = 100 no_stylesheets = True use_embedded_content = True feeds = [ (u'Posts', u'http://www.engadget.com/rss.xml')]