calibre/recipes/security_watch.recipe
Allan Simonsen a1810043c9 Fixed recipes.
Deleted recipes where host does not exist anymore or has no rss feeds anymore.
2016-12-03 06:52:55 +01:00

20 lines
504 B
Plaintext

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