Create recipe for LiveScience.com

This commit is contained in:
yodha8 2022-05-04 08:41:32 -07:00 committed by GitHub
parent 20da1fbc58
commit 562d2fec96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,15 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe
class LiveScience(BasicNewsRecipe):
title = "Live Science"
description = "For the science geek in everyone! Stories on the latest findings from science journals and institutions. Sourced from livescience.com"
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
feeds = [
('Live Science All Articles', 'https://www.livescience.com/feeds/all'),
]