Hi,
The
Seattle times recipe is out of date, as the feeds no longer work. Does anyone have an updated recipe?
I'm not a skilled recipe creator, but I've replaced the old feeds with the new working ones in the below recipe. Seems to work locally for me--can someone else test it?
Code:
#!/usr/bin/env python2
__license__ = 'GPL v3'
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
'''
seattletimes.nwsource.com
'''
from calibre.web.feeds.news import BasicNewsRecipe
class SeattleTimes(BasicNewsRecipe):
title = 'The Seattle Times'
__author__ = 'Darko Miletic'
description = 'News from Seattle and USA'
publisher = 'The Seattle Times'
category = 'news, politics, USA'
oldest_article = 2
max_articles_per_feed = 100
no_stylesheets = True
use_embedded_content = False
encoding = 'utf-8'
language = 'en'
auto_cleanup = True
auto_cleanup_keep = '//div[@id="PhotoContainer"]'
feeds = [
(u'Local News',
u'https://www.seattletimes.com/seattle-news/feed/'),
(u'Nation & World',
u'https://www.seattletimes.com/nation-world/feed/'),
(u'Business',
u'https://www.seattletimes.com/business/feed/'),
(u'Sports',
u'https://www.seattletimes.com/sports/feed/'),
(u'Entertainment',
u'https://www.seattletimes.com/entertainment/feed/'),
(u'Life',
u'https://www.seattletimes.com/life/feed/'),
(u'Opinion',
u'https://www.seattletimes.com/opinion/feed/'),
(u'Photo and Video',
u'https://www.seattletimes.com/photo-video/feed/'),
]