From 3a0450adbf168a2a35a96c9b0e6ebef485386be5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 7 Jan 2023 14:45:56 +0100 Subject: [PATCH] [behance] use default delay between requests (#2507) --- gallery_dl/extractor/behance.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gallery_dl/extractor/behance.py b/gallery_dl/extractor/behance.py index cf332acb..6da61752 100644 --- a/gallery_dl/extractor/behance.py +++ b/gallery_dl/extractor/behance.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- -# Copyright 2018-2022 Mike Fährmann +# Copyright 2018-2023 Mike Fährmann # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation. -"""Extract images from https://www.behance.net/""" +"""Extractors for https://www.behance.net/""" from .common import Extractor, Message from .. import text @@ -17,6 +17,7 @@ class BehanceExtractor(Extractor): """Base class for behance extractors""" category = "behance" root = "https://www.behance.net" + request_interval = (2.0, 4.0) def items(self): for gallery in self.galleries():