Re: Ouputting data stream

2006-02-27 Thread Adrian Holovaty
On 2/27/06, Ivan Sagalaev <[EMAIL PROTECTED]> wrote: > I'm starting to build an application where I need to output large files > to the user in chunks to control download speed and to know if the > download has succeeded. Django's HttpResponse object treats response as > a single string in memory

Ouputting data stream

2006-02-27 Thread Ivan Sagalaev
I'm starting to build an application where I need to output large files to the user in chunks to control download speed and to know if the download has succeeded. Django's HttpResponse object treats response as a single string in memory and doesn't allow such things. I plan to modify it to be