From c698c3de446c8ec61e8e9ea97439f265d14ade0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 11 May 2023 16:04:37 +0200 Subject: [PATCH] [newgrounds] add default delay between requests (#4046) --- gallery_dl/extractor/newgrounds.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery_dl/extractor/newgrounds.py b/gallery_dl/extractor/newgrounds.py index 2b759ec0..5d100a49 100644 --- a/gallery_dl/extractor/newgrounds.py +++ b/gallery_dl/extractor/newgrounds.py @@ -23,6 +23,7 @@ class NewgroundsExtractor(Extractor): root = "https://www.newgrounds.com" cookiedomain = ".newgrounds.com" cookienames = ("NG_GG_username", "vmk1du5I8m") + request_interval = 1.0 def __init__(self, match): Extractor.__init__(self, match)