@@ -32,37 +32,33 @@ def __eq__(self, other: "Status"):
3232
3333
3434OK_200 = Status (200 , "OK" )
35- """200 OK"""
35+
36+ CREATED_201 = Status (201 , "Created" )
37+
38+ ACCEPTED_202 = Status (202 , "Accepted" )
3639
3740NO_CONTENT_204 = Status (204 , "No Content" )
38- """204 No Content"""
41+
42+ PARTIAL_CONTENT_206 = Status (206 , "Partial Content" )
3943
4044TEMPORARY_REDIRECT_307 = Status (307 , "Temporary Redirect" )
41- """307 Temporary Redirect"""
4245
4346PERMANENT_REDIRECT_308 = Status (308 , "Permanent Redirect" )
44- """308 Permanent Redirect"""
4547
4648BAD_REQUEST_400 = Status (400 , "Bad Request" )
47- """400 Bad Request"""
4849
4950UNAUTHORIZED_401 = Status (401 , "Unauthorized" )
50- """401 Unauthorized"""
5151
5252FORBIDDEN_403 = Status (403 , "Forbidden" )
53- """403 Forbidden"""
5453
5554NOT_FOUND_404 = Status (404 , "Not Found" )
56- """404 Not Found"""
5755
5856METHOD_NOT_ALLOWED_405 = Status (405 , "Method Not Allowed" )
59- """405 Method Not Allowed"""
57+
58+ TOO_MANY_REQUESTS_429 = Status (429 , "Too Many Requests" )
6059
6160INTERNAL_SERVER_ERROR_500 = Status (500 , "Internal Server Error" )
62- """500 Internal Server Error"""
6361
6462NOT_IMPLEMENTED_501 = Status (501 , "Not Implemented" )
65- """501 Not Implemented"""
6663
6764SERVICE_UNAVAILABLE_503 = Status (503 , "Service Unavailable" )
68- """503 Service Unavailable"""
0 commit comments