Using Python\'s module bottle, I\'m getting HTTP 413 error when posting requests of body size > bottle\'s internal MEMFILE_MAX constan
bottle
MEMFILE_MAX
You should be able to just
import bottle bottle.BaseRequest.MEMFILE_MAX = 1024 * 1024 # (or whatever you want)
This appears to be the only way based on the source