Read Noticias UnB 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 »

Noticias da UnB

Language: pt

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

Schedule Every morning

			  # -*- coding: utf-8 -*-

from calibre.web.feeds.news import BasicNewsRecipe

class NoticiasUnB(BasicNewsRecipe):
    title                  = 'Noticias UnB'
    __author__             = 'Diniz Bortolotto'
    description            = 'Noticias da UnB'
    oldest_article         = 5
    max_articles_per_feed  = 20
    category               = 'news, educational, Brazil'
    language               = 'pt_BR'
    publication_type       = 'newsportal'
    use_embedded_content   = False
    no_stylesheets         = True
    remove_javascript      = True

    feeds                  = [(u'UnB AgĂȘncia', u'http://www.unb.br/noticias/rss/noticias.rss')]

    reverse_article_order  = True

    def print_version(self, url):
        return url.replace('http://', 'http://www.unb.br/noticias/print_email/imprimir.php?u=http://')