News

Uses the six library for Python 2/3 compatability. >>> from http_status import Status >>> s = Status(403) >>> s.code 403 >>> s.name 'Forbidden' >>> s.description ...
The tenacity library has some functions for handling retry logic in Python. This repo has an example of how to use tenacity to retry requests that returned an HTTP 429 status code. The example uses ...