Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between discord.py and discord.py[voice]

I plan on making a discord bot using python. What are the differences between discord.py and discord.py[voice]?

like image 555
John Zheng Avatar asked Sep 21 '20 03:09

John Zheng


1 Answers

the difference between discord.py and discord[voice] is just PyNaCl library. PyNaCl is used to make discord music bots. If you are currently not looking for making a music bot then you should probably use discord.py when ever you want to add like music bot features. Then just install PyNaCl library.

In shot: -> pip install -U discord.py for normal discord.py -> pip install -U discord.py[voice] for voice support for your bot

++For reference++

like image 80
Naman Avatar answered Nov 03 '22 21:11

Naman