Topic: For those using Django (python)
For those of you using Django and not using multipart, you need to use the raw_post_data property on the incoming request object:
out = open(outFileName, 'wb+')
out.write(request.raw_post_data)
out.close()
Pages 1
For those of you using Django and not using multipart, you need to use the raw_post_data property on the incoming request object:
out = open(outFileName, 'wb+')
out.write(request.raw_post_data)
out.close()
Pages 1
You are not logged in. Please login or register.