mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
18 lines
602 B
Plaintext
18 lines
602 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')]
|