Read RP-online 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 »

Die Rheinische Post ist eine der größten regionalen Abonnenten-Zeitungen in Deutschland. Sie wird in Düsseldorf herausgegeben. Ihr Leitsatz lautet „Zeitung für Politik und christliche Kultur“. Sie gilt dementsprechend als konservativ und CDU-nah.

Language: de

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

Schedule Every morning

			  from calibre.web.feeds.recipes import BasicNewsRecipe
class AdvancedUserRecipe(BasicNewsRecipe):

    title          = u'RP-online'
    __author__  = 'schuster'
    oldest_article = 2
    max_articles_per_feed = 100
    no_stylesheets         = True
    use_embedded_content   = False
    language               = 'de'
    remove_javascript      = True
    masthead_url = 'http://www.die-zeitungen.de/uploads/pics/LOGO_RP_ONLINE_01.jpg'
    cover_url = 'http://www.manroland.com/com/pressinfo_images/com/RheinischePost_Logo_300dpi.jpg'
    extra_css = '''
                    h1{font-family:Arial,Helvetica,sans-serif; font-weight:bold;font-size:large;}
                    h4{font-family:Arial,Helvetica,sans-serif; font-weight:normal;font-size:small;}
                    img {min-width:300px; max-width:600px; min-height:300px; max-height:800px}
                    p{font-family:Arial,Helvetica,sans-serif;font-size:small;}
                    body{font-family:Helvetica,Arial,sans-serif;font-size:small;}
	'''
    remove_tags_before = dict(id='article_content')
    remove_tags_after  = dict(id='article_content')
    remove_tags = [dict(attrs={'class':['goodies', 'left', 'right', 'clear-all', 'teaser anzeigenwerbung', 'lesermeinung', 'goodiebox', 'goodiebox 1', 'goodiebox 2', 'goodiebox 3', 'boxframe', 'link']}),
                dict(id=['click_Fotos_link']),
                dict(name=['script', 'noscript', 'style', '_top', 'click_Fotos_link'])]

    feeds          = [	(u'Top-News', u'http://www.ngz-online.de/app/feed/rss/topnews'),
		(u'Politik', u'http://www.ngz-online.de/app/feed/rss/politik'),
		(u'Wirtschaft', u'http://www.ngz-online.de/app/feed/rss/wirtschaft'),
		(u'Panorama', u'http://www.ngz-online.de/app/feed/rss/panorama'),
		(u'Sport', u'http://www.ngz-online.de/app/feed/rss/sport'),
		(u'Tour de France', u'http://www.ngz-online.de/app/feed/rss/tourdefrance'),
		(u'Fußball', u'http://www.ngz-online.de/app/feed/rss/fussball'),
		(u'Fußball BuLi', u'http://www.ngz-online.de/app/feed/rss/bundesliga'),
		(u'Formel 1', u'http://www.ngz-online.de/app/feed/rss/formel1'),
		(u'US-Sport', u'http://www.ngz-online.de/app/feed/rss/us-sports'),
		(u'Boxen', u'http://www.ngz-online.de/app/feed/rss/boxen'),
		(u'Eishockey', u'http://www.ngz-online.de/app/feed/rss/eishockey'),
		(u'Basketball', u'http://www.ngz-online.de/app/feed/rss/basketball'),
		(u'Handball', u'http://www.ngz-online.de/app/feed/rss/handball'),
		(u'Motorsport', u'http://www.ngz-online.de/app/feed/rss/motorsport'),
		(u'Tennis', u'http://www.ngz-online.de/app/feed/rss/tennis'),
		(u'Radsport', u'http://www.ngz-online.de/app/feed/rss/radsport'),
		(u'Kultur', u'http://www.ngz-online.de/app/feed/rss/kultur'),
		(u'Gesellschaft', u'http://www.ngz-online.de/app/feed/rss/gesellschaft'),
		(u'Wissenschaft', u'http://www.ngz-online.de/app/feed/rss/wissen'),
		(u'Gesundheit', u'http://www.ngz-online.de/app/feed/rss/gesundheit'),
		(u'Digitale Welt', u'http://www.ngz-online.de/app/feed/rss/digitale'),
		(u'Auto & Mobil', u'http://www.ngz-online.de/app/feed/rss/auto'),
		(u'Reise & Welt', u'http://www.ngz-online.de/app/feed/rss/reise'),
		(u'Beruf & Karriere', u'http://www.ngz-online.de/app/feed/rss/beruf'),
		(u'Herzrasen', u'http://www.ngz-online.de/app/feed/rss/herzrasen'),
		(u'About a Boy', u'http://www.ngz-online.de/app/feed/rss/about_a_boy'),

]