calibre/recipes/parisreview.recipe
Kovid Goyal eaed84a0a6
pep8
2017-08-15 09:42:23 +05:30

27 lines
923 B
Plaintext

from calibre.web.feeds.news import BasicNewsRecipe
class ParisReview(BasicNewsRecipe):
title = 'The Paris Review Blog'
__author__ = 'fenuks'
description = u'The Paris Review is a literary magazine featuring original writing, art, and in-depth interviews with famous writers.'
# cover_url = ''
category = 'culture'
language = 'en'
encoding = 'utf-8'
oldest_article = 8
max_articles_per_feed = 100
no_stylesheets = True
remove_empty_feeds = True
ignore_duplicate_articles = {'title', 'url'}
remove_javascript = True
use_embedded_content = True
# extra_css = ''
# preprocess_regexps = []
# remove_attributes = ['style',]
# keep_only_tags = []
remove_tags = []
# remove_tags_before = dict()
remove_tags_after = dict()
feeds = [('Posts', 'http://feeds.feedburner.com/TheParisReviewBlog')]