Skip to main content

A visual debugging extension for disnake discord bots including easy blacklisting, evaluation, echoing and much more!

Project description

Python versions License Status Issues Commit activity

  disnake-debug

a debugging and utility extension for disnake bots


disnake-debug is an extension for bot developers that enables rapid prototyping, experimentation, and debugging of features for bots. features include easy blacklisting, dynamically change bot avatar and name, pause and unpause the bot (stop it from responding to commands until unpaused), evaluate code (normal, return and dir), leave guilds, speak as the bot, view invokes and view bot statistics

One of disnake-debug's core philosophies is to be dynamic and easy-to-use. Here's the two step install:

  1. Download disnake-debug on the command line using pip:
pip install -U disnake-debug
  1. Load the extension in your bot code before it runs:
bot.load_extension('disnake-debug')

That's it!

How to use debug:

Once the extension is loaded and the bot is online you can just run the debug command If your prefix is . you would run .debug

How to configure the database (sqlite) location:

In your .env, put DATABASE_PATH=your_path Make sure there is a database.db file in your_path

Configure the embed colors:

In your .env replace EMBED_COLOR with a hex color EMBED_COLOR is automatically created and added to your .env

Simple bot example with disnake-debug:

from dotenv import load_dotenv # import load_dotenv to load your .env file
from os import environ # import environ 
from disnake import Intents # import intents
from disnake.ext.commands import Bot # import Bot class

bot = Bot(
   command_prefix=".", # your command prefix
   owner_ids=[298043305927639041], # put your owner id in here
   intents=Intents.all() # so you can see users (required for blacklist)
)
bot.load_extension("disnake-debug") # load debug extension. one command and that is debug

@bot.event
async def on_ready() -> None:
   print(f"Logged in as {bot.user}")

if __name__ == "__main__":
   load_dotenv()
   bot.run(environ["TOKEN"])

Some pictures:

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-debug-2.6.tar.gz (24.4 kB view details)

Uploaded Source

File details

Details for the file disnake-debug-2.6.tar.gz.

File metadata

  • Download URL: disnake-debug-2.6.tar.gz
  • Upload date:
  • Size: 24.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for disnake-debug-2.6.tar.gz
Algorithm Hash digest
SHA256 21b54b7521e6594e090f3eef06d7a5a45135fa64f58c939d4cf3b0ce25a21af5
MD5 dc24c0a25fcdf3431f487abb0e4de850
BLAKE2b-256 8c92efcb8884b25c578004e419bf70b7ed593d5bedd668af5cea732407bca9ff

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