I have a querydict that looks like the following:
How would I extract
It seems like your client is posting JSON rather than formencoded data. Instead of accessing request.POST, use request.body (request.raw_post_data in versions 1.3 or less) and use json.loads() to convert to a dict.
request.POST
request.body
request.raw_post_data
json.loads()