Increase rate limiting to 15s (5 req/min quota compliance)

This commit is contained in:
2025-12-31 10:28:18 +01:00
parent 6daf686954
commit a4e3906c3b
2 changed files with 4 additions and 4 deletions

View File

@@ -227,8 +227,8 @@ def main():
else:
failed += 1
# Rate limiting
time.sleep(2)
# Rate limiting (5 requests/min limit)
time.sleep(15)
# Progress
progress = ((current / total_creatures) * 100)