calibre/recipes/dosisdiarias.recipe
Kovid Goyal 567040ee1e Perform PEP8 compliance checks on the entire codebase
Some bits of PEP 8 are turned off via setup.cfg
2016-07-29 21:25:17 +05:30

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')]