Read Lege Artis on your iPad or Kindle in no time. Click download to load the free ebook on your reader.

Check out all the available public recipes or write your own with these quick start guides. ReadBeam is built on calibre, so everything in the docs and the fora applies here as well.

Download for free »

Wszystko, co chcielibyście wiedzieć o prawie, ale wstydzicie się zapytać

Language: pl

Requires Subscription: No, it's available as free ebook

Schedule Every morning

			  #!/usr/bin/env  python

__license__	= 'GPL v3'
__author__ = 'Mori'
__version__ = 'v. 0.1'
'''
olgierd.bblog.pl
'''

from calibre.web.feeds.news import BasicNewsRecipe

class LegeArtisRecipe(BasicNewsRecipe):
	__author__ = 'Mori'
	language = 'pl'

	title = u'Lege Artis'
	publisher = u'Olgierd Rudak'
	description = u'Wszystko, co chcieliby\u015bcie wiedzie\u0107 o prawie, ale wstydzicie si\u0119 zapyta\u0107'

	max_articles_per_feed = 100
	
	no_stylesheets = True
	remove_javascript = True
	
	extra_css = '''
		img{clear: both;}
	'''
	
	feeds = [
		(u'Lege Artis', u'http://olgierd.bblog.pl/rss/rss20.xml')
	]
	
	keep_only_tags = [
		dict(name = 'div', attrs = {'class' : 'post_title'}),
		dict(name = 'div', attrs = {'class' : 'post_date'}),
		dict(name = 'div', attrs = {'class' : 'post_content'})
	]
	
	remove_tags = [
		dict(name = 'div', attrs = {'id' : 'bb_tools'}),
		dict(name = 'div', attrs = {'class' : 'post_comments'}),
		dict(name = 'object', attrs = {})
	]