This commit is contained in:
Kovid Goyal 2022-08-01 19:18:03 +05:30
parent c95cf4f9e5
commit 1c49bb603d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ from calibre.web.feeds.news import BasicNewsRecipe
class CACM(BasicNewsRecipe): class CACM(BasicNewsRecipe):
title = "ACM CACM Magazine" title = "ACM CACM Magazine"
description = "Published on day 1 of every month." description = "Published on day 1 of every month."
language = 'en'
oldest_article = 30 oldest_article = 30
max_articles_per_feed = 100 max_articles_per_feed = 100
auto_cleanup = True auto_cleanup = True

View File

@ -7,7 +7,7 @@ class EpochTimes(BasicNewsRecipe):
title = 'The Epoch Times' title = 'The Epoch Times'
__author__ = 'Kovid Goyal' __author__ = 'Kovid Goyal'
description = 'US general news' description = 'US general news'
lang = 'en_US' language = 'en_US'
encoding = 'utf-8' encoding = 'utf-8'
oldest_article = 2 oldest_article = 2
max_articles_per_feed = 10 max_articles_per_feed = 10