Create recipe for The MIT Press Reader

This commit is contained in:
yodha8 2022-05-05 18:24:56 -07:00 committed by GitHub
parent 562d2fec96
commit 436a02957c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,15 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe
class TheMITPressReader(BasicNewsRecipe):
title = "The MIT Press Reader"
description = "Thought-provoking excerpts, interviews and essays backed by academic rigor written by MIT Press authors. This recipe pulls articles from the past 7 days."
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
feeds = [
('The MIT Press Reader', 'https://thereader.mitpress.mit.edu/feed/'),
]