mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
40 lines
1.7 KiB
Plaintext
40 lines
1.7 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2011, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
www.washingtonpost.com
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class TheWashingtonPost(BasicNewsRecipe):
|
|
title = 'The Washington Post'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'Leading source for news, video and opinion on politics, business, world and national news, science, travel, entertainment and more. Our local coverage includes reporting on education, crime, weather, traffic, real estate, jobs and cars for DC, Maryland and Virginia. Offering award-winning opinion writing, entertainment information and restaurant reviews.' # noqa
|
|
publisher = 'The Washington Post Company'
|
|
category = 'news, politics, USA'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 200
|
|
no_stylesheets = True
|
|
encoding = 'utf8'
|
|
delay = 1
|
|
use_embedded_content = False
|
|
language = 'en'
|
|
remove_empty_feeds = True
|
|
publication_type = 'newspaper'
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
(u'World', u'http://feeds.washingtonpost.com/rss/world'),
|
|
(u'National', u'http://feeds.washingtonpost.com/rss/national'),
|
|
(u'White House',
|
|
u'http://feeds.washingtonpost.com/rss/politics/whitehouse'),
|
|
(u'Business', u'http://feeds.washingtonpost.com/rss/business'),
|
|
(u'Opinions', u'http://feeds.washingtonpost.com/rss/opinions'),
|
|
(u'Local', u'http://feeds.washingtonpost.com/rss/local'),
|
|
(u'Entertainment',
|
|
u'http://feeds.washingtonpost.com/rss/entertainment'),
|
|
(u'Sports', u'http://feeds.washingtonpost.com/rss/sports'),
|
|
(u'Redskins', u'http://feeds.washingtonpost.com/rss/sports/redskins'),
|
|
]
|