calibre/recipes/le_gorafi.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

36 lines
1.1 KiB
Plaintext

from __future__ import unicode_literals
__license__ = 'GPL v3'
__copyright__ = '2013, Malah <malah at neuf dot fr>'
'''
Le GORAFI.fr
'''
__author__ = '2013, Malah <malah at neuf dot fr>'
from calibre.web.feeds.news import BasicNewsRecipe
class legorafi(BasicNewsRecipe):
title = u'Le GORAFI.fr'
__author__ = 'Malah'
description = u'Depuis 1826, toute l\'information de sources contradictoires'
oldest_article = 7
language = 'fr'
max_articles_per_feed = 100
use_embedded_content = False
no_stylesheets = True
keep_only_tags = [
dict(name='div', attrs={'class': 'entry-content'}),
dict(name='h3', attrs={'id': 'comments-title'}),
]
remove_tags = [
dict(name='div', attrs={'id': 'soshake-sharebox'}),
dict(name='div', attrs={'class': 'social-ring'}),
dict(name='div', attrs={'class': 'entry-utility'}),
dict(name='div', attrs={'id': 'respond'}),
]
masthead_url = u'http://web.gweno.free.fr/img/logositeter.png'
couverture_url = u'http://www.legorafi.fr/wp-content/uploads/2013/02/iconegorafi.png'
feeds = [
(u'Articles', u'http://www.legorafi.fr/feed/'),
]