From 436a02957c6377e51fe89e7fd095e23d5994f185 Mon Sep 17 00:00:00 2001 From: yodha8 <104330897+yodha8@users.noreply.github.com> Date: Thu, 5 May 2022 18:24:56 -0700 Subject: [PATCH] Create recipe for The MIT Press Reader --- recipes/TheMITPressReader.recipe | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 recipes/TheMITPressReader.recipe diff --git a/recipes/TheMITPressReader.recipe b/recipes/TheMITPressReader.recipe new file mode 100644 index 0000000000..7f9b7759d2 --- /dev/null +++ b/recipes/TheMITPressReader.recipe @@ -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/'), + ]