mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
22 lines
589 B
Plaintext
22 lines
589 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class NewYorkTimesBookReview(BasicNewsRecipe):
|
|
title = u'New York Times Book Review'
|
|
language = 'en'
|
|
__author__ = 'Krittika Goyal'
|
|
oldest_article = 8 #days
|
|
max_articles_per_feed = 1000
|
|
#recursions = 2
|
|
#encoding = 'latin1'
|
|
use_embedded_content = False
|
|
|
|
no_stylesheets = True
|
|
auto_cleanup = True
|
|
|
|
|
|
feeds = [
|
|
('New York Times Sunday Book Review',
|
|
'http://feeds.nytimes.com/nyt/rss/SundayBookReview'),
|
|
]
|
|
|