Skip to main content

A Python wrapper for the Discord API

Project description

Pycord v3

Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python.


PyPI version info PyPI supported Python versions PyPI downloads Latest release Discord server invite GitHub Sponsors Crowdin | Agile localization for tech companies

Note

Pycord supports Python 3.10 - 3.13

Key Features

  • Modern Pythonic API using async and await.

  • Proper rate limit handling.

  • Optimised for both speed and memory usage.

  • Full application API support.

Installing

Python 3.10 or higher is required

To install the library without full voice support, run the following command:

# Linux/macOS
python3 -m pip install -U py-cord

# Windows
py -3 -m pip install -U py-cord

Otherwise, to get full voice support, run the following command:

# Linux/macOS
python3 -m pip install -U "py-cord[voice]"

# Windows
py -3 -m pip install -U py-cord[voice]

To install additional packages for speedup, run the following command:

# Linux/macOS
python3 -m pip install -U "py-cord[speed]"
# Windows
py -3 -m pip install -U py-cord[speed]

To install the development version, do the following:

$ git clone https://github.com/Pycord-Development/pycord
$ cd pycord
$ python3 -m pip install -U .[voice]

or if you do not want to clone the repository:

# Linux/macOS
python3 -m pip install git+https://github.com/Pycord-Development/pycord
# Windows
py -3 -m pip install git+https://github.com/Pycord-Development/pycord

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

intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix=">", intents=intents)

@bot.command()
async def ping(ctx):
    await ctx.send("pong")

bot.run("token")

You can find more code examples in the examples directory.

Note: Make sure you do not reveal your bot token to anyone, as it can grant access to your bot.

Translations

Translation Status

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py_cord-2.7.2.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

py_cord-2.7.2-py3-none-any.whl (1.2 MB view details)

Uploaded Python 3

File details

Details for the file py_cord-2.7.2.tar.gz.

File metadata

  • Download URL: py_cord-2.7.2.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for py_cord-2.7.2.tar.gz
Algorithm Hash digest
SHA256 86d2172c5b0de33d3aa5611d940dd98acfb1b95adfa10ae7b749e6aaf923ffff
MD5 534f60b687b3c09a5dbdd1bc218eae25
BLAKE2b-256 43755b510b4f30c0fe9ae0c440d968e32df1d8857562e49cc652e4f491871384

See more details on using hashes here.

File details

Details for the file py_cord-2.7.2-py3-none-any.whl.

File metadata

  • Download URL: py_cord-2.7.2-py3-none-any.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for py_cord-2.7.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e25e5e9392f297b3d8fb8f9f31e57989276c1e2b12ebed5a7b1040dd5891d972
MD5 2aab43137d7e5a8a797d997c52f830c1
BLAKE2b-256 6f4c1d623000e5a91236895d89bfc2a2947db328182715ac2d7e7ef727938e77

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page