Return HTTP status code 201 in flask

PythonFlaskHttpresponse

Python Problem Overview


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?

Python Solutions


Solution 1 - Python

You can use Response to return any http status code.

> from flask import Response
> return Response("{'a':'b'}", status=201, mimetype='application/json')

Solution 2 - Python

You can read about it [here.][1]

return render_template('page.html'), 201

[1]: http://flask.pocoo.org/docs/quickstart/#about-responses "here"

Solution 3 - Python

You can do

result = {'a': 'b'}
return result, 201

if you want to return a JSON data in the response along with the error code You can read about responses here and here for make_response API details

Solution 4 - Python

As lacks suggested send status code in return statement and if you are storing it in some variable like

notfound = 404
invalid = 403
ok = 200

and using

return xyz, notfound

than time make sure its type is int not str. as I faced this small issue also here is list of status code followed globally http://www.w3.org/Protocols/HTTP/HTRESP.html

Hope it helps.

Solution 5 - Python

In your flask code, you should ideally specify the MIME type as often as possible, as well:

return html_page_str, 200, {'ContentType':'text/html'}

return json.dumps({'success':True}), 200, {'ContentType':'application/json'}

...etc

Solution 6 - Python

Ripping off Luc's comment here, but to return a blank response, like a 201 the simplest option is to use the following return in your route.

return "", 201

So for example:

    @app.route('/database', methods=["PUT"])
    def database():
        update_database(request)
        return "", 201

Solution 7 - Python

you can also use flask_api for sending response

from flask_api import status

@app.route('/your-api/')
def empty_view(self):
    content = {'your content here'}
    return content, status.HTTP_201_CREATED

you can find reference here http://www.flaskapi.org/api-guide/status-codes/

Solution 8 - Python

In my case I had to combine the above in order to make it work

return Response(json.dumps({'Error': 'Error in payload'}), 
status=422, 
mimetype="application/json")

Solution 9 - Python

Dependent on how the API is created, normally with a 201 (created) you would return the resource which was created. For example if it was creating a user account you would do something like:

return {"data": {"username": "test","id":"fdsf345"}}, 201

Note the postfixed number is the status code returned.

Alternatively, you may want to send a message to the client such as:

return {"msg": "Created Successfully"}, 201

Solution 10 - Python

You just need to add your status code after your returning data like this:

from flask import Flask

app = Flask(__name__)
@app.route('/')
def hello_world():  # put application's code here
    return 'Hello World!',201
if __name__ == '__main__':
    app.run()

It's a basic flask project. After starting it and you will find that when we request http://127.0.0.1:5000/ you will get a status 201 from web broswer console.

Solution 11 - Python

So, if you are using flask_restful Package for API's returning 201 would becomes like

def bla(*args, **kwargs):
    ...
    return data, 201

where data should be any hashable/ JsonSerialiable value, like dict, string.

Solution 12 - Python

for error 404 you can

def post():
    #either pass or get error 
    post = Model.query.get_or_404()
    return jsonify(post.to_json())

for 201 success

def new_post():
    post = Model.from_json(request.json)
    return jsonify(post.to_json()), 201, \
      {'Location': url_for('api.get_post', id=post.id, _external=True)}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questioningh.amView Question on Stackoverflow
Solution 1 - PythonYasirView Answer on Stackoverflow
Solution 2 - PythonIacksView Answer on Stackoverflow
Solution 3 - PythonKishan KView Answer on Stackoverflow
Solution 4 - PythonHarsh DaftaryView Answer on Stackoverflow
Solution 5 - PythonBen WheelerView Answer on Stackoverflow
Solution 6 - PythonMatt CopperwaiteView Answer on Stackoverflow
Solution 7 - PythonVivekView Answer on Stackoverflow
Solution 8 - PythonCheetaraView Answer on Stackoverflow
Solution 9 - PythonCrocView Answer on Stackoverflow
Solution 10 - PythonXie YuchenView Answer on Stackoverflow
Solution 11 - PythonDeepak SharmaView Answer on Stackoverflow
Solution 12 - PythonJosie KoayView Answer on Stackoverflow