mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
90c9dff2dc
commit
62007f323b
@ -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.
|
||||
|
@ -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'),
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user