diff --git a/recipes/hinduism_today.recipe b/recipes/hinduism_today.recipe new file mode 100644 index 0000000000..e77b403113 --- /dev/null +++ b/recipes/hinduism_today.recipe @@ -0,0 +1,15 @@ +#!/usr/bin/env python +# vim:fileencoding=utf-8 +from calibre.web.feeds.news import BasicNewsRecipe + + +class HinduismToday(BasicNewsRecipe): + title = 'Hinduism Today' + __author__ = 'Vishvas Vasuki' + language = 'en_IN' + oldest_article = 95 + max_articles_per_feed = 100 + auto_cleanup = True + feeds = [ + ('Main', 'https://www.hinduismtoday.com/feed/'), + ]