Python - Parsing multipart/form-data request on server side
For some reason cgi.FieldStorage() wasnt working for me, but only the deprecated method :
pdict = {'boundary':'*****'}
cgi.parse_multipart(self.request.body_file, pdict)
Dont know why but as long as its working im fine with that.