esycord

The most beginner friendly discord package


Keywords
Discord, bot, maker, beginner, simple, easycord, esycord
License
MIT
Install
pip install esycord==1.2

Documentation

esycord

Discord User PyPI version info PyPI supported Python versions

This is a very beginner friendly package for all those who wanna make a Discord bot but dont have much experience with Discord's API Wrapper.

Installing

Python 3.8 or higher is required

# Linux/macOS
python3 -m pip install -U esycord

# Windows
py -3 -m pip install -U esycord

Bot Example

import esycord
from esycord import discord

intents = discord.Intents.default()
intents.message_content = True

bot = esycord.Bot('!', intents=intents)
@bot.event
async def on_ready():
    print(f'Logged in as {bot.user}')

@bot.event
async def on_message(message):
if message == 'ping':
    await message.channel.send('pong')
bot.run('token')

Links

Future

  • Automod
  • Full Voice Support