mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
16 lines
556 B
Plaintext
16 lines
556 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class AdvancedUserRecipe1271446252(BasicNewsRecipe):
|
|
title = u'CanardPC'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
language = 'fr'
|
|
__author__ = 'zorgluf'
|
|
|
|
feeds = [(u'CanardPC', u'http://www.canardpc.com/feed.php')]
|
|
remove_tags_after = dict(id='auteur_news')
|
|
remove_tags_before = dict(id='fil_ariane')
|
|
no_stylesheets = True
|
|
remove_tags = [dict(name='a', attrs={'class':'news_tags'}),
|
|
dict(name='div', attrs={'id':'fil_ariane'})]
|