mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
20 lines
849 B
Plaintext
20 lines
849 B
Plaintext
__version__ = 'v1.0'
|
|
__date__ = '7, April 2012'
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1332847053(BasicNewsRecipe):
|
|
title = u'Editoriali'
|
|
__author__ = 'faber1971'
|
|
description = 'Leading articles on Italy by the best Italian editorials'
|
|
language = 'it'
|
|
|
|
oldest_article = 1
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
conversion_options = {'linearize_tables': True}
|
|
masthead_url = 'http://folkbulletin.folkest.com/wp-content/uploads/editoriale1.jpg'
|
|
feeds = [(u'Micromega', u'http://temi.repubblica.it/micromega-online/feed/'), (u'Corriere della Sera', u'http://xml.corriereobjects.it/rss/editoriali.xml'),
|
|
(u'La Stampa', u'http://www.lastampa.it/cmstp/rubriche/oggetti/rss.asp?ID_blog=25'), (u"Italia dall'estero", u'http://italiadallestero.info/feed')]
|