mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-12-02 11:15:04 -05:00
20 lines
1005 B
Plaintext
20 lines
1005 B
Plaintext
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
class Computerworld_pl(BasicNewsRecipe):
|
|
title = u'Computerworld.pl'
|
|
__author__ = 'fenuks'
|
|
description = u'Serwis o IT w przemyśle, finansach, handlu, administracji oraz rynku IT i telekomunikacyjnym - wiadomości, opinie, analizy, porady prawne'
|
|
category = 'IT'
|
|
language = 'pl'
|
|
masthead_url = 'http://g1.computerworld.pl/cw/beta_gfx/cw2.gif'
|
|
cover_url = 'http://g1.computerworld.pl/cw/beta_gfx/cw2.gif'
|
|
no_stylesheets = True
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
keep_only_tags = [dict(attrs={'class':['tyt_news', 'prawo', 'autor', 'tresc']})]
|
|
remove_tags_after = dict(name='div', attrs={'class':'rMobi'})
|
|
remove_tags = [dict(name='div', attrs={'class':['nnav', 'rMobi']}), dict(name='table', attrs={'class':'ramka_slx'})]
|
|
feeds = [(u'Wiadomo\u015bci', u'http://rssout.idg.pl/cw/news_iso.xml')]
|
|
|