0001"""
0002Gives ``status_reasons``, a dictionary of HTTP reasons for integer status codes
0003"""
0004
0005__all__ = ['status_reasons']
0006
0007status_reasons = {
0008    # Status Codes
0009    # Informational
0010    100: 'Continue',
0011    101: 'Switching Protocols',
0012    102: 'Processing',
0013
0014    # Successful
0015    200: 'OK',
0016    201: 'Created',
0017    202: 'Accepted',
0018    203: 'Non Authoritative Information',
0019    204: 'No Content',
0020    205: 'Reset Content',
0021    206: 'Partial Content',
0022    207: 'Multi Status',
0023    226: 'IM Used',
0024
0025    # Redirection
0026    300: 'Multiple Choices',
0027    301: 'Moved Permanently',
0028    302: 'Found',
0029    303: 'See Other',
0030    304: 'Not Modified',
0031    305: 'Use Proxy',
0032    307: 'Temporary Redirect',
0033
0034    # Client Error
0035    400: 'Bad Request',
0036    401: 'Unauthorized',
0037    402: 'Payment Required',
0038    403: 'Forbidden',
0039    404: 'Not Found',
0040    405: 'Method Not Allowed',
0041    406: 'Not Acceptable',
0042    407: 'Proxy Authentication Required',
0043    408: 'Request Timeout',
0044    409: 'Conflict',
0045    410: 'Gone',
0046    411: 'Length Required',
0047    412: 'Precondition Failed',
0048    413: 'Request Entity Too Large',
0049    414: 'Request URI Too Long',
0050    415: 'Unsupported Media Type',
0051    416: 'Requested Range Not Satisfiable',
0052    417: 'Expectation Failed',
0053    422: 'Unprocessable Entity',
0054    423: 'Locked',
0055    424: 'Failed Dependency',
0056    426: 'Upgrade Required',
0057
0058    # Server Error
0059    500: 'Internal Server Error',
0060    501: 'Not Implemented',
0061    502: 'Bad Gateway',
0062    503: 'Service Unavailable',
0063    504: 'Gateway Timeout',
0064    505: 'HTTP Version Not Supported',
0065    507: 'Insufficient Storage',
0066    510: 'Not Extended',
0067    }