首页 > 杂记 > 正文

解决Python bottle module Error: 413 Request Entity Too Large问题

标签:问题

服务器使用了bottle,通过http的post方法上传图片,收到如下错误:

Error: 413 Request Entity Too Large

解决的办法就是修改文件的大小上限:

import bottle
bottle.BaseRequest.MEMFILE_MAX = 1024 * 1024 # (or whatever you want)

即可


原创文章,转载请注明出处!
本文链接:http://youran.tech/posts/fix-bottle-request-entity-too-large.html
上篇: 解决urllib3.exceptions.ProtocolError问题
下篇: 解决Ubuntu下pip3安装TA-Lib失败的问题

留言: