๐A GitHub repository of how to make embeds use discord.py!
this repository is like a little helper to help beginners on discord.py!
- install discord.py
pip install discord.py- import Discord lib
import discord
from discord.ext import commands- Configure Bot
intents = discord.Intents.default()
intents.members = True
intents.members = True
bot = commands.Bot(command_prefix='+', intents=intents)- use the bot's main event to make her online
@bot.event
async def on_ready():
print(f"GalleryOfEmbed's are ready to use!! {bot.user}")
await bot.tree.sync()