Read Rue89 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 »

Popular free french news website

Language: fr

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

Schedule Every morning

			  __license__   = 'GPL v3'
__copyright__ = '2010-2012, Louis Gesbert <meta at antislash dot info>'
'''
Rue89
'''

__author__ = '2010-2012, Louis Gesbert <meta at antislash dot info>'

from calibre.web.feeds.news import BasicNewsRecipe

class Rue89(BasicNewsRecipe):
    title = 'Rue89'
    __author__ = 'Louis Gesbert'
    description = 'Popular free french news website'
    title = u'Rue89'
    language = 'fr'
    oldest_article = 7
    max_articles_per_feed = 12

    use_embedded_content = False

    # From http://www.rue89.com/les-flux-rss-de-rue89
    feeds = [
        (u'La Une',    u'http://www.rue89.com/feed'),
        (u'Rue69',     u'http://www.rue89.com/rue69/feed'),
        (u'Eco',       u'http://www.rue89.com/rue89-eco/feed'),
        (u'Planète',   u'http://www.rue89.com/rue89-planete/feed'),
        (u'Sport',     u'http://www.rue89.com/rue89-sport/feed'),
        (u'Culture',   u'http://www.rue89.com/culture/feed'),
        (u'Hi-tech',   u'http://www.rue89.com/hi-tech/feed'),
        (u'Media',     u'http://www.rue89.com/medias/feed'),
        (u'Monde',     u'http://www.rue89.com/monde/feed'),
        (u'Politique', u'http://www.rue89.com/politique/feed'),
        (u'Societe',   u'http://www.rue89.com/societe/feed'),
    ]

    # Follow redirection from feedsportal.com
    def get_article_url(self,article):
        return self.browser.open_novisit(article.link).geturl()

    def print_version(self, url):
        return url + '?imprimer=1'

    no_stylesheets = True

    conversion_options = { 'smarten_punctuation' : True }

    keep_only_tags = [
        dict(name='div', attrs={'id':'article'}),
    ]

    remove_tags_after = [
        dict(name='div', attrs={'id':'plus_loin'}),
    ]

    remove_tags = [
        dict(name='div', attrs={'id':'article_tools'}),
        dict(name='div', attrs={'id':'plus_loin'}),
    ]