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
request.args[key] ## returns a single value, the first if there are multiple
request.args.getlist(key) ## returns a list