This commit is contained in:
Kovid Goyal
2022-05-02 07:20:21 +05:30
parent 90c9dff2dc
commit 62007f323b
2 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ import datetime
class IEEESpectrumMagazine(BasicNewsRecipe):
title = "IEEE Spectrum Magazine"
lang = 'en'
language = 'en'
__author__ = 'yodha8'
description = "Published on day 1 of every month."
oldest_article = 120 # Mag gathers articles published older than a month online. So we scan for 4 months in the feed.
+6 -3
View File
@@ -3,13 +3,16 @@
from calibre.web.feeds.news import BasicNewsRecipe
class LWNFree(BasicNewsRecipe):
title = "LWN Linux Weekly News (Free)"
title = "LWN Linux Weekly News (Free)"
language = 'en'
__author__ = 'yodha8'
description = "LWN is published every Thursday. Recipe skips current week's articles (subscriber-only) and pulls free articles from previous week."
oldest_article = 14 # So we can grab previous week articles.
max_articles_per_feed = 100
auto_cleanup = True
auto_cleanup = True
feeds = [
feeds = [
('LWN Articles', 'https://lwn.net/headlines/Features'),
]