PySBR
PySBR copied to clipboard
What's the rate limit?
Maybe we can implement a method to avoid hitting it.
I don't know, I just figured that if people are running scripts using this library, somebody will get rate limited / IP banned. I don't know what best practices are regarding internal rate limiting of APIs... there are libraries such as ratelimit which make this easy to implement, just not sure if it's a good idea.
I think possibly adding a configurable limit (defaults to no limit) would be good. So responsible engineers can set say a x calls per y seconds would be good so they don't have to focus on adding odd system timer pauses with the lib and can let the lib native handle the wait. I would go for like 1 api call every 3 seconds or something of the sort in my personal config.
Then folks who don't use it and abuse the lib/write bad code get IP banned due to their own fault 😆 .
Just saw your message. That's a good idea