I want to be able to return success when a method call succeeds but still be able to return the http error code when it fails.
Obviously the only numeric value that evaluates as False is 0, so returning http codes as numerics will evaluate all of them as true.
I have the impression that the solution is to return an object that evaluates as true only for 200-2xx values and that also converts to number so people can compare it.
Are you aware about anyone that had a similar approach? -- I don't like the idea of raising exceptions in this case.
Just return two results, the success flag and the http response:
and use tuple assignment:
The approach that the
requests
module takes is to return a response object always, then give you the choice of raising an exception based on the response code:where the
Response.raise_for_status()
method gives users of your API the option to raise an exception. The other option is to test for the status code:Both of these approaches have the advantage that they are explicit. Don't try to overload a return value with multiple meanings. If a HTTP response outside the 2xx range is an exception, treat it as such by raising an exception.