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
If you want the uploaded files, you can do this
for upload in self.get_uploads():
If you want just a text field:
x = self.request.get('value1')