Skip to main content

The most beginner friendly discord package

Project description

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')

Future

  • Automod

  • Full Voice Support

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

esycord-1.1.1-py3-none-any.whl (7.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page