Read De Standaard 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 »

News from Belgium in Dutch

Language: nl

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

Schedule Every morning

			  __license__   = 'GPL v3'
__copyright__ = '2008-2011, Darko Miletic <darko.miletic at gmail.com>'
'''
standaard.be
'''

from calibre.web.feeds.news import BasicNewsRecipe

class DeStandaard(BasicNewsRecipe):
    title                 = u'De Standaard'
    __author__            = u'Darko Miletic'
    language              = 'nl_BE'
    description           = u'News from Belgium in Dutch'
    oldest_article        = 7
    max_articles_per_feed = 100
    no_stylesheets        = True
    use_embedded_content  = False
    encoding              = 'utf-8'
    masthead_url          = 'http://www.standaard.be/extra/css/images/masthead/logo_340x45.png'
    publication_type      = 'newspaper'
    
    keep_only_tags    = [dict(name='div' , attrs={'id':['intro','continued']})]

    feeds          = [(u'De Standaard Online', u'http://feeds.feedburner.com/dso-front')]


    def get_article_url(self, article):
        return article.get('guid',  None)

    def print_version(self, url):
        return url.replace('/artikel/detail.aspx?','/Artikel/PrintArtikel.aspx?')