From fe7e2281ac328c9eaa89c9fd7313f8b3a2e69463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Tue, 20 Feb 2024 18:19:49 +0100 Subject: [PATCH] [nijie] increase default delay between requests (#5221) 1-2s is not enough --- gallery_dl/extractor/nijie.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/nijie.py b/gallery_dl/extractor/nijie.py index 96145130..c50c0139 100644 --- a/gallery_dl/extractor/nijie.py +++ b/gallery_dl/extractor/nijie.py @@ -19,7 +19,7 @@ class NijieExtractor(AsynchronousMixin, BaseExtractor): directory_fmt = ("{category}", "{user_id}") filename_fmt = "{image_id}_p{num}.{extension}" archive_fmt = "{image_id}_{num}" - request_interval = (1.0, 2.0) + request_interval = (2.0, 4.0) def __init__(self, match): BaseExtractor.__init__(self, match)