What is Discord?

Discord is a free chat app that provides different chat functionalities such as voice, video, and text chat it is used by millions of people around the world for professional as well as fun use. 

People create communities referred to as servers in discord and other people can join these servers to hangout there to meet new people and talk about their interests. Discord also offers functionality to create private servers where only invited people can join using these private servers people can have a private talk with their close ones.

Discord Servers are filled with channels created by the owner they can be text channels, audio or video channel. These channels are used to talk about specific topics on the server.

Creating a Discord Bot in Python

If you are familiar with online communities and if you are a part of one or you own one, you must have heard about discord and in discord, you may have seen bots managing those communities. So in this article, we are going to set up our discord developer portal account and will create a discord bot. A minimal bot with basic functionalities and if you want you can always extend the functionalities of this bot according to your needs.

Similar Reads

What is Discord?

Discord is a free chat app that provides different chat functionalities such as voice, video, and text chat it is used by millions of people around the world for professional as well as fun use....

What are Discord Bots?

Discord is used by more than 10 million people daily using these stats we can clearly see people’s interest in communities and discord is growing. People are exploring and joining new servers....

How to Make a Discord Bot in Python

First and foremost we need to have a dedicated server where we are going to setup our bot. This bot will work on a single channel on this server. To create a server you need to have a discord account if you don’t have one yet you can create one by simply going to https://discord.com/....

Creating a Channel on Server

Now we need to create a channel where this bot will be active, this bot will only respond on this channel....

Creating A Bot

Now that we have our account with the server ready we can go ahead and create our first bot on the discord developer portal. The discord developer portal is a platform provided by discord for people who wants to extend the capabilities of discord and use it for building more cool stuff, one of the examples is creating bots....

Customizing and Authorizing Bot

Our bot is created it’s time to give permissions and define scopes of the bot. Permission refers to what our bot can do on the server, for example, sending messages. Scope refers to what role the bot will perform....

Writing Code for Bot

In this section, we are going to write python code for our discord bot....