mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
28 lines
1.3 KiB
Plaintext
28 lines
1.3 KiB
Plaintext
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
|
|
import re
|
|
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
|
|
remove_attributes = ['style',]
|
|
use_embedded_content = False
|
|
preprocess_regexps = [(re.compile(u'Zobacz również:', re.IGNORECASE), lambda m: ''), (re.compile(ur'[*]+reklama[*]+', re.IGNORECASE), lambda m: ''),]
|
|
keep_only_tags = [dict(id=['article-default-body'])]
|
|
remove_tags = [dict(attrs={'class':['share_tools nocontent', 'rec']}), dict(id=['topComment', 'bottom_tools'])]
|
|
|
|
feeds = [(u'Wiadomo\u015bci', u'http://rssout.idg.pl/cw/news_iso.xml')]
|
|
|
|
def skip_ad_pages(self, soup):
|
|
if soup.title.string.lower() == 'advertisement':
|
|
tag = soup.find(name='a')
|
|
if tag:
|
|
new_soup = self.index_to_soup(tag['href'], raw=True)
|
|
return new_soup |