Sleep timer added.

A dely of 1 second has been added to keep the MusicBrainz API from dropping requests (503 errors).
This commit is contained in:
20xd6 2024-09-30 22:06:30 -04:00
parent c01b4cdcdd
commit ea7396ff53

View File

@ -2,6 +2,7 @@
import configparser
import os
from time import sleep
import dir_activities
import api_calls
@ -38,3 +39,4 @@ for artist in dir_list:
print(e)
count += 1
sleep(1)