View Single Post
Old 08-01-2017, 10:04 AM   #1
rpresser
Member
rpresser has learned how to buy an e-book online
 
Posts: 17
Karma: 84
Join Date: Mar 2008
Device: Ebookwise1150, Treo 600
Recipe made 30 copies

I had a scheduled recipe for Lightspeed Magazine. Last month I ran it manually. This month it ran on schedule, and there are 30 copies of the output, all ran between 12:00 AM and 12:41 AM. They all have slightly different sizes, too, although the TOC are all the same.

calibre 2.8.1 [64bit] (yes, I know 3.5.0 is out now)

Here's the recipe. Any idea what went wrong?

Code:
#!/usr/bin/env python2
# vim:fileencoding=utf-8
from __future__ import unicode_literals, division, absolute_import, print_function
from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1366025923(BasicNewsRecipe):
    title = u'Lightspeed Magazine'
    oldest_article = 31
    max_articles_per_feed = 100
    auto_cleanup = False
    use_embedded_content = False
    feeds = [(u'Lastest Stories', u'http://www.lightspeedmagazine.com/rss-2/')]

Last edited by rpresser; 08-01-2017 at 10:06 AM.
rpresser is offline   Reply With Quote