mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
30 lines
854 B
Plaintext
30 lines
854 B
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2009, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
http://www.dosisdiarias.com
|
|
'''
|
|
|
|
from calibre.web.feeds.recipes import BasicNewsRecipe
|
|
|
|
|
|
class DosisDiarias(BasicNewsRecipe):
|
|
title = 'Alberto Montt en dosis diarias'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'Mire sin compromiso y si le gusta vuelva'
|
|
oldest_article = 5
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = True
|
|
encoding = 'utf-8'
|
|
publisher = 'Alberto Montt'
|
|
category = 'comic, blog, spanish'
|
|
language = 'es'
|
|
|
|
conversion_options = {
|
|
'comments': description, 'tags': category, 'language': language, 'publisher': publisher
|
|
}
|
|
|
|
remove_tags = [dict(name='div', attrs={'class': 'feedflare'})]
|
|
|
|
feeds = [(u'Dosis diaria', u'http://feeds.feedburner.com/montt')]
|