From 36a1f0ffaba7d325c89f42933c8bb555a02a9397 Mon Sep 17 00:00:00 2001 From: 20xd6 <20xd6@airmail.cc> Date: Mon, 14 Oct 2024 23:33:33 -0400 Subject: [PATCH] Reenable basic ratelimit. A one second delay between requests to the fanart.tv servers. This is to prevent a 503 response that is given when requests are over the number per second allowed. --- get_artist_art.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get_artist_art.py b/get_artist_art.py index 46c0807..4293a09 100755 --- a/get_artist_art.py +++ b/get_artist_art.py @@ -39,4 +39,4 @@ for artist in dir_list: print(e) count += 1 - #sleep(1) + sleep(1)