mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-24 11:25:13 +01:00
17 lines
602 B
Text
17 lines
602 B
Text
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')]
|