I'm trying to create a recipe for:
http://www.elmundotoday.com/feed/
I've tweaked with several recipes for Wordpress found in this very forum to no avail, the index is always empty (no articles) although manually downloading the feed shows articles there.
The feed is compressed with gzip, but I guess this should not be a problem for Calibre?
Below is my last attempt:
Code:
lass AdvancedUserRecipe1335711936(BasicNewsRecipe):
title = u'El Mundo Today'
description = 'La actualidad del maņana'
cover_url = 'http://www.elmundotoday.com/wp-content/themes/EarthlyTouch/images/logo.png'
oldest_article = 365
max_articles_per_feed = 100
auto_cleanup = False
no_stylesheets = True
language = 'es_ES'
use_embedded_content = True
feeds = [(u'El Mundo Today', u'http://www.elmundotoday.com/feed/')]
TIA.