Try this recipe. It is able to scrap any wiki page. You just need to setup manually list of articles for different topics. Like this:
Code:
...
INDEX = 'http://en.wikipedia.org/'
...
def parse_index(self):
articles = []
articles.append({
'title':'Tree',
'date':'',
'url':self.INDEX + 'wiki/Tree',
'description':'Tree'
})
articles.append({
'title':'Tiger',
'date':'',
'url':self.INDEX + 'wiki/Tiger',
'description':'Tiger'
})
return [('Articles', articles)]
than just run the recipe and you will get the ebook without images.
This leaves space for improvement but it is something to start working on.