Python request.args.get Liste

request.args[key] ## returns a single value, the first if there are multiple
request.args.getlist(key) ## returns a list
Ahmed Samir