mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
30 lines
2.5 KiB
Plaintext
30 lines
2.5 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
class Polska_times(BasicNewsRecipe):
|
|
title = u'Polska Times'
|
|
__author__ = 'fenuks'
|
|
description = u'Internetowe wydanie dziennika ogólnopolskiego Polska The Times. Najświeższe informacje: wydarzenia w kraju i na świecie, reportaże, poradniki, opinie.'
|
|
category = 'newspaper'
|
|
language = 'pl'
|
|
masthead_url = 'http://s.polskatimes.pl/g/logo_naglowek/polska.gif?17'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
remove_emty_feeds= True
|
|
no_stylesheets = True
|
|
#preprocess_regexps = [(re.compile(ur'<b>Czytaj także:.*?</b>', re.DOTALL), lambda match: ''), (re.compile(ur',<b>Czytaj też:.*?</b>', re.DOTALL), lambda match: ''), (re.compile(ur'<b>Zobacz także:.*?</b>', re.DOTALL), lambda match: ''), (re.compile(ur'<center><h4><a.*?</a></h4></center>', re.DOTALL), lambda match: ''), (re.compile(ur'<b>CZYTAJ TEŻ:.*?</b>', re.DOTALL), lambda match: ''), (re.compile(ur'<b>CZYTAJ WIĘCEJ:.*?</b>', re.DOTALL), lambda match: ''), (re.compile(ur'<b>CZYTAJ TAKŻE:.*?</b>', re.DOTALL), lambda match: ''), (re.compile(ur'<b>\* CZYTAJ KONIECZNIE:.*', re.DOTALL), lambda match: '</body>'), (re.compile(ur'<b>Nasze serwisy:</b>.*', re.DOTALL), lambda match: '</body>') ]
|
|
remove_tags_after= dict(attrs={'src':'http://nm.dz.com.pl/dz.png'})
|
|
remove_tags=[dict(id='mat-podobne'), dict(name='a', attrs={'class':'czytajDalej'}), dict(attrs={'src':'http://nm.dz.com.pl/dz.png'})]
|
|
feeds = [(u'Fakty', u'http://polskatimes.feedsportal.com/c/32980/f/533648/index.rss'), (u'Opinie', u'http://www.polskatimes.pl/rss/opinie.xml'), (u'Sport', u'http://polskatimes.feedsportal.com/c/32980/f/533649/index.rss'), (u'Pieni\u0105dze', u'http://polskatimes.feedsportal.com/c/32980/f/533657/index.rss'), (u'Twoje finanse', u'http://www.polskatimes.pl/rss/twojefinanse.xml'), (u'Kultura', u'http://polskatimes.feedsportal.com/c/32980/f/533650/index.rss'), (u'Dodatki', u'http://www.polskatimes.pl/rss/dodatki.xml')]
|
|
|
|
def print_version(self, url):
|
|
return url.replace('artykul', 'drukuj')
|
|
|
|
def skip_ad_pages(self, soup):
|
|
if 'Advertisement' in soup.title:
|
|
nexturl=soup.find('a')['href']
|
|
return self.index_to_soup(nexturl, raw=True)
|
|
|
|
def get_cover_url(self):
|
|
soup = self.index_to_soup('http://www.prasa24.pl/gazeta/metropolia-warszawska/')
|
|
self.cover_url=soup.find(id='pojemnik').img['src']
|
|
return getattr(self, 'cover_url', self.cover_url)
|