Read TheJournal.ie 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: en

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

Schedule Every morning

			  __license__   = 'GPL v3'
__copyright__ = '2011 Phil Burns'
'''
TheJournal.ie
'''

from calibre.web.feeds.news import BasicNewsRecipe

class TheJournal(BasicNewsRecipe):

    __author_              = 'Phil Burns'
    title                  = u'TheJournal.ie'
    oldest_article         = 1
    max_articles_per_feed  = 100
    encoding               = 'utf8'
    language               = 'en_IE'
    timefmt                = ' (%A, %B %d, %Y)'

    no_stylesheets         = True
    remove_tags            = [dict(name='div', attrs={'class':'footer'}),
                           dict(name=['script', 'noscript'])]

    extra_css              = 'p, div { margin: 0pt; border: 0pt; text-indent: 0.5em }'

    feeds                  = [
                          (u'Latest News', u'http://www.thejournal.ie/feed/')]