mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
23 lines
1.1 KiB
Plaintext
23 lines
1.1 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
import re
|
|
|
|
|
|
class Tablety_pl(BasicNewsRecipe):
|
|
title = u'Tablety.pl'
|
|
__author__ = 'fenuks'
|
|
description = u'Tablety, gry i aplikacje na tablety.'
|
|
masthead_url = 'http://www.tablety.pl/wp-content/themes/kolektyw/img/logo.png'
|
|
cover_url = 'http://www.tablety.pl/wp-content/themes/kolektyw/img/logo.png'
|
|
category = 'IT'
|
|
language = 'pl'
|
|
use_embedded_content = False
|
|
no_stylesheets = True
|
|
oldest_article = 8
|
|
max_articles_per_feed = 100
|
|
preprocess_regexps = [(re.compile(u'<p><strong>Przeczytaj także.*?</a></strong></p>', re.DOTALL), lambda match: ''),
|
|
(re.compile(u'<p><strong>Przeczytaj koniecznie.*?</a></strong></p>', re.DOTALL), lambda match: '')]
|
|
keep_only_tags = [dict(attrs={'class': ['featured-image', 'article-content clearfix']})]
|
|
remove_tags = [dict(attrs={'class': ['comments_icon', 'wp-polls', 'entry-comments',
|
|
'wp-polls-loading', 'ts-fab-wrapper', 'entry-footer', 'social-custom']})]
|
|
feeds = [(u'Najnowsze posty', u'http://www.tablety.pl/feed/')]
|