mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
19 lines
732 B
Plaintext
19 lines
732 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class PurePC(BasicNewsRecipe):
|
|
title = u'PurePC'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
__author__ = 'fenuks'
|
|
description = u'Artykuły, aktualności, sprzęt, forum, chłodzenie, modding, urządzenia mobilne - wszystko w jednym miejscu.'
|
|
category = 'IT'
|
|
language = 'pl'
|
|
cover_url = 'http://www.purepc.pl/themes/new/images/purepc.jpg'
|
|
extra_css = '.wykres_logo {float: left; margin-right: 5px;}'
|
|
no_stylesheets = True
|
|
|
|
keep_only_tags = [dict(name='div', attrs={'class':'node page0'})]
|
|
remove_tags = [dict(name='div', attrs={'class':'article-options'})]
|
|
feeds = [(u'Wiadomo\u015bci', u'http://www.purepc.pl/node/feed')]
|