Dispy - package for creating bots in discord written in Python
Project description
Dispy
Advantages
- Package with
async/await
support - Wrappers and decorators support
- Simple code with syntax sugar
- Minimal python version is 3.8
- Readable library code
Getting started
Dispy is package for creating bots in Discord. This package use discord API and discord Gateway for handle events or, for example, sending messages. Bot use for different goals; handle information on your server, creating mini games in discord, auto moderation in your discord server and other.
For example, you can reply to message that is sended by any user using this code:
from disspy import Client, Message # Import package
import os
TOKEN = os.environ["TOKEN"]
client = Client(TOKEN) # Create a client
@client.on_message("create") # On message create
async def on_messagec(message: Message): # message - sended message
await message.reply("Hello!") # Reply to a message
client.run() # Run client
Download package
Download latest version (needs pip)
# Windows
pip install -U disspy
# MacOS / Linux
python3 -m pip install -U disspy
Download dev version (needs git and pip)
# Windows
git clone https://github.com/itttgg/dispy.git
cd dispy
pip install -U .
# MacOs / Linux
git clone https://github.com/itttgg/dispy.git
cd dispy
python3 -m pip install -U .
Links
https://github.com/itttgg/dispy - GitHub repo
https://pypi.org/project/disspy - Project site on PyPi
https://disspy.readthedocs.io - Site with docs for package
https://discord.gg/QsE5DSQrsx - Discord server
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
File details
Details for the file disspy-0.7.tar.gz
.
File metadata
- Download URL: disspy-0.7.tar.gz
- Upload date:
- Size: 29.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68ea49086f9535e1628d0f630699f9f0555e43f7f77e78824a91f3f6cf6d5c65 |
|
MD5 | 3e45bb598238429fe1249d794ed94e1e |
|
BLAKE2b-256 | db16b4250d28ab4690062a78cf6ce4dfe929e48176ca03ccba109560adc2c8da |