mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
66 lines
1.9 KiB
Python
66 lines
1.9 KiB
Python
#!/usr/bin/env python
|
|
##
|
|
# Last Edited: 2018-02-13 Carlos Alves <carlosalves90@gmail.com>
|
|
##
|
|
|
|
__license__ = 'GPL v3'
|
|
__author__ = '2010, Yuri Alvarez<me at yurialvarez.com>'
|
|
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
|
|
|
'''
|
|
elobservador.com.uy
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Noticias(BasicNewsRecipe):
|
|
title = 'El Observador'
|
|
__author__ = 'yrvn'
|
|
description = 'Noticias desde Uruguay'
|
|
tags = 'news, sports, entretainment'
|
|
language = 'es_UY'
|
|
timefmt = '[%a, %d %b, %Y]'
|
|
use_embedded_content = False
|
|
recursion = 5
|
|
encoding = 'utf8'
|
|
remove_javascript = True
|
|
no_stylesheets = True
|
|
|
|
oldest_article = 2
|
|
max_articles_per_feed = 100
|
|
keep_only_tags = [
|
|
dict(name='h1', attrs={'class': 'detail-title newDetailTextChange'}),
|
|
dict(name='div', attrs={'class': 'cuerpo air newDetailTextChange'})
|
|
]
|
|
remove_tags = [
|
|
dict(name='div', attrs={
|
|
'class': ['fecha', 'copyright', 'story_right']}),
|
|
dict(name='div', attrs={'class': ['photo', 'social']}),
|
|
dict(name='div', attrs={'id': 'widget'}),
|
|
dict(name=['object', 'link'])
|
|
]
|
|
|
|
remove_attributes = ['width', 'height', 'style', 'font', 'color']
|
|
|
|
extra_css = '''
|
|
h1{font-family: Georgia,"Times New Roman",Times,serif}
|
|
h3{font-family: Georgia,"Times New Roman",Times,serif}
|
|
h2{font-family: Georgia,"Times New Roman",Times,serif}
|
|
p{font-family: Verdana,Arial,Helvetica,sans-serif}
|
|
body{font-family: Verdana,Arial,Helvetica,sans-serif}
|
|
img{margin-bottom: 0.4em; display:block;}
|
|
'''
|
|
|
|
feeds = [
|
|
(u'Portada', u'http://www.elobservador.com.uy/rss/home.xml'),
|
|
]
|
|
|
|
def get_cover_url(self):
|
|
return None
|
|
|
|
def preprocess_html(self, soup):
|
|
for item in soup.findAll(style=True):
|
|
del item['style']
|
|
return soup
|