box-o-sand/oldstuff/activeresource-aspen/server/helpers.py
2015-06-22 13:15:42 -05:00

6 lines
153 B
Python

import json
def json_loads_from_request(request):
raw = request.body.s_iter.read(int(request.headers['Content-Length']))
return json.loads(raw)