Let's see if someone can help me. I made this recipe and I get as they want it. The only problem he has is that the title comes with the same font size for the article and I wish to come out bigger and bold. How could it? ...
Thanks for the help and here I leave the recipe:
Quote:
class AdvancedUserRecipe1282021339(BasicNewsRecipe):
title = u'Semana.com'
oldest_article = 7
max_articles_per_feed = 100
use_embedded_content = False
encoding = 'utf-8'
no_stylesheets = True
keep_only_tags = [
dict(name='div', attrs={'class':['titular_articulo', 'texto_autor_articulo', 'hora']})
,dict(attrs={'class':['texto_articulo']})
]
remove_tags = [
dict(name='div', attrs={'class':['cont_control']})
]
feeds = [(u'Noticias', u'http://www.semana.com/rss/Semana_OnLine.xml')
]
|