python requests: how to check for "200 OK"

Question:

What is the easiest way to check whether the response received from a requests post was "200 OK" or an error has occurred?

I tried doing something like this:

....
resp = requests.post(my_endpoint_var, headers=header_var, data=post_data_var)
print(resp)
if resp == "<Response [200]>":
    print ('OK!')
else:
    print ('Boo!')

The output on the screen is:

Response [200] (including the "<" and ">")
Boo!

So even though I am getting a 200, my check in the if statement is somehow not matching?

Asked By: Monty

||

Answers:

According to the docs, there’s a status_code property on the response-object. So you can do the following:

if resp.status_code == 200:
    print ('OK!')
else:
    print ('Boo!')

EDIT:

As others have pointed out, a simpler check would be

if resp.ok:
    print ('OK!')
else:
    print ('Boo!')

if you want to consider all 2xx response codes and not 200 explicitly.
You may also want to check Peter’s answer for a more python-like way to do this.

Answered By: eol

resp.status_code will return the status code as an integer.

See http://docs.python-requests.org/en/master/

Answered By: orangeInk

try:

if resp.status_code == 200:
    print ('OK!')
else:
    print ('Boo!)
Answered By: Caders117

Since any 2XX class response is considered successful in HTTP, I would use:

if 200 <= resp.status_code <= 299:
    print ('OK!') 
else:
    print ('Boo!')
Answered By: rouble

Just check the response attribute resp.ok. It is True for all 2xx responses, but False for 4xx and 5xx. However, the pythonic way to check for success would be to optionally raise an exception with Response.raise_for_status():

try:
    resp = requests.get(url)
    resp.raise_for_status()
except requests.exceptions.HTTPError as err:
    print(err)

EAFP: It’s Easier to Ask for Forgiveness than Permission: You should just do what you expect to work and if an exception might be thrown from the operation then catch it and deal with that fact.

Answered By: Peter

In easy case:

import requests

response = requests.get(url)
if not response:
    #handle error here
else:
    #handle normal response
Answered By: qloveshmily

Much simpler check would be

    if resp.ok :
        print ('OK!')
    else:
        print ('Boo!')
Answered By: MrHumble

I’m surprised no one has mentioned this so:

If you want to check for exactly a 200 response:

if resp.status_code == requests.codes.ok:

The status_code of a response contains the HTTP status returned.

requests.codes.ok is exactly 200.


If you want to check if the status code is "ok", and not an error:

if resp.ok:

The ok attribute of a response checks that the status code of the response is less than 400.


Make sure you know what it is you want to check, for example a 201 HTTP Created is a successful response that you would be omitting if you only check for exactly 200.

Answered By: gdvalderrama
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.