From 8107c02f82d15ef289fe4593d8bbe4f205e32155 Mon Sep 17 00:00:00 2001 From: thekabistro Date: Sun, 10 Aug 2025 13:22:21 -0400 Subject: [PATCH] Add stratechery recipe --- recipes/stratechery.recipe | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 recipes/stratechery.recipe diff --git a/recipes/stratechery.recipe b/recipes/stratechery.recipe new file mode 100644 index 0000000000..779be0b4f1 --- /dev/null +++ b/recipes/stratechery.recipe @@ -0,0 +1,14 @@ +#!/usr/bin/env python + +from calibre.web.feeds.news import BasicNewsRecipe + +class Stratechery(BasicNewsRecipe): + title = 'Stratechery' + language = 'en' + __author__ = 'Ben Thompson' + oldest_article = 7 + max_articles_per_feed = 100 + no_stylesheets = True + feeds = [('Stratechery', 'https://stratechery.com/feed/')] + ignore_duplicate_articles = {'url'} + resolve_internal_links = True \ No newline at end of file