mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
#!/usr/bin/env python2
|
|
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'teepel <teepel44@gmail.com>'
|
|
|
|
'''
|
|
http://www.osw.waw.pl - Osrodek studiow wschodnich
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class OSW_Recipe(BasicNewsRecipe):
|
|
|
|
language = 'pl'
|
|
title = u'Ośrodek Studiów Wschodnich'
|
|
__author__ = 'teepel <teepel44@gmail.com>'
|
|
INDEX = 'http://www.osw.waw.pl'
|
|
description = u'Ośrodek Studiów Wschodnich im. Marka Karpia. Centre for Eastern Studies.'
|
|
category = u'News'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
cover_url = ''
|
|
remove_empty_feeds = True
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
simultaneous_downloads = 5
|
|
|
|
keep_only_tags = []
|
|
keep_only_tags.append(dict(name='h2', attrs={'class': 'node-title'}))
|
|
keep_only_tags.append(dict(name='div', attrs={'class': 'content clearfix'}))
|
|
|
|
remove_tags = []
|
|
remove_tags.append(dict(name='table', attrs={'id': 'attachments'}))
|
|
remove_tags.append(dict(name='div', attrs={'class': 'print-submitted'}))
|
|
|
|
feeds = [(u'OSW', u'https://www.osw.waw.pl/pl/rss.xml')]
|
|
|
|
def print_version(self, url):
|
|
return url.replace('https://www.osw.waw.pl/pl/', 'https://www.osw.waw.pl/pl/print/')
|