I need to save some Raw Post Data (request.raw_post_data) straight to a FileField using Python/Django. All the information I have found so far is not helpful for saving RAW data.

More specifically, the raw data is the wave data recorded from a Mic using Flash.

Can someone please show me how this is done?

Thanks!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Ok. I figured it out. You can use SimpleUploadedFile like this:

if request.method == 'POST':
    from django.core.files.uploadedfile import SimpleUploadedFile
    object = Model.objects.get(pk=1)
    file_contents = SimpleUploadedFile("%s.mp3" % "myfile", request.raw_post_data, "audio/mp3")
    object.audio.save("%s.mp3" % "myfile", upfile, True)
link|improve this answer
Good. Now mark your answer as the answer. – Chris Pratt Jun 3 '11 at 21:09
Thanks for posting this it really helped me out with a similar problem! – Rob B Aug 30 '11 at 21:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.