|
|
#1 |
|
Junior Member
![]() Posts: 5
Karma: 10
Join Date: Jan 2012
Device: Kindle4
|
I'm attaching the recipe of an italian newspaper. (www.contropiano.org)
It's the first recipe I do, but I see it's working good, so I wanted to share it with the community for anyone who could be interested. Enjoy. Code:
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')
]
|
|
|
|
![]() |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| updated Italian recipe | faber1971 | Recipes | 0 | 06-02-2012 05:39 AM |
| new Italian recipe - Onda Rock | faber1971 | Recipes | 0 | 02-06-2012 02:58 PM |
| new recipe: Goal.com in Italian | faber1971 | Recipes | 0 | 01-04-2012 08:16 AM |
| Recipe: Il Gazzettino - News from NorthEast Italy - Italian | Pad_sdr | Recipes | 0 | 06-18-2011 07:55 PM |
| iLiad interesting experiment of an Italian newspaper | almanegra | iRex Developer's Corner | 3 | 05-09-2009 02:29 PM |