RealJammy / The-Jambot

A repo for my discord bot!
4 stars 13 forks source link

Convert from requests lib to aiohttp #31

Closed JamBot3000 closed 3 years ago

JamBot3000 commented 3 years ago

Using requests for a discord bot isn't good. If one person uses a command that makes a request- that request will need to be finished before someone else's can go through. This Means when multiple people are using the bot- it can appear quite slow. "aiohttp" is an asynchronous requests library- which resolves this problem because it allows us to make multiple requests at the same time.