diff --git a/discordBot.py b/discordBot.py index cf71743..91825f5 100644 --- a/discordBot.py +++ b/discordBot.py @@ -1,9 +1,10 @@ #imports -import asyncio +import asyncio #Asyncio used to run the co-routines that are used in the discord library +#discord imports used to intergrate the bot with the discord client from discord import Game from discord.ext import commands import discord -import youtube_dl +import youtube_dl #youtube_dl downloads and plays specific youtube urls using the opus libraries ffmpeg import random import requests from lxml import html @@ -12,7 +13,7 @@ from discord.utils import get BOT_PREFIX = ("?") -# token would be where you put your bot's token to join as the client but it's going on github so nah +# token would be where you put your bot's token to join as the client but the code is going to be public so it's been removed TOKEN = "ommited" client = commands.Bot(command_prefix=BOT_PREFIX)