mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
15 lines
754 B
Plaintext
15 lines
754 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Tablety_pl(BasicNewsRecipe):
|
|
title = u'Tablety.pl'
|
|
__author__ = 'fenuks'
|
|
description = u'tablety.pl - latest tablet news'
|
|
cover_url = 'http://www.tablety.pl/wp-content/themes/kolektyw/img/logo.png'
|
|
category = 'IT'
|
|
language = 'pl'
|
|
oldest_article = 8
|
|
max_articles_per_feed = 100
|
|
keep_only_tags=[dict(name='header', attrs={'class':'entry-header'}), dict(name='div', attrs={'class':'entry-content clearfix'})]
|
|
remove_tags=[dict(name='div', attrs={'class':'snap_nopreview sharing robots-nocontent'}), dict(name='span', attrs={'class':'dsq-postid'})]
|
|
feeds = [(u'Najnowsze posty', u'http://www.tablety.pl/feed/')]
|