Bulk create users from CSV with Genesys Python SDK

Trying to bulk create users from a CSV file using the Python SDK. I’m looping through rows and calling create_routing_user. It works for the first 50 users, then I get a 429 Too Many Requests error. I’ve added a sleep of 1 second between calls, but it still fails around user 60. Is there a specific rate limit I need to account for in the SDK or should I be batching these requests differently? Here’s the basic loop structure I’m using.