Skip to main content

A Python wrapper for the Discord API

Project description

Disnake Banner

disnake

Discord server invite PyPI version info PyPI supported Python versions Commit activity

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

Key Features

  • Proper rate limit handling.
  • Type-safety measures.
  • FastAPI-like slash command syntax.

The syntax and structure of discord.py 2.0 is preserved.

Installing

Python 3.10 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 disnake

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

Installing disnake with full voice support requires you to replace disnake here, with disnake[voice]. To learn more about voice support (or installing the development version), please visit this section of our guide.

Note that voice support on Linux requires installation of libffi-dev and python-dev packages, via your preferred package manager (e.g. apt, dnf, etc.) before running the following commands.

Versioning

This project does not quite follow semantic versioning; for more details, see version guarantees.

To be on the safe side and avoid unexpected breaking changes, pin the dependency to a minor version (e.g. disnake==a.b.* or disnake~=a.b.c) or an exact version (e.g. disnake==a.b.c).

Quick Example

Slash Commands Example

import disnake
from disnake.ext import commands

bot = commands.InteractionBot(test_guilds=[12345])

@bot.slash_command()
async def ping(inter):
    await inter.response.send_message("Pong!")

bot.run("BOT_TOKEN")

Context Menus Example

import disnake
from disnake.ext import commands

bot = commands.InteractionBot(test_guilds=[12345])

@bot.user_command()
async def avatar(inter, user):
    embed = disnake.Embed(title=str(user))
    embed.set_image(url=user.display_avatar.url)
    await inter.response.send_message(embed=embed)

bot.run("BOT_TOKEN")

Prefix Commands Example

import disnake
from disnake.ext import commands

bot = commands.Bot(command_prefix=commands.when_mentioned)

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

bot.run("BOT_TOKEN")

You can find more examples in the examples directory.


DocumentationGuideDiscord ServerDiscord Developers


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

disnake-2.12.0.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.

disnake-2.12.0-py3-none-any.whl (1.2 MB view details)

Uploaded Python 3

File details

Details for the file disnake-2.12.0.tar.gz.

File metadata

  • Download URL: disnake-2.12.0.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for disnake-2.12.0.tar.gz
Algorithm Hash digest
SHA256 7cbef25d5f5968e24ccc6ec896d12a7d51581dfef7e27871e2992b025e071efe
MD5 99b0fd3acc4f3b04391426d5471238d7
BLAKE2b-256 6e38ea128bb6c40e23ac73edab97f5f4b5eb6ef1865e1ff3e7f02d6457ef03de

See more details on using hashes here.

Provenance

The following attestation bundles were made for disnake-2.12.0.tar.gz:

Publisher: release.yaml on DisnakeDev/disnake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file disnake-2.12.0-py3-none-any.whl.

File metadata

  • Download URL: disnake-2.12.0-py3-none-any.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for disnake-2.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b2f2340bac5cd23262493ae615a5f7e03122b60193485e2eb8f5a358f79f0b4d
MD5 b8fd74f0f3aea7aaef76061681619270
BLAKE2b-256 fefc92c17c2e35267737ae1e1cd713e2beb7d7459030e1e2545d5eeb84aa4411

See more details on using hashes here.

Provenance

The following attestation bundles were made for disnake-2.12.0-py3-none-any.whl:

Publisher: release.yaml on DisnakeDev/disnake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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