If you are using an HTTP POST method you need to retrieve parameters like this:
pippo = request.form.getlist('name[]')
If you use HTTP GET method, do it like this:
pippo = request.args.getlist('name[]')
Check the docs here.
If you are using an HTTP POST method you need to retrieve parameters like this:
pippo = request.form.getlist('name[]')
If you use HTTP GET method, do it like this:
pippo = request.args.getlist('name[]')
Check the docs here.