From 8ad65294d99876407b25f4aa779888fb4ca72d9c Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Mon, 31 Jan 2022 02:55:42 +0100 Subject: [PATCH] Added statusinfo for HTTP 429. --- wrw/proto.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wrw/proto.py b/wrw/proto.py index c231176..a30b8bf 100644 --- a/wrw/proto.py +++ b/wrw/proto.py @@ -6,6 +6,7 @@ statusinfo = { 403: ("Forbidden", "You are not authorized to request the requested resource."), 404: ("Not Found", "The requested resource was not found."), 405: ("Method Not Allowed", "The request method is not recognized or permitted by the requested resource."), + 429: ("Too Many Requests", "Your client is sending more frequent requests than are accepted."), 500: ("Server Error", "An internal error occurred."), 501: ("Not Implemented", "The requested functionality has not been implemented."), 503: ("Service Unavailable", "Service is being denied at this time."), -- 2.11.0