mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2010-2012, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
abc.com.py
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class ABC_py(BasicNewsRecipe):
|
|
title = 'ABC Color'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'Noticias de Paraguay y el resto del mundo'
|
|
publisher = 'ABC'
|
|
category = 'news, politics, Paraguay'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 200
|
|
no_stylesheets = True
|
|
encoding = 'utf8'
|
|
use_embedded_content = False
|
|
language = 'es_PY'
|
|
remove_empty_feeds = True
|
|
masthead_url = 'http://www.abc.com.py/plantillas/img/abc-logo.png'
|
|
publication_type = 'newspaper'
|
|
extra_css = """
|
|
body{font-family: UnitSlabProMedium,"Times New Roman",serif }
|
|
img{margin-bottom: 0.4em; display: block;}
|
|
"""
|
|
|
|
conversion_options = {
|
|
'comment': description, 'tags': category, 'publisher': publisher, 'language': language
|
|
}
|
|
|
|
remove_tags = [
|
|
dict(name=['form', 'iframe', 'embed',
|
|
'object', 'link', 'base', 'table']),
|
|
dict(attrs={'class': ['es-carousel-wrapper']}),
|
|
dict(attrs={'id': ['tools', 'article-banner-1']})
|
|
]
|
|
keep_only_tags = [dict(attrs={'id': 'article'})]
|
|
|
|
feeds = [
|
|
|
|
(u'Ultimo momento', u'http://www.abc.com.py/rss.xml'),
|
|
(u'Nacionales', u'http://www.abc.com.py/nacionales/rss.xml'),
|
|
(u'Mundo', u'http://www.abc.com.py/internacionales/rss.xml'),
|
|
(u'Deportes', u'http://www.abc.com.py/deportes/rss.xml'),
|
|
(u'Espectaculos', u'http://www.abc.com.py/espectaculos/rss.xml'),
|
|
(u'TecnoCiencia', u'http://www.abc.com.py/ciencia/rss.xml')
|
|
]
|