mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
16 lines
703 B
Plaintext
16 lines
703 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class naczytniki(BasicNewsRecipe):
|
|
title = u'naczytniki.pl'
|
|
__author__ = 'fenuks'
|
|
cover_url = 'http://naczytniki.pl/wp-content/uploads/2010/08/logo_nc28.png'
|
|
language = 'pl'
|
|
description ='everything about e-readers'
|
|
category='readers'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
remove_tags_after= dict(name='div', attrs={'class':'sociable'})
|
|
keep_only_tags=[dict(name='div', attrs={'class':'post'})]
|
|
remove_tags=[dict(name='span', attrs={'class':'comments'}), dict(name='div', attrs={'class':'sociable'})]
|
|
feeds = [(u'Wpisy', u'http://naczytniki.pl/?feed=rss2')]
|