diff --git a/recipes/cosmos.recipe b/recipes/cosmos.recipe new file mode 100644 index 0000000000..b973c027bd --- /dev/null +++ b/recipes/cosmos.recipe @@ -0,0 +1,21 @@ +#!/usr/bin/env python +# vim:fileencoding=utf-8 + +from calibre.web.feeds.news import BasicNewsRecipe + + +class CosmosMagazine(BasicNewsRecipe): + title = "Cosmos Magazine" + description = ( + "Cosmos is a quarterly science magazine with 4 editions a year (Mar, Jun, Sep, Dec)." + "It is produced by The Royal Institution of Australia Inc (RiAus)." + ) + language = 'en_AU' + __author__ = 'yodha8' + oldest_article = 90 + max_articles_per_feed = 100 + auto_cleanup = True + + feeds = [ + ('Cosmos', 'https://cosmosmagazine.com/feed'), + ]