Utilizzo del modulo Python bottle
, Ricevo l'errore HTTP 413 quando si registrano richieste di dimensioni corporee> 2 interne. Di seguito è riportato un esempio di funzionamento minimo.Il modulo flacone Python causa "Errore: 413 Entità richiesta troppo grande"
parte Server (server.py
):
from bottle import *
@post('/test')
def test():
return str(len(request.forms['foo']));
def main():
run(port=8008);
if __name__ == '__main__':
main();
parte client (client.py
):
import requests
def main():
url = 'http://127.0.0.1:8008/test';
r = requests.post(url, data={ 'foo' : 100000 * 'a' });
print(r.text);
r = requests.post(url, data={ 'foo' : 200000 * 'a' });
print(r.text);
if __name__ == '__main__':
main();
Le prime stampe richiesta:
100000
Il secondo stampe richiesta:
...
<body>
<h1>Error: 413 Request Entity Too Large</h1>
<p>Sorry, the requested URL <tt>'http://127.0.0.1:8008/test'</tt>
caused an error:</p>
<pre>Request to large</pre>
</body>
....
Non ho assolutamente idea di come aumentare il limite interno di bottle
. C'è un modo semplice per aumentare il limite, consentendo richieste di dimensioni, ad es. 1 MB?
provare a cambiare 'bottle.BaseRequest.MEMFILE_MAX' a qualcosa di più grande di' 102400'. – Blender