Im trying to do a http \'POST\' with multipart/form-data to a python GAE backend. My server side method is receiving the complete body but i have absolutely no idea how to p
You want the .cgi python library.
Specifically something like this:
import cgi form = cgi.FieldStorage() value1 = form.getfirst("value1", "") value2 = form.getfirst("value2", "") value3 = form.getfirst("value3", "") logtext = form.getfirst("logText", "")