The most beginner friendly discord package
Project description
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.11 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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
esycord-1.3.tar.gz
(9.0 kB
view details)
Built Distribution
esycord-1.3-py3-none-any.whl
(8.9 kB
view details)
File details
Details for the file esycord-1.3.tar.gz
.
File metadata
- Download URL: esycord-1.3.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a720b4d49629411263fa353357c1e989543b5ff75edc2c08cfa815f2acaca8d |
|
MD5 | 7ac44a953077d5c18c0d11bef64b2fce |
|
BLAKE2b-256 | 32eb752dd494a640282700a71267ab74ede6a2ec7678d1c4afb8f76b41335ba4 |
File details
Details for the file esycord-1.3-py3-none-any.whl
.
File metadata
- Download URL: esycord-1.3-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1deef2fd5a46333f3a460296da36f4503b098123d828c41f1ea2fb28e7a76b5b |
|
MD5 | 28979b3e0bc031f5323c2fac1632e599 |
|
BLAKE2b-256 | aa27d0a49648a4fa9a6f75619eeda096213685825c4d60f4c1f01de9f4ce5eb4 |