An API wrapper around Discord API written in Python
Project description
Diskord
This library is a maintained fork of now archived library, discord.py.
A modern and easy to use API wrapper around Discord API written in Python.
Features
- Modern, Pythonic API based on
async
/await
- Consistent, object oriented & easy to use interface
- Provides full coverage of Discord API
- Proper and sane ratelimit handling
- Optimized in both speed and memory
- Extensions support & prebuilt powerful commands handler
Installation
Python 3.8 or higher is required to install this library.
Basic Installation
To install the library without full voice support, you can just run the following command:
python -m pip install diskord
Voice Support
Optionally, To interact with discord's voice API, You would require voice support of this library which you can install like so:
python -m pip install diskord[voice]
Development Version
You must have git installed to install development version. Otherwise, you can download the code.
$ git clone https://github.com/nerdguyahmad/diskord
$ cd diskord
$ python -m pip install -U .[voice]
or in short;
python -m pip install git+https://github.com/diskord-dev/diskord.git
Quick Example
Here are some quick examples to give you a quickstart and show off the basic features of the library.
Application (Slash) Commands
import diskord
client = diskord.Client()
@client.slash_command(description='Ping-Pong!')
async def ping(ctx):
await ctx.respond('Pong!')
client.run('token')
Legacy (Prefixed) Commands
import diskord
from diskord.ext import commands
bot = commands.Bot(command_prefix='>')
@bot.command()
async def ping(ctx):
await ctx.send('pong')
bot.run('token')
You can find more examples in the examples directory.
Links
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
Built Distribution
File details
Details for the file diskord-2.6.1-py3-none-any.whl
.
File metadata
- Download URL: diskord-2.6.1-py3-none-any.whl
- Upload date:
- Size: 953.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5067bb63871a1d07f75bf69eae280c259bea6bcd93918ab23fa8ae343f11119 |
|
MD5 | 56cf77610662504ae47c9ed8a1201bdf |
|
BLAKE2b-256 | c99d08c4f6497cd8740bc96325df4e2c0332fc657680fd1904aa2fb88c28791b |