I have a Flask App (build on top of the Flask Restx Resource class) and I've created a couple of try/except statements to validate the input of my app.
To make the code of the app more readable, I'd like to encapsulate these checks in a seperate function. But this introduces the challenge of returning the error message and Status Code correctly so that it can be handled by the API.
Is there a way to make the function return via the calling function or so?
# minimal example
from flask import Flask
from flask_restx import Api, Resource
app = Flask(__name__)
api = Api(app)
def validate_input(a):
try:
assert a < 10
except:
return "a >= 10", 500
@api.route("/<a>")
class BatchScorer(Resource):
def get(self, a):
# validate_input(a):
# instead of?
try:
assert a < 10
except:
return "a >= 10", 500
if __name__ == "__main__":
app.run(debug=True)