From 50e5481f17bc4d62f3388172e05c580207857493 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 28 Aug 2022 15:15:52 +0530 Subject: [PATCH] Brhat by Vishwas Vasuki Fixes #1987969 [bRhat recipe](https://bugs.launchpad.net/calibre/+bug/1987969) --- recipes/brhat.recipe | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 recipes/brhat.recipe diff --git a/recipes/brhat.recipe b/recipes/brhat.recipe new file mode 100644 index 0000000000..b2f72a7de1 --- /dev/null +++ b/recipes/brhat.recipe @@ -0,0 +1,16 @@ +#!/usr/bin/env python +# vim:fileencoding=utf-8 +from calibre.web.feeds.news import BasicNewsRecipe + + +class Brhat(BasicNewsRecipe): + title = 'Brhat' + __author__ = 'Vishvas Vasuki' + language = 'en_IN' + oldest_article = 365 + max_articles_per_feed = 100 + auto_cleanup = True + + feeds = [ + ('Main', 'https://brhat.in/feed/'), + ]