mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
52 lines
2.2 KiB
Plaintext
52 lines
2.2 KiB
Plaintext
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
elmundo.es
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class ElMundo(BasicNewsRecipe):
|
|
title = 'El Mundo'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'News from Spain'
|
|
publisher = 'El Mundo'
|
|
category = 'news, politics, Spain'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
encoding = 'iso8859_15'
|
|
language = 'es'
|
|
|
|
conversion_options = {
|
|
'comments' : description
|
|
,'tags' : category
|
|
,'language' : language
|
|
,'publisher' : publisher
|
|
}
|
|
|
|
keep_only_tags = [dict(name='div', attrs={'class':'noticia'})]
|
|
remove_tags_before = dict(attrs={'class':['titular','antetitulo'] })
|
|
remove_tags_after = dict(name='div' , attrs={'id':['desarrollo_noticia','tamano']})
|
|
|
|
remove_tags = [
|
|
dict(name='div', attrs={'class':['herramientas','publicidad_google']})
|
|
,dict(name='div', attrs={'id':'modulo_multimedia' })
|
|
,dict(name='ul', attrs={'class':'herramientas' })
|
|
,dict(name=['object','link'])
|
|
]
|
|
|
|
feeds = [
|
|
(u'Portada' , u'http://rss.elmundo.es/rss/descarga.htm?data2=4' )
|
|
,(u'Deportes' , u'http://rss.elmundo.es/rss/descarga.htm?data2=14')
|
|
,(u'Economia' , u'http://rss.elmundo.es/rss/descarga.htm?data2=7' )
|
|
,(u'Espana' , u'http://rss.elmundo.es/rss/descarga.htm?data2=8' )
|
|
,(u'Internacional' , u'http://rss.elmundo.es/rss/descarga.htm?data2=9' )
|
|
,(u'Cultura' , u'http://rss.elmundo.es/rss/descarga.htm?data2=6' )
|
|
,(u'Ciencia/Ecologia', u'http://rss.elmundo.es/rss/descarga.htm?data2=5' )
|
|
,(u'Comunicacion' , u'http://rss.elmundo.es/rss/descarga.htm?data2=26')
|
|
,(u'Television' , u'http://rss.elmundo.es/rss/descarga.htm?data2=76')
|
|
]
|