mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
#!/usr/bin/env python
|
|
|
|
__license__ = 'GPL v3'
|
|
'''
|
|
OSNews.pl
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
import re
|
|
|
|
class OSNewsRecipe(BasicNewsRecipe):
|
|
__author__ = u'Mori & Tomasz D\u0142ugosz'
|
|
language = 'pl'
|
|
|
|
title = u'OSnews.pl'
|
|
publisher = u'OSnews.pl'
|
|
description = u'OSnews.pl jest spo\u0142eczno\u015bciowym serwisem informacyjnym po\u015bwi\u0119conym oprogramowaniu, systemom operacyjnym i \u015bwiatowi IT'
|
|
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
encoding = 'utf-8'
|
|
use_embedded_content = False;
|
|
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
cover_url='http://osnews.pl/wp-content/themes/osnews/img/logo.png'
|
|
extra_css = '''
|
|
.news-heading {font-size:150%}
|
|
.newsinformations li {display:inline;}
|
|
blockquote {border:2px solid #000; padding:5px;}
|
|
'''
|
|
|
|
feeds = [
|
|
(u'OSNews.pl', u'http://feeds.feedburner.com/OSnewspl')
|
|
]
|
|
|
|
keep_only_tags = [
|
|
dict(name = 'a', attrs = {'class' : 'news-heading'}),
|
|
dict(name = 'div', attrs = {'class' : 'newsinformations'}),
|
|
dict(name = 'div', attrs = {'id' : 'news-content'})
|
|
]
|
|
|
|
remove_tags = [
|
|
dict(name = 'div', attrs = {'class' : 'sociable'}),
|
|
dict(name = 'div', attrs = {'class' : 'post_prev'}),
|
|
dict(name = 'div', attrs = {'class' : 'post_next'}),
|
|
dict(name = 'div', attrs = {'class' : 'clr'}),
|
|
dict(name = 'div', attrs = {'class' : 'tw_button'}),
|
|
dict(name = 'div', attrs = {'style' : 'width:56px;height:60px;float:left;margin-right:10px'})
|
|
]
|
|
|
|
preprocess_regexps = [(re.compile(u'</span>Komentarze: \(?[0-9]+\)? ?<span'), lambda match: '</span><span')]
|