mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
19 lines
654 B
Plaintext
19 lines
654 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1373969939(BasicNewsRecipe):
|
|
title = u'Il Foglio - Editoriali'
|
|
oldest_article = 1
|
|
max_articles_per_feed = 10
|
|
auto_cleanup = False
|
|
keep_only_tags = [
|
|
dict(name='div', attrs={'class': 'sec_item'})
|
|
]
|
|
feeds = [(u'Il Foglio - Editoriali',
|
|
u'http://feed43.com/8814237344800115.xml')]
|
|
no_stylesheets = True
|
|
__author__ = 'faber1971'
|
|
description = 'Leading articles from an Italian newspaper - v1.00 (16 July, 2013)'
|
|
language = 'it'
|
|
masthead_url = 'http://www.ilfoglio.it/media/img/interface/logo_testata_small.gif'
|