Hi,
I have some problems downloading articles from feed like this:
http://www.altroconsumo.it/altrocons...7473/cat/0.xml
Running ebook-convert with
--pipeline-debug option and watching the
input folder it seems that calibre download ONLY the top login bar of the article.
The recipe is very simple and no attributes like
keep_only_tags or
remove_tags are set, but the behaviour explained above tells me there is some problem about fetching the article.
How can I solve this problem wich affetcs all articles form this site?
You can try it yourself...
Code:
from calibre.web.feeds.news import BasicNewsRecipe
class Altroconsumo(BasicNewsRecipe):
title = u'Altroconsumo'
oldest_article = 15
use_embedded_content = False
max_articles_per_feed = 25
recursions = 0
language = 'it'
__author__ = ''
no_stylesheets = True
remove_javascript = True
feeds = [
(u'Ultime news', u'http://www.altroconsumo.it/altroconsumo-ultimi-aggiornamenti-s187753/rss-p207473/cat/0.xml'),
]
Please help.
Thankyou all