a debugging and utility extension for disnake bots
disnake-jishaku is an extension for bot developers that enables rapid prototyping, experimentation, and debugging of features for bots.
One of jishaku's core philosophies is to be dynamic and easy-to-use. Here's the two step install:
- Download disnake-jishaku on the command line using pip:
pip install -U disnake-jishaku
- Load the extension in your bot code before it runs:
bot.load_extension('jishaku')That's it!
You can also import the module to use the command development utilities.
- Index
- Command reference
- Installing development versions
- Embedded JSK
- Disabling the automatic result handle from "jsk py"
- Acknowledgements
The Python commands execute or evaluate Python code passed into them.
It supports simple expressions:
It also supports async expressions:
You can pass in codeblocks for longer blocks of code to execute, and you can use yield to return intermediate results within your processing.
The inspect variant of the command will return a codeblock with detailed inspection information on all objects returned. The variables available by default in all execution contexts are:
The underscore prefix on the provided variables is intended to help prevent shadowing when writing large blocks of code within the command. If you decide that you don't want the prefix, you can disable it by setting the JISHAKU_NO_UNDERSCORE environment variable to true .
Each Python command is individually scoped. That means variables you create won't be retained in later invocations. You can use jishaku retain on to change this behavior and retain variables, and jishaku retain off if you change your mind later.
This command compiles Python code in an asynchronous context, and then disassembles the resulting function into Python bytecode in the style of dis.dis .
This allows you to quickly and easily determine the bytecode that results from a given expression or piece of code. The code itself is not actually executed. |
These commands load, reload, or unload extensions on your bot.
You can reload jishaku itself with jsk reload jishaku .
jsk reload ~ will reload all extensions on your bot.
You can load, reload, or unload multiple extensions at once: jsk reload cogs.one cogs.two
This command gracefully shuts down your bot. This command calculates Round-Trip Time for your bot to the API. It does this by calculating response time samples, so you can tell if your bot is being slow or not. |
If you'd like to test the latest versions of disnake-jishaku, you can do so by downloading from the git hosts instead of from PyPI.
From GitHub:
pip install -U "jishaku @ git+https://github.com/Kraots/jishaku@master"
Please note that the new 2020 dependency resolver now no longer discounts git package sources from reinstall prevention, which means that if you are installing the jishaku development version multiple times within the same version target you may run into pip just discarding the update.
If you run into such a problem, you can force jishaku to be reinstalled like this:
From GitHub:
pip install -U --force-reinstall "jishaku @ git+https://github.com/Kraots/jishaku@master"
You must have installed jishaku with one of the commands above before doing this else you will probably end up with a broken installation.
import os
# Setting the jsk command to return an embed
os.environ['JISHAKU_EMBEDDED_JSK'] = 'true'
# Setting the embed's colour
# Acceptable formats:
# 0x<hex>
# #<hex>
# 0x#<hex>
# rgb(<number>, <number>, <number>)
# Any of the classmethod in disnake.Colour
os.environ['JISHAKU_EMBEDDED_JSK_COLOUR'] = 0x2F3136
Aditionally, you can also remove the result handle from the jsk py
, what that means is that it will only send the message of your result if you are returning something, it will not send embeds, files, or anything else automatically like it did before. This option is enabled by default, you can enable it by adding os.environ['JISHAKU_PY_RES'] = 'false'
in your code.
The documentation and this README uses icons from the Material Design Icon library, which is licensed under the Apache License Version 2.0.