#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1728518775(BasicNewsRecipe):
    

    
    title          = 'Washington Post RSS Fed'
    oldest_article = 7
    max_articles_per_feed = 100
    auto_cleanup   = True

    feeds          = [
        ('Opinions', 'https://feeds.washingtonpost.com/rss/opinions'),
    ]
    
    def get_browser(self):
        return BasicNewsRecipe.get_browser(self, verify_ssl_certificates=False)
    