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.2.tar.gz
(15.0 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.2-py3-none-any.whl
(13.8 kB
view details)
File details
Details for the file esycord-1.6.2.tar.gz.
File metadata
- Download URL: esycord-1.6.2.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
189cd6d73a4a13d9a156f92e41a8306708ff6da18e5b3b8bdbb6db2d9b7ff15b
|
|
| MD5 |
af18a6066964fb3fbfb58f9b429865e9
|
|
| BLAKE2b-256 |
423ebf6263e6be0967d4d53271a82939b7815e6fcbc634977485d85b27aad543
|
File details
Details for the file esycord-1.6.2-py3-none-any.whl.
File metadata
- Download URL: esycord-1.6.2-py3-none-any.whl
- Upload date:
- Size: 13.8 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 |
89db93b08c0117a7827427bc1aed001799d523607f28b79023a244666109477e
|
|
| MD5 |
1496c5e8b3cbfad4b9a60261436ff004
|
|
| BLAKE2b-256 |
700fe69f6cb7558108bba2f8bd1938530beff24daa3dec9febfa13a57298ed06
|