With Python Flask, it's not so difficult to handle put request and get the content in request.data. However, it is triggered when the whole data transmission completes and they're all in the buffer. What if I want the web server to be just a pipe and handle the incoming stream chunk by chunk, not assembling them all?
Something like how Nodejs does:
.on('data', function (chunk)
{
//Process the chunk
});