mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
#!/usr/bin/env python2
|
|
|
|
__license__ = 'GPL v3'
|
|
import re
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class ppeRecipe(BasicNewsRecipe):
|
|
__author__ = u'Artur Stachecki <artur.stachecki@gmail.com>'
|
|
language = 'pl'
|
|
title = u'ppe.pl'
|
|
category = u'News'
|
|
description = u'Portal o konsolach i grach wideo.'
|
|
extra_css = '.categories > li {list-style: none; display: inline;} .galmini > li {list-style: none; float: left;} .calibre_navbar {clear: both;}'
|
|
remove_empty_feeds = True
|
|
no_stylesheets = True
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
remove_javascript = True
|
|
remove_empty_feeds = True
|
|
remove_attributes = ['style']
|
|
|
|
keep_only_tags = [dict(attrs={'class': 'box'})]
|
|
remove_tags = [dict(attrs={'class': ['voltage-1', 'voltage-2',
|
|
'encyklopedia', 'nag', 'related', 'comment_form', 'komentarze-box']})]
|
|
|
|
feeds = [
|
|
('Newsy', 'http://ppe.pl/rss.html'),
|
|
('Recenzje', 'http://ppe.pl/rss-recenzje.html'),
|
|
('Publicystyka', 'http://ppe.pl/rss-publicystyka.html'),
|
|
]
|
|
|
|
def get_cover_url(self):
|
|
soup = self.index_to_soup('http://www.ppe.pl/psx_extreme.html')
|
|
part = soup.find(attrs={'class': 'archiwum-foto'})['style']
|
|
part = re.search("'(.+)'", part).group(1).replace('_min', '')
|
|
return 'http://www.ppe.pl' + part
|