A discord.py extension including useful tools for bot development and debugging.
Project description
jishaku
a debugging and utility extension for discord.py bots
Read the documentation online.
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 jishaku on the command line using pip:
pip install -U jishaku
- Load the extension in your bot code before it runs:
bot.load_extension('jishaku') # or await bot.load_extension('jishaku')That's it!
You can also import the module to use the command development utilities.
Index
Command reference
>
|
_ctx |
The Context that invoked the command. |
_bot |
The running Bot instance. |
_author _channel _guild _me _message _msg |
Shortcuts for attributes on _ctx .
|
_find _get |
Shortcuts for discord.utils functions.
|
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.
> jishaku [dis|disassemble] <argument>
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.
> jishaku ast <argument>
This command compiles Python code into its Abstract Syntax Tree, and then displays it as a formatted tree of AST blocks.
>
The shell command executes commands within your system shell.
|
>
|
>
This command reads a file from your file system, automatically detecting encoding and (if applicable) highlighting.
|
>
|
Installing development versions
If you'd like to test the latest versions of 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/scarletcafe/jishaku@master"From GitLab:
pip install -U "jishaku @ git+https://gitlab.com/scarletcafe/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/scarletcafe/jishaku@master"From GitLab:
pip install -U --force-reinstall "jishaku @ git+https://gitlab.com/scarletcafe/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.
Acknowledgements
The documentation and this README uses icons from the Material Design Icon library, which is licensed under the Apache License Version 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jishaku-2.6.0.tar.gz
.
File metadata
- Download URL: jishaku-2.6.0.tar.gz
- Upload date:
- Size: 74.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9b4d053b8cbdb6a8fd7a8d549d0928c2e5294044cbb145cbb26df36f97ce289 |
|
MD5 | 505c702c291da60a824f69792aceb3cb |
|
BLAKE2b-256 | cc5972e38c9a0314274a524ec28ef49630734b326e31784c47d0e3b7fe305522 |
File details
Details for the file jishaku-2.6.0-py3-none-any.whl
.
File metadata
- Download URL: jishaku-2.6.0-py3-none-any.whl
- Upload date:
- Size: 80.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a39366e5b2bd51c0d21ef8783c3e00c927c59792a2b0f5467c156b1f69eb912b |
|
MD5 | c00c7ea08842546403164b1802f5063b |
|
BLAKE2b-256 | ad9aea48e6f0bef605618c32feaab2fcd6a02ac74113d67f9ae20586af602e70 |