mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Contropiano by michele
This commit is contained in:
parent
4fb414f95b
commit
e9dbc23909
50
recipes/contropiano.recipe
Normal file
50
recipes/contropiano.recipe
Normal file
@ -0,0 +1,50 @@
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
|
||||
class AdvancedUserRecipe(BasicNewsRecipe):
|
||||
title = u'Contropiano'
|
||||
oldest_article = 7
|
||||
max_articles_per_feed = 25
|
||||
language = 'it'
|
||||
__author__ = 'michele'
|
||||
|
||||
remove_javascript = True
|
||||
no_stylesheets = True
|
||||
use_embedded_content = False
|
||||
remove_empty_feeds = True
|
||||
|
||||
keep_only_tags = [
|
||||
dict(name='div', attrs={'class': ['category-archive single']}),
|
||||
dict(name='div', attrs={'class': ['content-post']})
|
||||
]
|
||||
|
||||
remove_tags = [
|
||||
dict(name='span', attrs={'id': ['postviews']}),
|
||||
dict(name='div', attrs={'class': ['social-share']}),
|
||||
dict(name='p', attrs={'class': ['firma-redazione']})
|
||||
]
|
||||
|
||||
remove_tags_after = dict(name='p', attrs={'class': ['firma-redazione']})
|
||||
|
||||
feeds = [
|
||||
(u'Politica',
|
||||
u'http://contropiano.org/news/politica-news/feed'),
|
||||
(u'Internazionale',
|
||||
u'http://contropiano.org/news/internazionale-news/feed'),
|
||||
(u'Aggiornamenti in breve', u'http://contropiano.org/news/aggiornamenti-in-breve/feed'),
|
||||
(u'Economia',
|
||||
u'http://contropiano.org/news/news-economia/feed'),
|
||||
(u'Ambiente',
|
||||
u'http://contropiano.org/news/ambiente-news/feed'),
|
||||
(u'Scienza',
|
||||
u'http://contropiano.org/news/scienza-news/feed'),
|
||||
(u'Cultura',
|
||||
u'http://contropiano.org/news/cultura-news/feed'),
|
||||
(u'Locali', u'http://contropiano.org/regionali/feed'),
|
||||
(u'Lavoro', u'http://contropiano.org/news/lavoro-conflitto-news/feed'),
|
||||
(u'Malapolizia', u'http://contropiano.org/news/malapolizia-news/feed'),
|
||||
(u'Interventi', u'http://contropiano.org/interventi/feed'),
|
||||
(u'Documenti', u'http://contropiano.org/documenti/feed'),
|
||||
(u'Vignette', u'http://contropiano.org/vignette/feed'),
|
||||
(u'Altro',
|
||||
u'http://contropiano.org/altro/feed')
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user