calibre/recipes/legeartis.recipe
Kovid Goyal 29cd8d64ea
Change shebangs to python from python2
Also remove a few other miscellaneous references to python2
2020-08-22 18:47:51 +05:30

31 lines
690 B
Python

#!/usr/bin/env python
__license__ = 'GPL v3'
'''
czasopismo.legeartis.org
'''
from calibre.web.feeds.news import BasicNewsRecipe
class LegeArtisRecipe(BasicNewsRecipe):
__author__ = 'Mori, Tomasz D\u0142ugosz'
language = 'pl'
title = u'Lege Artis'
publisher = u'Olgierd Rudak'
description = u'Prawie wszystko, co chcieliby\u015bcie wiedzie\u0107 o prawie, ale wstydzili\u015bcie si\u0119 zapyta\u0107'
max_articles_per_feed = 100
no_stylesheets = True
remove_javascript = True
remove_empty_feeds = True
extra_css = '''
img{clear: both;}
'''
feeds = [
(u'Lege Artis', u'http://czasopismo.legeartis.org/feed')
]