Read Evangelizo.org 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 »

Language: de

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

Schedule Every morning

			  import re
from calibre.web.feeds.news import BasicNewsRecipe

class Evangelizo(BasicNewsRecipe):
    title   = 'Evangelizo.org'
    oldest_article         = 2
    max_articles_per_feed  = 30
    language               = 'de'
    __author__ = 'Bobus'
    feeds                  = [
        ('EvangleliumTagfuerTag', 'http://www.evangeliumtagfuertag.org/rss/evangelizo_rss-de.xml'),
        ]
    use_embedded_content   = True
    preprocess_regexps     = [
        (re.compile(r'&lt;font size="-2"&gt;([(][0-9]*[)])&lt;/font&gt;'), r'\g<1>'),
        (re.compile(r'([\.!]\n)'), r'\g<1><br />'),
    ]

    def populate_article_metadata(self, article, soup, first):
       article.title = re.sub(r'<font size="-2">([(][0-9]*[)])</font>', r'\g<1>', article.title)
       return