Normal, Speed, Voice? #2680
|
So would I install speed for the best performance? But why does the normal version exist than? Can I have voice and speed or is that not possible? |
Answered by
timmypidashev
Feb 12, 2025
Replies: 1 comment
|
[speed] adds the following two dependencies, which add cython bindings to aiohttp, the network library used to make requests to discord. This can, in some use cases speed up your client, but is not necessary for small to intermediate bots. As a rule of thumb, If your client is not sharded or receiving 10+ requests per second I wouldn't worry too much about [speed]. Line 2 in f75b7f1 [voice] put simply adds voice support, allowing for the bot to connect and play audio in voice channels & stages. I hope this answers your question 👍 |
0 replies
Answer selected by
JustaSqu1d
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[speed] adds the following two dependencies, which add cython bindings to aiohttp, the network library used to make requests to discord. This can, in some use cases speed up your client, but is not necessary for small to intermediate bots. As a rule of thumb, If your client is not sharded or receiving 10+ requests per second I wouldn't worry too much about [speed].
pycord/requirements/speed.txt
Line 2 in f75b7f1
[voice] put simply adds voice support, allowing for the bot to connect and play audio in voice channels & stages.
I hope this answers your question 👍