Hi!
I've been wondering how to implement a continous writing script?
E.g.:
print "Content-type: text/html"
print ""
for i in xrange(60):
print "%i
" % i
time.sleep(1)
Just wondering. I'd basically need it to make sure the browser does not
abort during a long request. Without this, I'd have to resort URL
refreshing, which is more complicated that I'd like.
Andreas