Re: Separate file stream from request input stream during file uploading

2012-08-10 Thread Karen Tracey
This question was answered on the django-users list where it was also posted. Please do not cross-post to both lists. The right list for usage questions like this is django-users. Karen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To

Separate file stream from request input stream during file uploading

2012-08-10 Thread 春燕 李
As you know, Django can process file uploading with its own uploadhandler. But all the request data is processed as stream, and mod_wsgi provides a way to read the stream, what you can do is just read the stream sequentially, which means that you cannot separate file stream from the request input