[sankaku] increase default values for 'wait-min/-max'

pull/133/head
Mike Fährmann 6 years ago
parent 68d6033a5d
commit b164231bca
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -590,7 +590,7 @@ extractor.sankaku.wait-min & .wait-max
--------------------------------------
=========== =====
Type ``float``
Default ``2.5`` and ``5.0``
Default ``3.0`` and ``6.0``
Description Minimum and maximum wait time in seconds between each image
Sankaku Channel responds with ``429 Too Many Requests`` if it

@ -50,8 +50,8 @@
{
"username": null,
"password": null,
"wait-min": 2.5,
"wait-max": 5.0
"wait-min": 3.0,
"wait-max": 6.0
},
"imgur":
{
@ -92,8 +92,8 @@
{
"username": null,
"password": null,
"wait-min": 2.5,
"wait-max": 5.0
"wait-min": 3.0,
"wait-max": 6.0
},
"seiga":
{

@ -33,8 +33,8 @@ class SankakuExtractor(SharedConfigExtractor):
self.start_page = 1
self.start_post = 0
self.extags = self.config("tags", False)
self.wait_min = self.config("wait-min", 2.5)
self.wait_max = self.config("wait-max", 5.0)
self.wait_min = self.config("wait-min", 3.0)
self.wait_max = self.config("wait-max", 6.0)
if self.wait_max < self.wait_min:
self.wait_max = self.wait_min

Loading…
Cancel
Save