mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
Fixes #1499844 [Updated recipe for Telam](https://bugs.launchpad.net/calibre/+bug/1499844)
49 lines
2.2 KiB
Plaintext
49 lines
2.2 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2012-2015, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
www.telam.com.ar
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Telam(BasicNewsRecipe):
|
|
title = 'Telam'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'AGENCIA DE NOTICIAS DE LA REPUBLICA ARGENTINA'
|
|
publisher = 'Telam S.E.'
|
|
category = 'news, politics, Argentina'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 200
|
|
no_stylesheets = True
|
|
encoding = 'windows-1252'
|
|
use_embedded_content = False
|
|
language = 'es_AR'
|
|
remove_empty_feeds = True
|
|
auto_cleanup = True
|
|
publication_type = 'newsportal'
|
|
masthead_url = 'http://www.telam.com.ar/img/logo_small.png'
|
|
extra_css = """
|
|
body{font-family: Arial,Helvetica,sans-serif }
|
|
img{margin-bottom: 0.4em; display:block}
|
|
"""
|
|
|
|
conversion_options = {
|
|
'comment' : description
|
|
, 'tags' : category
|
|
, 'publisher' : publisher
|
|
, 'language' : language
|
|
}
|
|
|
|
feeds = [
|
|
(u'Ultimas noticias', u'http://www.telam.com.ar/rss2/ultimasnoticas.xml' )
|
|
,(u'Politica' , u'http://www.telam.com.ar/rss2/politica.xml' )
|
|
,(u'Economia' , u'http://www.telam.com.ar/rss2/economia.xml' )
|
|
,(u'Sociedad' , u'http://www.telam.com.ar/rss2/sociedad.xml' )
|
|
,(u'Policiales' , u'http://www.telam.com.ar/rss2/policiales.xml' )
|
|
,(u'Internacionales' , u'http://www.telam.com.ar/rss2/mundo.xml' )
|
|
,(u'Espectaculos' , u'http://www.telam.com.ar/rss2/espectaculos.xml' )
|
|
,(u'Cultura' , u'http://www.telam.com.ar/rss2/cultura.xml' )
|
|
,(u'Deportes' , u'http://www.telam.com.ar/rss2/deportes.xml' )
|
|
,(u'Opinion' , u'http://www.telam.com.ar/rss2/opinion.xml' )
|
|
]
|