I am surprise I don't find a method to extract the value of a field from a
request object. At the moment I am using a helper function
def getfirst(name, request):
return request.args.get(name, [None])[0]
but is there a better solution?
Michele Simionato