[furaffinity] use a 1s delay between requests by default (#7054)

This commit is contained in:
Mike Fährmann
2025-02-25 16:45:55 +01:00
parent 87e3cb17e6
commit 876169ded5
3 changed files with 5 additions and 1 deletions

View File

@@ -403,6 +403,8 @@ Default
``weebcentral``, ``weebcentral``,
``xfolio``, ``xfolio``,
``zerochan`` ``zerochan``
* ``"1.0"``
``furaffinity``
* ``"1.0-2.0"`` * ``"1.0-2.0"``
``flickr``, ``flickr``,
``pexels``, ``pexels``,

View File

@@ -264,7 +264,8 @@
}, },
"furaffinity": "furaffinity":
{ {
"cookies" : null, "cookies" : null,
"sleep-request": "1.0",
"descriptions": "text", "descriptions": "text",
"external" : false, "external" : false,

View File

@@ -23,6 +23,7 @@ class FuraffinityExtractor(Extractor):
cookies_domain = ".furaffinity.net" cookies_domain = ".furaffinity.net"
cookies_names = ("a", "b") cookies_names = ("a", "b")
root = "https://www.furaffinity.net" root = "https://www.furaffinity.net"
request_interval = 1.0
_warning = True _warning = True
def __init__(self, match): def __init__(self, match):