Return HTTP status code 201 in flask

ingh.am picture ingh.am · Oct 19, 2011 · Viewed 171.7k times · Source

We're using Flask for one of our API's and I was just wondering if anyone knew how to return a HTTP response 201?

For errors such as 404 we can call:

from flask import abort
abort(404)

But for 201 I get

LookupError: no exception for 201

Do I need to create my own exception like this in the docs?

Answer

Iacks picture Iacks · Oct 19, 2011

You can read about it here.

return render_template('page.html'), 201