Skip to main content

A Python wrapper for the Discord API

Project description

Discord server invite PyPI version info PyPI supported Python versions PyPI downloads

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

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 py-cord

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

Otherwise to get voice support you should 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]

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 examples in the examples directory.

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

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.0.0b7.tar.gz (891.6 kB 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.0.0b7-py3-none-any.whl (1.0 MB view details)

Uploaded Python 3

File details

Details for the file py-cord-2.0.0b7.tar.gz.

File metadata

  • Download URL: py-cord-2.0.0b7.tar.gz
  • Upload date:
  • Size: 891.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.2

File hashes

Hashes for py-cord-2.0.0b7.tar.gz
Algorithm Hash digest
SHA256 681cc1589eaa90f39a812e8dd94115eff305103ce974f4ca4a2062cea027b47f
MD5 30fa7dce8319e2c8f17f24c0c57cbf0d
BLAKE2b-256 433b2f5017b6072f3f6803ac58f73e7c28b5ddc7f3ba483a1a405e9a100e4799

See more details on using hashes here.

File details

Details for the file py_cord-2.0.0b7-py3-none-any.whl.

File metadata

  • Download URL: py_cord-2.0.0b7-py3-none-any.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.2

File hashes

Hashes for py_cord-2.0.0b7-py3-none-any.whl
Algorithm Hash digest
SHA256 4a38ea3a535ab301e53edb7ac8244a793ab174577b5360fbddf9670c9a5f620a
MD5 cdd985004ee9de1fe0ba98291548eca7
BLAKE2b-256 1e5dec0fef8dcdb5b040e1cbee44d32414647de897f8813c9628965fcaff9d83

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