One of the most common requests I’ve seen on my StackOverflow is a method for avoiding rate limits. If you’re working with any kind of API or wrapper you are going to have rate limits. These can be nasty to deal with. The majority of API’s make their rate limits public, most of them at least—some limits may be hidden. An example of this can be seen here in the Discord API. Wouldn’t it be nice if we could just wait between each request? That is the basic idea of what my StackOverflow followers wanted. Now I am not one to spoon feed but even I had to take a bit of time to come up with a viable solution.