mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
46 lines
1.6 KiB
Python
46 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = u'2011, Silviu Cotoar\u0103'
|
|
'''
|
|
ecuisine.ro
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class EcuisineRo(BasicNewsRecipe):
|
|
title = u'eCuisine'
|
|
__author__ = u'Silviu Cotoar\u0103'
|
|
description = u'Reinventeaz\u0103 pl\u0103cerea de a g\u0103ti'
|
|
publisher = 'eCuisine'
|
|
oldest_article = 50
|
|
language = 'ro'
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
category = 'Ziare,Retete,Bucatarie'
|
|
encoding = 'utf-8'
|
|
cover_url = 'http://www.ecuisine.ro/sites/all/themes/ecuisine/images/logo.gif'
|
|
|
|
conversion_options = {
|
|
'comments': description, 'tags': category, 'language': language, 'publisher': publisher
|
|
}
|
|
|
|
keep_only_tags = [
|
|
dict(name='h1', attrs={'id': 'page-title'}
|
|
), dict(name='div', attrs={'class': 'field-item even'})
|
|
]
|
|
|
|
remove_tags = [
|
|
dict(name='ul', attrs={'id': ['recipe-tabs']}), dict(name='div', attrs={'class': ['recipe-body-rating clearfix']}), dict(name='div', attrs={'class': ['recipe-body-flags']}), dict(name='div', attrs={'id': ['tweetmeme_button']}), dict(name='div', attrs={ 'class': ['fbshare']}), dict(name='a', attrs={'class': ['button-rounded']}), dict(name='div', attrs={'class': ['recipe-body-related']}), dict(name='div', attrs={'class': ['fbshare']}), dict(name='div', attrs={'class': ['link-wrapper']}) # noqa
|
|
]
|
|
|
|
feeds = [
|
|
(u'Feeds', u'http://www.ecuisine.ro/rss')
|
|
]
|
|
|
|
def preprocess_html(self, soup):
|
|
return self.adeify_images(soup)
|