Skip to main content

A discord.py extension including useful tools for bot development and debugging.

Project description

py license travis circle issues commit status

jishaku is a debugging and experimenting cog for Discord bots using discord.py@rewrite.

It is locked to Python 3.6+ and requirements will shift as new discord.py and Python versions release. This repo primarily exists for the purpose of example and usage in other bot projects.

Documentation is available on readthedocs, although incomplete. If in doubt, all commands have docstrings visible from the help command.

Installing

This cog does not work without discord.py@rewrite

Not having it installed properly will make the cog fail to install

Use the following to install discord.py@rewrite on the latest version:

python3 -m pip install -U git+https://github.com/Rapptz/discord.py@rewrite#egg=discord.py[voice]

This cog can be installed through the following command:

python3 -m pip install -U jishaku

Or the development version:

From GitHub:

python3 -m pip install -U git+https://github.com/Gorialis/jishaku@master#egg=jishaku

From GitLab:

python3 -m pip install -U git+https://gitlab.com/Gorialis/jishaku@master#egg=jishaku

It can be used in bots directly using

bot.load_extension("jishaku")

Functionality

Extension loading/unloading

Jishaku contains 3 commands for loading and unloading extensions:

  • [jishaku|jsk] load [exts...]

  • [jishaku|jsk] reload [exts...]

  • [jishaku|jsk] unload [exts...]

These commands do as described, with reload unloading and loading cogs again for quick reloads. [exts...] are a set of extension names separated by spaces, such as cogs.one cogs.two cogs.three. reload is actually an alias of load, extensions are automatically reloaded based on their presence.

Reloading jishaku itself can be done conventionally with [jishaku|jsk] reload jishaku.

Task queue

Some actions jishaku can do may take a long time, and could be invoked incorrectly or by accident. As such, jishaku implements a command queue that long-lasting commands are submitted to.

  • [jishaku|jsk] tasks

  • [jishaku|jsk] cancel <id>

tasks shows which tasks are currently running, for what commands. You can use this to figure out which task you need to cancel.

cancel cancels a task by a given ID. It will accept a numeric ID as shown in tasks. Supplying -1 will make it cancel the last task submitted.

Python REPL

Jishaku can evaluate Python code with [jishaku|jsk] [python|py] <codeline|codeblock>.

Evaluation-like REPL is supported, allowing you to type statements like 3+4 or _ctx.author.name to return their result. This supports async syntax, so you can do evaluations like await coro() or [m async for m in _ctx.history()].

In large blocks, the last standalone expression will be returned if not in a control flow block.

Variables available in REPL are:

  • _bot: Represents the current commands.Bot instance.

  • _ctx: Represents the current commands.Context.

  • _message: Shorthand for _ctx.message

  • _msg: Shorthand for _ctx.message

  • _guild: Shorthand for _ctx.guild

  • _channel: Shorthand for _ctx.channel

  • _author: Shorthand for _ctx.message.author

These variables are all local to the current context, and as such overwriting them won’t affect future sessions.

By default, variables are not shared at all between REPL contexts. You can use [jishaku|jsk] retain on to try and preserve locals between sessions.

Yielding inside of a codeblock allows you to return intermediate data as your code runs. Any objects yielded will be treated as if they were returned, without terminating execution.

(Note that as yielding creates an asynchronous generator, you can no longer return and must yield for all results you feed back.)

An alternate command is available, [jishaku|jsk] [python_inspect|pyi] <codeline|codeblock>.

This command performs identically as the standard REPL, but inspects yielded results instead of just formatting them.

Shell Interaction

Jishaku can interact with CLI programs with [jishaku|jsk] sh <codeline|codeblock>.

On Windows, this acts similar to Command Prompt.

On Linux, your shell is automatically determined from $SHELL, or set to bash if no such environment variable exists.

For bots maintained using the git version control system, a shortcut command [jishaku|jsk] git <codeline> is available.

This simply invokes the sh command, but prefixes with git to make running git commands easier, such as jsk git pull.

Command Invocation

Jishaku can invoke other commands on your bot in special modes:

  • [jishaku|jsk] sudo <command string>

  • [jishaku|jsk] debug <command string>

  • [jishaku|jsk] repeat <times> <command string>

  • [jishaku|jsk] su <member> <command string>

  • [jishaku|jsk] in <channel> <command string>

sudo invokes a command bypassing all checks and cooldowns. This may also invoke parent group callbacks, depending on how the command is defined. For example, jsk sudo foo will invoke foo regardless of if checks or cooldowns fail.

debug invokes a command normally, but as if it were in a Jishaku evaluation context with a timer. This means if an exception occurs, it will be direct messaged to you like as in jishaku python.

When execution finishes, the time taken to complete execution will be sent as a message.

repeat invokes a command many times in a row. It acts the same as a direct message invocation, so it will obey cooldowns if commands have them. As this command may take a long time, it is submitted to the task queue so it can be cancelled.

su invokes a command as if it was invoked directly by another member. This allows you to effectively impersonate another account to your own bot, such that you can perform actions on their behalf or test command behavior.

For example, jsk su @Clyde#0001 foo will invoke foo as if it was used directly by @Clyde#0001. This command won’t work on users that the bot cannot see.

Trying to use this command with a user that is not in the current guild (if applicable) will work, but may cause weird side effects, so it is recommended to restrict usage to available members.

in invokes a command as if it was invoked in another channel. In guilds, this only works in channels of the same guild, but can work across guilds if in is used in a DM.

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

jishaku-1.10.1.106.tar.gz (27.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

jishaku-1.10.1.106-py3.7.egg (71.6 kB view details)

Uploaded Egg

jishaku-1.10.1.106-py3.6.egg (71.5 kB view details)

Uploaded Egg

jishaku-1.10.1.106-py3-none-any.whl (33.0 kB view details)

Uploaded Python 3

File details

Details for the file jishaku-1.10.1.106.tar.gz.

File metadata

  • Download URL: jishaku-1.10.1.106.tar.gz
  • Upload date:
  • Size: 27.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for jishaku-1.10.1.106.tar.gz
Algorithm Hash digest
SHA256 a240217c54f47bfae3aa7bd802f5fd95e0dcc1d6a1cb43aaf2b67d04bb51bce6
MD5 8d4b14c92d038b0d39df23d6b551c40b
BLAKE2b-256 fe9415b5827eee87c9889dcd661a8465ce76bac8988275f4c31e12d6565f5385

See more details on using hashes here.

File details

Details for the file jishaku-1.10.1.106-py3.7.egg.

File metadata

  • Download URL: jishaku-1.10.1.106-py3.7.egg
  • Upload date:
  • Size: 71.6 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for jishaku-1.10.1.106-py3.7.egg
Algorithm Hash digest
SHA256 ce9d3b6fca0de06a446a7f90426f46e0f3d347d34b8a0d7c646c14e4f8fb32d3
MD5 99738e9c5dd6d1e0545213099ac39fd2
BLAKE2b-256 930cffdbd84b87871fede023ef0e671600efde1e896b73d0788046254ffa5d6b

See more details on using hashes here.

File details

Details for the file jishaku-1.10.1.106-py3.6.egg.

File metadata

  • Download URL: jishaku-1.10.1.106-py3.6.egg
  • Upload date:
  • Size: 71.5 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for jishaku-1.10.1.106-py3.6.egg
Algorithm Hash digest
SHA256 a881640fb7e7f88360a1083115f56fa262b58c08040dc140437afcddca216172
MD5 3e899593d2b9375d1b93e92c9f797e44
BLAKE2b-256 3e4502e20d6750fd1848cdccf4d6c8fc087d4fbdf72fab8fa26dc7e21e552c24

See more details on using hashes here.

File details

Details for the file jishaku-1.10.1.106-py3-none-any.whl.

File metadata

  • Download URL: jishaku-1.10.1.106-py3-none-any.whl
  • Upload date:
  • Size: 33.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for jishaku-1.10.1.106-py3-none-any.whl
Algorithm Hash digest
SHA256 bae86c02d44354a035cb35c8e5dabdcce518cdf33fe3b09369a1ba531d4a9b51
MD5 115442d959ba537ecee66b573fa148ad
BLAKE2b-256 a15fff443ed4ef30fe9650a61e7b9904585e3c79096a8df747de6e0e4fe67d12

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