Flask request.args.get get all params (Python)
If you use request.args
it will provide a dictonary with key-value pairs of the GET parameters
Ex: http://website.com/index?arg1=hello&arg2=world
print request.args
>> {"arg1": "hello", "arg2": "world"}
The request.args.get(key)
is a useful dictionary function that will return None
if the parameter is not set rather than raising a KeyError
[i for i in request.args.keys()]