mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
21 lines
1.0 KiB
Plaintext
21 lines
1.0 KiB
Plaintext
import re
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class NaTemat(BasicNewsRecipe):
|
|
title = u'NaTemat.pl'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
__author__ = 'fenuks'
|
|
description = u'informacje, komentarze, opinie'
|
|
category = 'news'
|
|
language = 'pl'
|
|
preprocess_regexps = [(re.compile(u'Czytaj też\\:.*?</a>', re.IGNORECASE), lambda m: ''), (re.compile(u'Zobacz też\\:.*?</a>', re.IGNORECASE), lambda m: ''), # noqa
|
|
(re.compile(u'Czytaj więcej\\:.*?</a>', re.IGNORECASE), lambda m: ''), (re.compile(u'Czytaj również\\:.*?</a>', re.IGNORECASE), lambda m: '')] # noqa
|
|
cover_url = 'http://blog.plona.pl/wp-content/uploads/2012/05/natemat.png'
|
|
no_stylesheets = True
|
|
keep_only_tags = [dict(id='main')]
|
|
remove_tags = [dict(attrs={'class': ['button', 'block-inside style_default', 'article-related',
|
|
'user-header', 'links']}), dict(name='img', attrs={'class': 'indent'})]
|
|
feeds = [(u'Artyku\u0142y', u'http://natemat.pl/rss/wszystkie')]
|