mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
19 lines
1.1 KiB
Plaintext
19 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.pl - latest tablet news'
|
|
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=True
|
|
oldest_article = 8
|
|
max_articles_per_feed = 100
|
|
preprocess_regexps = [(re.compile(ur'<p><strong>Przeczytaj także.*?</a></strong></p>', re.DOTALL), lambda match: ''), (re.compile(ur'<p><strong>Przeczytaj koniecznie.*?</a></strong></p>', re.DOTALL), lambda match: '')]
|
|
#remove_tags_before=dict(name="h1", attrs={'class':'entry-title'})
|
|
#remove_tags_after=dict(name="footer", attrs={'class':'entry-footer clearfix'})
|
|
#remove_tags=[dict(name='footer', attrs={'class':'entry-footer clearfix'}), dict(name='div', attrs={'class':'entry-comment-counter'})]
|
|
feeds = [(u'Najnowsze posty', u'http://www.tablety.pl/feed/')]
|