mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-10-19 13:00:29 -04:00
16 lines
436 B
Python
16 lines
436 B
Python
#!/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
|