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