This commit is contained in:
Kovid Goyal 2022-05-02 07:20:21 +05:30
parent 90c9dff2dc
commit 62007f323b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 7 additions and 4 deletions

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.

View File

@ -3,8 +3,11 @@
from calibre.web.feeds.news import BasicNewsRecipe
class LWNFree(BasicNewsRecipe):
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