calibre/recipes/kitsapun.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

32 lines
993 B
Plaintext

__license__ = 'GPL v3'
__copyright__ = '2010, Darko Miletic <darko.miletic at gmail.com>'
'''
www.kitsapun.com
'''
from calibre.web.feeds.news import BasicNewsRecipe
class Kitsapsun(BasicNewsRecipe):
title = 'Kitsap Sun'
__author__ = 'Darko Miletic'
description = 'News from Kitsap County'
publisher = 'Scripps Interactive Newspapers Group'
category = 'news, Kitsap county, USA'
language = 'en'
oldest_article = 7
max_articles_per_feed = 50
no_stylesheets = True
encoding = 'cp1252'
use_embedded_content = False
auto_cleanup = True
feeds = [(u'News', u'http://www.kitsapsun.com/feeds/rss/news'),
(u'Sports', u'http://www.kitsapsun.com/feeds/rss/sports'),
(u'Entertainment',
u'http://www.kitsapsun.com/feeds/rss/entertainment'),
(u'Lifestyles', u'http://www.kitsapsun.com/feeds/rss/lifestyle'),
(u'Opinion', u'http://www.kitsapsun.com/feeds/rss/opinion'),
]