Comment 19 for bug 1006650

Revision history for this message
Zbigniew Nowacki (zbign) wrote :

For the site I like to read I implemented the receipt where I can just add the link and title and generate epub. This way I can have sth like magazine. Ofc it would be better to have it automatized.
Still it is better than having tenths of 1-article books.
the recipe includes method like that:
   def parse_index(self):
        section, articles = 'Content', []
        feeds = []

        articles.append({ 'title':'My title',
            'url': <some url>,
            'description': '' })

        feeds.append((section, articles))
        return feeds
So it demands some input but not much. HTH