Created
January 13, 2016 20:38
-
-
Save hirobert/394981a661cbf78d442e to your computer and use it in GitHub Desktop.
flask abort as json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import abort, make_response, jsonify | |
abort(make_response(jsonify(message="Message goes here"), 400)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you have your API code in a blueprint, you can also do this I believe
The good thing here is that any other requests outside of the blueprint will continue to see the normal 404 page