The easy way to convert Flask request, form, header and request args to route parameters.
pip install flask-request-arg
Handling form
and request
and header
parameters in Flask
is complex and error-prone. Common
issues are:
- Values need to be converted to the correct type.
- Intricate logic used to handle defaults and missing values.
- Request arguments and form fields are not clear from the method signature.
- GET, PUT, POST all require different logic to get values.
- Documentation for request and form values are not easy to generate.
flask-request-arg
solves this issues by allowing you to use a simple decorator
to specify the argument name, type and default value. Then any form data, JSOM
data, header or request argument is converted into a named method parameter. POST using form
data, GET using arguments or PUT with JSON body data all can use the same
code logic.
When using JSON data it is recommended to set the content type to "application/json". An attempt is made to try to convert body data to JSON if no argument is found.
Argument names are converted into a Python acceptable variable name by removing white space from each end and then making it lowercase and replacing hyphen, space and other weird characters with underscore _. If the name starts with a number then an underscore is prepended to the name. Example
@request_arg('Header-Value')
becomes:
def route_name(header_value)
@request_arg(arg_name: str, arg_type: Any = None, arg_default=None) -> Callable:
arg_name
- the name of the argument to add as a method parameter.arg_type
- the type of the argument. All form and request args are usually strings.arg_default
- default value of the argument when not in form or request.
- to make an argument required do not provide an
arg_default
. - a
<form>
<input>
name
must match therequest_arg
argument name. - a JSON body key must match the
request_arg
argument name. - any request argument name must be a valid
Python
variable name.
To call an area of circle method with a parameter argument as in this example:
/area_of_circle?radius=23.456
# 1727.57755904
Structure your Flask route as follows:
from flask_request_arg import request_arg
from flask import Response
@request_arg('radius', float)
@app.route('/area_of_circle', methods=['GET'])
def area_of_circle(radius):
result = radius * radius * 3.14
return Response(f"{result}", 200)
A method that handles POST can be structured the same as a GET. Example:
from flask_request_arg import request_arg
from flask import Response
@request_arg('radius', float)
@app.route('/area_of_circle', methods=['POST'])
def area_of_circle(radius):
result = radius * radius * 3.14
return Response(f"{result}", 200)
HTML example:
<form action="/area_of_circle" method="post">
<label>Radius:<input name="radius" type="number"/></label>
<button type="submit">Get area</button>
</form>
NOTE: the form input name must match the request_arg
argument name.
NOTE: request arguments and form data can be used together on the same request.
JSON body data is treated the same as a POST or GET. Example:
from flask_request_arg import request_arg
from flask import Response
@request_arg('radius', float)
@app.route('/area_of_circle', methods=['PUT'])
def area_of_circle(radius):
result = radius * radius * 3.14
return Response(f"{result}", 200)
Called like:
fetch('/area_of_circle', {
headers: { 'Content-Type': 'application/json' }, // tells the server we have json
method:'PUT',
body: JSON.stringify({radius:45.67}), // json is sent to the server as text
})
NOTE: request arguments and JSON body data can be used together on the same request.
As you can see the Flask
method code is the same for GET, PUT and POST. So you can
do all three at once. Example:
from flask_request_arg import request_arg
from flask import Response
@request_arg('radius', float)
@app.route('/area_of_circle', methods=['GET', 'PUT', 'POST'])
def area_of_circle(radius):
result = radius * radius * 3.14
return Response(f"{result}", 200)
Request arguments of the type
/route?argument1=value1&argument2=value2
are treated the same as form
or JSON
data. Example:
from flask_request_arg import request_arg
from flask import Response
# /area_of_circle?radius=124.56
@request_arg('radius', float)
@app.route('/area_of_circle')
def area_of_circle(radius):
result = radius * radius * 3.14
return Response(f"{result}", 200)
Request headers of the format:
header-name: values here and here
are treated the same as form
, parameters
or JSON
data.
Use the arg_type
parameter to specify a type conversion for the string value.
The arg_type can be any Python type. The default isstr
. Example:
from flask_request_arg import request_arg
from flask import Response
@request_arg('radius', float)
@request_arg('number_of_circles', int)
@request_arg('name', str)
@app.route('/area_of_circle', methods=['GET'])
def area_of_circle(radius, number_of_circles, name):
result = number_of_circles * radius * radius * 3.14
return Response(f"{number_of_circles} of {name} is {result}", 200)
Custom type converters can be supplied using a lambda
. Example:
@request_arg("arg_type", lambda x: x == "True")
@app.route('/custom')
def custom_arg_type(arg_type):
result = "yes" if arg_type else "no"
return Response(f"{result}", 200)
When using bool
as an arg_type
, a truthy test will be done and
return True
if the value is in:
("y", "Y", "yes", "Yes", "YES", True, "true", "True", "TRUE", 1, "1")
If required, you can mix Flask request parameters with request arguments. Example:
from flask_request_arg import request_arg
from flask import Response
@request_arg('radius', float)
@app.route('/area_of_circle/<float:pi>/', methods=['GET'])
def area_of_circle(pi, radius):
result = radius * radius * pi
return Response(f"{result}", 200)
- 1.0.5 - Allow JSON coercion of body data.
- 1.0.4 - Add argument variable name fixing
- 1.0.3 - Add header support
- 1.0.2 - Fix publish
- 1.0.1 - Use truthy values for
bool
types - 1.0.0 - Tidy up documentation. Proper release.
- 0.0.2 - Initial release