How do I handle a JSON request in Bottle?
request.json is limited by MEMFILE_MAX.
Another way works if request data is larger than MEMFILE_MAX
json.load(request.body)
Now since bottle 0.10, the request.json
is ready for use :)
Document is here.