from calibre.web.feeds.news import BasicNewsRecipe class SecurityWatch(BasicNewsRecipe): title = u'securitywatch' description = 'security news' timefmt = ' [%d %b %Y]' __author__ = 'Oliver Niesner' no_stylesheets = True oldest_article = 14 max_articles_per_feed = 100 use_embedded_content = False language = 'en' auto_cleanup = True feeds = [ (u'securitywatch', u'http://feeds.pcmag.com/Rss.aspx/SectionArticles?sectionId=28026') ]