mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
15 lines
619 B
Plaintext
15 lines
619 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
class Kresy(BasicNewsRecipe):
|
|
title = u'Kresy'
|
|
__author__ = 'fenuks'
|
|
description = u'portal społeczności kresowej'
|
|
language = 'pl'
|
|
masthead_url= 'http://www.kresy.pl/public/img/logo.png'
|
|
cover_url= 'http://www.kresy.pl/public/img/logo.png'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
keep_only_tags= [dict(id='artykul')]
|
|
remove_tags= [dict(attrs={'class':['twitter-share-button', 'likefbborder', 'tagi']})]
|
|
feeds = [(u'Wszystkie', u'http://www.kresy.pl/rss')]
|