From a72df373d75904175effd186d8d8e6c58052eb4a Mon Sep 17 00:00:00 2001 From: osman Date: Tue, 11 Jul 2023 19:12:52 -0700 Subject: [PATCH] Add all official Wapo feeds. --- recipes/wash_post.recipe | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/recipes/wash_post.recipe b/recipes/wash_post.recipe index a997d69368..0bdec291a5 100644 --- a/recipes/wash_post.recipe +++ b/recipes/wash_post.recipe @@ -41,17 +41,23 @@ class TheWashingtonPost(BasicNewsRecipe): dict(attrs={'data-qa': ['article-body-ad', 'subscribe-promo', 'interstitial-link-wrapper']}), ] + # Official feeds: https://www.washingtonpost.com/discussions/2018/10/12/washington-post-rss-feeds/ 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'Politics', u'http://feeds.washingtonpost.com/rss/politics'), (u'Opinions', u'http://feeds.washingtonpost.com/rss/opinions'), (u'Local', u'http://feeds.washingtonpost.com/rss/local'), + (u'Sports', u'http://feeds.washingtonpost.com/rss/sports'), + (u'Technology', u'http://feeds.washingtonpost.com/rss/business/technology'), + (u'National', u'http://feeds.washingtonpost.com/rss/national'), + (u'World', u'http://feeds.washingtonpost.com/rss/world'), + (u'Business', u'http://feeds.washingtonpost.com/rss/business'), + (u'Lifestyle', u'http://feeds.washingtonpost.com/rss/lifestyle'), (u'Entertainment', u'http://feeds.washingtonpost.com/rss/entertainment'), - (u'Sports', u'http://feeds.washingtonpost.com/rss/sports'), + + # Undocumented feeds. + (u'White House', + u'http://feeds.washingtonpost.com/rss/politics/whitehouse'), (u'Redskins', u'http://feeds.washingtonpost.com/rss/sports/redskins'), ]