mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
New recipes: El Confidencial (es) and elEconomista.es (es)
This commit is contained in:
parent
952dbdf508
commit
8fba5fa330
30
recipes/el_confidencial.recipe
Normal file
30
recipes/el_confidencial.recipe
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# vim:fileencoding=utf-8
|
||||||
|
__license__ = 'GPL v3'
|
||||||
|
__author__ = 'hmeza'
|
||||||
|
__description__ = 'El Confidencial - El diario de los lectores influyentes'
|
||||||
|
__version__ = 'v1.00.000'
|
||||||
|
__date__ = '27, April 2023'
|
||||||
|
'''
|
||||||
|
https://www.elconfidencial.com/
|
||||||
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
|
||||||
|
|
||||||
|
class ElConfidencial(BasicNewsRecipe):
|
||||||
|
title = u'El Confidencial'
|
||||||
|
oldest_article = 7.0
|
||||||
|
__author__ = 'hmeza'
|
||||||
|
description = 'El Confidencial - El diario de los lectores influyentes'
|
||||||
|
timefmt = ' [%d %b, %Y]'
|
||||||
|
publication_type = 'newspaper'
|
||||||
|
language = 'es'
|
||||||
|
encoding = 'utf-8'
|
||||||
|
no_stylesheets = True
|
||||||
|
remove_javascript = True
|
||||||
|
|
||||||
|
feeds = [
|
||||||
|
(u'España', u'https://www.elconfidencial.com/rss/'),
|
||||||
|
]
|
35
recipes/el_economista.recipe
Normal file
35
recipes/el_economista.recipe
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# vim:fileencoding=utf-8
|
||||||
|
__license__ = 'GPL v3'
|
||||||
|
__author__ = 'hmeza'
|
||||||
|
__description__ = 'El Economista - El diario de los lectores influyentes'
|
||||||
|
__version__ = 'v1.00.000'
|
||||||
|
__date__ = '27, April 2023'
|
||||||
|
'''
|
||||||
|
https://www.elconfidencial.com/
|
||||||
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
from calibre.web.feeds.news import BasicNewsRecipe
|
||||||
|
|
||||||
|
|
||||||
|
class ElConfidencial(BasicNewsRecipe):
|
||||||
|
title = u'elEconomista.es'
|
||||||
|
oldest_article = 7.0
|
||||||
|
__author__ = 'hmeza'
|
||||||
|
description = 'elEconomista.es'
|
||||||
|
timefmt = ' [%d %b, %Y]'
|
||||||
|
publication_type = 'newspaper'
|
||||||
|
language = 'es'
|
||||||
|
encoding = 'utf-8'
|
||||||
|
no_stylesheets = True
|
||||||
|
remove_javascript = True
|
||||||
|
|
||||||
|
feeds = [
|
||||||
|
(u'elEconomista economía', u'https://www.eleconomista.es/rss/rss-economia.php'),
|
||||||
|
(u'elEconomista gestion', u'https://www.eleconomista.es/rss/rss-gestion.php'),
|
||||||
|
(u'elEconomista tecnología', u'https://www.eleconomista.es/rss/rss-category.php?category=tecnologia'),
|
||||||
|
(u'Selección elEconomista', u'https://www.eleconomista.es/rss/rss-seleccion-ee.php'),
|
||||||
|
(u'Mercados', u'https://www.eleconomista.es/rss/rss-mercados.php'),
|
||||||
|
(u'Mercados', u'https://www.eleconomista.es/rss/rss-mercados.php'),
|
||||||
|
]
|
Loading…
x
Reference in New Issue
Block a user