Cosmos Magazine by yodha8

Merge branch 'master' of https://github.com/yodha8/calibre
This commit is contained in:
Kovid Goyal 2022-05-01 19:31:30 +05:30
commit 2db4d77612
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

21
recipes/cosmos.recipe Normal file
View File

@ -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'),
]