A Python wrapper for the Discord API
Project description
A fork of discord.py. Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python.
What Happened to Discord.py?
Rapptz, also known as Danny, the maintainer and core developer of discord.py will no longer be updating it. Here’s his Full explanation and an FAQ.
Pycyat v1.7.3 is the same as discord.py v1.7.3, however, Pycyat v2.0 will support newer features of the API such as slash commands, context menus, scheduled events, timeouts, and others.
Key Features
Modern Pythonic API using async and await.
Proper rate limit handling.
Optimised for both speed and memory usage.
Full Application Command Support
Installing
Python 3.8 or higher is required
To install the library without full voice support, you can just run the following command:
# Linux/macOS
python3 -m pip install -U pycyat
# Windows
py -3 -m pip install -U pycyat
Otherwise to get voice support you should run the following command:
# Linux/macOS
python3 -m pip install -U "pycyat[voice]"
# Windows
py -3 -m pip install -U pycyat[voice]
To install additional packages for speedup, run the following command:
# Linux/macOS
python3 -m pip install -U "pycyat[speed]"
# Windows
py -3 -m pip install -U pycyat[speed]
To install the development version, do the following:
$ git clone https://github.com/zearakun/pycyat
$ cd pycyat
$ python3 -m pip install -U .[voice]
Optional Packages
Please note that while installing voice support on Linux, you must install the following packages via your preferred package manager (e.g. apt, dnf, etc) BEFORE running the above commands:
libffi-dev (or libffi-devel on some systems)
python-dev (e.g. python3.10-dev for Python 3.10)
Quick Example
import discord
bot = discord.Bot()
@bot.slash_command()
async def hello(ctx, name: str = None):
name = name or ctx.author.name
await ctx.respond(f"Hello {name}!")
@bot.user_command(name="Say Hello")
async def hi(ctx, user):
await ctx.respond(f"{ctx.author.mention} says hello to {user.name}!")
bot.run("token")
Traditional Commands Example
import discord
from discord.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.
Note: Make sure you do not reveal your bot token to anyone, it can grant access to your bot.
Links
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
Built Distribution
File details
Details for the file pycyat-2.0.0b4.tar.gz
.
File metadata
- Download URL: pycyat-2.0.0b4.tar.gz
- Upload date:
- Size: 882.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.63.0 importlib-metadata/3.10.1 keyring/21.8.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d81752b9c0b752abcf8b8441ace187aa2fe301d8d7240d412a786af798001de3 |
|
MD5 | 99114921fe4d71f1ca4191b95cc5dfa4 |
|
BLAKE2b-256 | ab847dc9f44a4408a53cc7f73fefec0cdb6d25c91f73af0fef4de0faefffbc95 |
File details
Details for the file pycyat-2.0.0b4-py3-none-any.whl
.
File metadata
- Download URL: pycyat-2.0.0b4-py3-none-any.whl
- Upload date:
- Size: 995.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.63.0 importlib-metadata/3.10.1 keyring/21.8.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c13fd5f769b87a5fc0658255022dff74452298b88f43e69fced7a3068e816814 |
|
MD5 | 9d0fe3167edbd82963c1c45ef57ba903 |
|
BLAKE2b-256 | a401aafeebf624d1cacdea293c19fc64e79c45e4671394310cb55be234220cfd |