I figured it out. The Washington Post recipe is based off the same rss feeds that I was referring to. All I had to do was replace it with my own rss links and everything works great.
I also figured using this code helps out with other recipes that are getting certificate errors.
def get_browser(self):
return BasicNewsRecipe.get_browser(
self, verify_ssl_certificates=False, user_agent='Mozilla/5.0 (Windows NT 10.0; rv:128.0) Gecko/20100101 Firefox/128.0')
Thanks!
|