mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
55 lines
2.5 KiB
Plaintext
55 lines
2.5 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2009-2010, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
lasegunda.com
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class LaSegunda(BasicNewsRecipe):
|
|
title = 'La Segunda'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'El sitio de noticias online de Chile'
|
|
publisher = 'La Segunda'
|
|
category = 'news, politics, Chile'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
encoding = 'cp1252'
|
|
masthead_url = 'http://www.lasegunda.com/imagenes/logotipo_lasegunda_Oli.gif'
|
|
remove_empty_feeds = True
|
|
language = 'es_CL'
|
|
extra_css = ' .titulonegritastop{font-size: xx-large; font-weight: bold} '
|
|
|
|
conversion_options = {
|
|
'comment' : description
|
|
, 'tags' : category
|
|
, 'publisher' : publisher
|
|
, 'language' : language
|
|
, 'linearize_tables' : True
|
|
}
|
|
|
|
remove_tags_before = dict(attrs={'class':'titulonegritastop'})
|
|
remove_tags = [dict(name='img')]
|
|
remove_attributes = ['width','height']
|
|
|
|
|
|
feeds = [
|
|
(u'Noticias de ultima hora', u'http://www.lasegunda.com/rss20/index.asp?canal=0')
|
|
,(u'Politica' , u'http://www.lasegunda.com/rss20/index.asp?canal=21')
|
|
,(u'Cronica' , u'http://www.lasegunda.com/rss20/index.asp?canal=20')
|
|
,(u'Internacional' , u'http://www.lasegunda.com/rss20/index.asp?canal=23')
|
|
,(u'Deportes' , u'http://www.lasegunda.com/rss20/index.asp?canal=24')
|
|
,(u'Epectaculos/Cultura' , u'http://www.lasegunda.com/rss20/index.asp?canal=25')
|
|
,(u'Educacion' , u'http://www.lasegunda.com/rss20/index.asp?canal=26')
|
|
,(u'Ciencia y Tecnologia' , u'http://www.lasegunda.com/rss20/index.asp?canal=27')
|
|
,(u'Solidaridad' , u'http://www.lasegunda.com/rss20/index.asp?canal=28')
|
|
,(u'Buena Vida' , u'http://www.lasegunda.com/rss20/index.asp?canal=32')
|
|
]
|
|
|
|
def print_version(self, url):
|
|
rest, sep, article_id = url.partition('index.asp?idnoticia=')
|
|
return u'http://www.lasegunda.com/edicionOnline/include/secciones/_detalle_impresion.asp?idnoticia=' + article_id
|
|
|