mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
20 lines
504 B
Plaintext
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')
|
|
]
|