filmov
tv
Discord Bot - The Complete Guide for Python - Part 1

Показать описание
Have you wanted to learn how to get started coding with Python but aren't sure where to start?
Well - I personally started with Discord bots - and it was a blast learning Python!
In this video - I go over how you can get everything set-up from installation to project creation, as well as environment set-up.
By the end of this video - you will have your very own working discord bot that you can use in either your private server, or our group server.
To add your bot to our group, first join by visiting:
DEPENDENCIES FOR THIS PROJECT:
ANACONDA:
VISUAL STUDIO:
PYTHON:
DISCORD DEVELOPER PORTAL:
-----------BOT CODE SCRIPT TO GET STARTED------------------------
import disnake
from config import token
class MyBot(commands.Bot):
def __init__(self, command_prefix, intents=intents):
super().__init__(command_prefix, intents=intents)
async def on_ready(self):
async def on_message(self, message):
return
bot = MyBot(command_prefix="!", intents=intents)
async def hello(ctx):
----------------------------------------------------------------------------------
I hope you find this video helpful, and hope it was able to help someone out there finally get started with coding!
Thanks for watching.
Well - I personally started with Discord bots - and it was a blast learning Python!
In this video - I go over how you can get everything set-up from installation to project creation, as well as environment set-up.
By the end of this video - you will have your very own working discord bot that you can use in either your private server, or our group server.
To add your bot to our group, first join by visiting:
DEPENDENCIES FOR THIS PROJECT:
ANACONDA:
VISUAL STUDIO:
PYTHON:
DISCORD DEVELOPER PORTAL:
-----------BOT CODE SCRIPT TO GET STARTED------------------------
import disnake
from config import token
class MyBot(commands.Bot):
def __init__(self, command_prefix, intents=intents):
super().__init__(command_prefix, intents=intents)
async def on_ready(self):
async def on_message(self, message):
return
bot = MyBot(command_prefix="!", intents=intents)
async def hello(ctx):
----------------------------------------------------------------------------------
I hope you find this video helpful, and hope it was able to help someone out there finally get started with coding!
Thanks for watching.