Quote:
Originally Posted by JIGACE
I been tryng to do a recipe to download a blog... the tipe of xxx.blogspot.com but i cant do it, it always download only a portion of the blog, is there a way to download the entire blog? The blog is http://globaliciousworld.blogspot.com/
thanks in advance 
|
See this image how to start recipe
After that click on the 'Switch to advanced mode' and add these two lines:
Code:
use_embedded_content = True
encoding = 'utf-8'
So the result should be something like this:
Code:
class AdvancedUserRecipe1246622332(BasicNewsRecipe):
title = u'Globalicious'
oldest_article = 15
max_articles_per_feed = 100
use_embedded_content = True
encoding = 'utf-8'
feeds = [(u'All articles', u'http://globaliciousworld.blogspot.com/feeds/posts/default?alt=rss')]
That is all