From 5313453ab3d52748e917e5a66b8c11b352f416d9 Mon Sep 17 00:00:00 2001 From: Daniel Brown Date: Thu, 4 Jul 2024 23:40:00 +0200 Subject: [PATCH] double api call waiting time --- src/base/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/http.py b/src/base/http.py index e8a339d..a3ccd09 100644 --- a/src/base/http.py +++ b/src/base/http.py @@ -15,7 +15,7 @@ def get_text(url) -> str: return response.text -def get_throttled(url, wait=5) -> str: +def get_throttled(url, wait=10) -> str: time.sleep(wait) return get_text(url)