mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-01-07 20:50:20 -05:00
61 lines
2.2 KiB
Python
61 lines
2.2 KiB
Python
#!/usr/bin/env python
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2008-2009, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
laprensa.com.ar
|
|
'''
|
|
import urllib
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class LaPrensa(BasicNewsRecipe):
|
|
title = 'La Prensa'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'Informacion Libre las 24 horas'
|
|
publisher = 'La Prensa'
|
|
category = 'news, politics, Argentina'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
encoding = 'cp1252'
|
|
cover_url = 'http://www.laprensa.com.ar/imgs/logo.gif'
|
|
remove_javascript = True
|
|
|
|
html2lrf_options = [
|
|
'--comment', description
|
|
, '--category', category
|
|
, '--publisher', publisher
|
|
]
|
|
|
|
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"'
|
|
|
|
feeds = [
|
|
(u'Politica' , u'http://www.laprensa.com.ar/Rss.aspx?Rss=4' )
|
|
,(u'Economia' , u'http://www.laprensa.com.ar/Rss.aspx?Rss=5' )
|
|
,(u'Opinion' , u'http://www.laprensa.com.ar/Rss.aspx?Rss=6' )
|
|
,(u'El Mundo' , u'http://www.laprensa.com.ar/Rss.aspx?Rss=7' )
|
|
,(u'Actualidad' , u'http://www.laprensa.com.ar/Rss.aspx?Rss=8' )
|
|
,(u'Deportes' , u'http://www.laprensa.com.ar/Rss.aspx?Rss=9' )
|
|
,(u'Espectaculos', u'http://www.laprensa.com.ar/Rss.aspx?Rss=10')
|
|
]
|
|
|
|
def print_version(self, url):
|
|
return url.replace('.note.aspx','.NotePrint.note.aspx')
|
|
|
|
def get_article_url(self, article):
|
|
raw = article.get('link', None).encode('utf8')
|
|
final = urllib.quote(raw,':/')
|
|
return final
|
|
|
|
def preprocess_html(self, soup):
|
|
del soup.body['onload']
|
|
mtag = '<meta http-equiv="Content-Language" content="es-AR"/>'
|
|
soup.head.insert(0,mtag)
|
|
for item in soup.findAll(style=True):
|
|
del item['style']
|
|
return soup
|
|
|
|
language = 'es'
|