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

diario de actualidad, moda y belleza.

Language: es

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

Schedule Every morning

			  #!/usr/bin/env  python
__license__   = 'GPL v3'
__copyright__ = '2010, Brendan Sleight <bms.calibre at barwap.com>'
'''
hola.com
'''

from calibre.web.feeds.news import BasicNewsRecipe

class Hackaday(BasicNewsRecipe):
    title                 = u'Hola'
    __author__            = 'bmsleight'
    description           = 'diario de actualidad, moda y belleza.'
    oldest_article        = 10
    max_articles_per_feed = 100
    no_stylesheets        = True
    language              = 'es'

    use_embedded_content  = False

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

    feeds               = [
                         (u'Famosos'        , u'http://www.hola.com/famosos/rss.xml'           ),
                         (u'Realeza'        , u'http://www.hola.com/realeza/rss.xml'           ),
                         (u'Cine'           , u'http://www.hola.com/cine/rss.xml'              ),
                         (u'Música'         , u'http://www.hola.com/musica/rss.xml'            ),
                         (u'Moda y modelos' , u'http://www.hola.com/moda/portada/rss.xml'      ),
                         (u'Belleza y salud', u'http://www.hola.com/belleza/portada/rss.xml'   ),
                         (u'Niños'          , u'http://www.hola.com/ninos/rss.xml'             ),
                         (u'Todas las noticias', u'http://int2.hola.com/app/feeds/rss_hola.php'),
                         ]

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