mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
Fixes #1909331 [Add recipe for eldiario.es](https://bugs.launchpad.net/calibre/+bug/1909331)
22 lines
539 B
Python
22 lines
539 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class ElDiario(BasicNewsRecipe):
|
|
title = u'elDiario.es'
|
|
oldest_article = 7.0
|
|
__author__ = 'Dirk Gómez'
|
|
description = 'elDiario.es - Noticias a pesar de todo'
|
|
timefmt = ' [%d %b, %Y]'
|
|
publication_type = 'newspaper'
|
|
language = 'es'
|
|
encoding = 'utf-8'
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
|
|
feeds = [
|
|
(u'Últimas Noticias de eldiario.es', u'https://www.eldiario.es/rss/'),
|
|
]
|