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
pip Installation
# Linux/macOS
python3 -m pip install -U esycord
# Windows
py -3 -m pip install -U esycord
Manual Installation
# git/Github Desktop is needed
git clone https://github.com/Aayush-Srivastava2410/esycord.git
cd esycord
pip install -r requirements.txt
pip install -e .
Bot Example
import esycord
intents = esycord.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
Latest version :: 1.6.1
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.6.1.tar.gz
(14.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
esycord-1.6.1-py3-none-any.whl
(12.9 kB
view details)
File details
Details for the file esycord-1.6.1.tar.gz.
File metadata
- Download URL: esycord-1.6.1.tar.gz
- Upload date:
- Size: 14.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
036f725b2d6c45a143801181b20b6440275610c862cd9ab5c9f900a03851d7dd
|
|
| MD5 |
5fe4a505e9835fed89b5351205fef3ba
|
|
| BLAKE2b-256 |
18fe227dc33ef82141f880108d5dee6fdcce5d599e056c0a47d536fe2895fba3
|
File details
Details for the file esycord-1.6.1-py3-none-any.whl.
File metadata
- Download URL: esycord-1.6.1-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2edeb6656b193d3100712624183fabc210eb32f2306a1bba384de9ef9fa9537
|
|
| MD5 |
19868e07c9c814f329afa58d39234374
|
|
| BLAKE2b-256 |
7d179910f3b921aef9690ac2dc7890048edbe908b21442dea30cdbfe7964301e
|