discord js vs discord py

Solutions on MaxInterview for discord js vs discord py by the best coders in the world

showing results for - "discord js vs discord py"
Alessio
10 Jan 2017
1#To install discord for python, use the below in Command Prompt (WINDOWS) or Terminal (MAC).
2pip install discord
3#After this, you can simply:
4import discord
5#In your python scripts.
Milan
04 Mar 2018
1//To install discord for javascript, use the below in Command Prompt (WINDOWS) or Terminal (MAC).
2npm install discord.js
3//After this, you can simply:
4const Discord = require('discord.js');
5//In your javascript projects.
6//Please let me know if there is something incorrect here - I don't primarily use JS.