mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
54 lines
1.5 KiB
Python
54 lines
1.5 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = u'2011'
|
|
'''
|
|
socialdiva.ro
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class SocialDiva(BasicNewsRecipe):
|
|
title = u'Social Diva'
|
|
__author__ = u'Silviu Cotoara'
|
|
description = u'When in doubt, wear red'
|
|
publisher = 'Social Diva'
|
|
oldest_article = 5
|
|
language = 'ro'
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
category = 'Ziare,Reviste,Femei'
|
|
encoding = 'utf-8'
|
|
cover_url = 'http://www.socialdiva.ro/images/logo.png'
|
|
|
|
conversion_options = {
|
|
'comments': description, 'tags': category, 'language': language, 'publisher': publisher
|
|
}
|
|
|
|
keep_only_tags = [
|
|
dict(name='div', attrs={'class': 'col-alpha mt5 content_articol'}),
|
|
dict(name='div', attrs={'class': 'mt5'})
|
|
]
|
|
|
|
remove_tags = [
|
|
dict(name='a', attrs={'class': ['comments float-left scroll mt5']}),
|
|
dict(name='a', attrs={'class': ['comments float-left scroll']}),
|
|
dict(name='div', attrs={
|
|
'class': ['rating-container relative float-left']}),
|
|
dict(name='div', attrs={'class': ['float-right social_articol']})
|
|
]
|
|
|
|
remove_tags_after = [
|
|
dict(name='a', attrs={'class': ['comments float-left scroll mt5']})
|
|
]
|
|
|
|
feeds = [
|
|
(u'Feeds', u'http://www.socialdiva.ro/rss.html')
|
|
]
|
|
|
|
def preprocess_html(self, soup):
|
|
return self.adeify_images(soup)
|