jishaku


Namejishaku JSON
Version 2.5.2 PyPI version JSON
download
home_pagehttps://github.com/Gorialis/jishaku
SummaryA discord.py extension including useful tools for bot development and debugging.
upload_time2023-11-01 17:36:31
maintainer
docs_urlNone
authorDevon (Gorialis) R
requires_python>=3.8.0
licenseMIT
keywords jishaku discord.py discord cog repl extension
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Python versions](https://img.shields.io/pypi/pyversions/jishaku.svg)](https://pypi.python.org/pypi/jishaku)
[![License](https://img.shields.io/pypi/l/jishaku.svg)](https://github.com/Gorialis/jishaku/blob/master/LICENSE)
[![Status](https://img.shields.io/pypi/status/jishaku.svg)](https://pypi.python.org/pypi/jishaku)
[![Issues](https://img.shields.io/github/issues/Gorialis/jishaku.svg?colorB=3333ff)](https://github.com/Gorialis/jishaku/issues)
[![Commit activity](https://img.shields.io/github/commit-activity/w/Gorialis/jishaku.svg)](https://github.com/Gorialis/jishaku/commits)

***

<h1 align="center">
<sub>
    <img src="https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/jishaku_logo.svg" height="36">
</sub>
&nbsp;
jishaku
</h1>
<p align="center">
<sup>
a debugging and utility extension for discord.py bots
</sup>
<br>
<sup>
    <a href="https://jishaku.readthedocs.io/">Read the documentation online.</a>
</sup>
</p>

***

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:

> 1. Download jishaku on the command line using pip:
> ```bash
> pip install -U jishaku
> ```
> 2. Load the extension in your bot code before it runs:
> ```python
> bot.load_extension('jishaku')
> ```
> That's it!

You can also import the module to use the command development utilities.

## Index

* [Command reference](#command-reference)
* [Installing development versions](#installing-development-versions)
* [Acknowledgements](#acknowledgements)

## Command reference

<table>
    <tr>
        <td width="60px">
            <img align="left" width="50" src="https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/python_logo.svg">
        </td>
        <td>
            <h4>&gt; <code>jishaku [py|python] &lt;argument&gt;</code></h4>
            <h4>&gt; <code>jishaku [pyi|python_inspect] &lt;argument&gt;</code></h4>
            The Python commands execute or evaluate Python code passed into them.
            It supports simple expressions:
            <br><br> <!-- Horrifying that I have to do this -->
            <blockquote>
                <p>&gt;  <i>jsk py 3+4</i></p>
                <img align="left" width="50" height="50" src="https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/beep_bot.svg">
                    <p><b>Beep Bot</b></p>
                    7
            </blockquote>
            <br>
            It also supports async expressions:
            <br><br>
            <blockquote>
                <p>&gt;  <i>jsk py await _ctx.pins()</i></p>
                <img align="left" width="50" height="50" src="https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/beep_bot.svg">
                    <p><b>Beep Bot</b></p>
                    [&lt;Message id=123456789012345678 ...&gt;, ...]
            </blockquote>
            <br>
            You can pass in codeblocks for longer blocks of code to execute, and you can use <code>yield</code> to return intermediate results within your processing.
            <br><br>
            The <i>inspect</i> variant of the command will return a codeblock with detailed inspection information on all objects returned.
            <br><br>
            The variables available by default in all execution contexts are:
            <br><br>
            <table>
                <tr>
                    <td><code>_ctx</code></td>
                    <td>
                        The <a href="https://discordpy.readthedocs.io/en/latest/ext/commands/api.html#discord.ext.commands.Context">Context</a> that invoked the command.
                    </td>
                </tr>
                <tr>
                    <td><code>_bot</code></td>
                    <td>
                        The running <a href="https://discordpy.readthedocs.io/en/latest/ext/commands/api.html#discord.ext.commands.Bot">Bot</a> instance.
                    </td>
                </tr>
                <tr>
                    <td><code>_author</code><br><code>_channel</code><br><code>_guild</code><br><code>_me</code><br><code>_message</code><br><code>_msg</code></td>
                    <td>
                        Shortcuts for attributes on <a href="https://discordpy.readthedocs.io/en/latest/ext/commands/api.html#discord.ext.commands.Context"><code>_ctx</code></a>.
                    </td>
                </tr>
                <tr>
                    <td><code>_find</code><br><code>_get</code></td>
                    <td>
                        Shortcuts for <a href="https://discordpy.readthedocs.io/en/latest/api.html#utility-functions"><code>discord.utils</code></a> functions.
                    </td>
                </tr>
            </table>
            <br>
            The underscore prefix on the provided variables is intended to help prevent shadowing when writing large blocks of code within the command.
            <br>
            If you decide that you don't want the prefix, you can disable it by setting the <code>JISHAKU_NO_UNDERSCORE</code> environment variable to <code>true</code>.
            <br><br>
            Each Python command is individually scoped. That means variables you create won't be retained in later invocations.
            <br>
            You can use <code>jishaku retain on</code> to change this behavior and retain variables, and <code>jishaku retain off</code> if you change your mind later.
            <br><br>
            <h4>&gt; <code>jishaku [dis|disassemble] &lt;argument&gt;</code></h4>
            This command compiles Python code in an asynchronous context, and then disassembles the resulting function into Python bytecode in the style of <code>dis.dis</code>.
            <br><br>
            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.
            <br><br>
            <h4>&gt; <code>jishaku ast &lt;argument&gt;</code></h4>
            This command compiles Python code into its Abstract Syntax Tree, and then displays it as a formatted tree of AST blocks.
            <br><br>
        </td>
    </tr>
</table>

<table>
    <tr>
        <td width="60px">
            <img align="left" width="50" src="https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/terminal.svg">
        </td>
        <td>
            <h4>&gt; <code>jishaku [sh|shell] &lt;argument&gt;</code></h4>
            The shell command executes commands within your system shell.
            <br><br>
            If you're on Linux and are using a custom shell, jishaku will obey the <code>SHELL</code> environment variable, otherwise, it will use <code>/bin/bash</code>.
            <br>
            On Windows, jishaku will use PowerShell if it's detected, otherwise, it will use Command Prompt.
            <br><br>
            The results from the commands you pass in are returned through a paginator interface live as the command runs. If you need to stop a command, you can press the stop button reaction, or use <code>jsk cancel</code>.
            <br><br>
            The execution will terminate automatically if no output is produced for 120 seconds.
            <br><br>
            <h4>&gt; <code>jishaku git &lt;argument&gt;</code></h4>
            <h4>&gt; <code>jishaku pip &lt;argument&gt;</code></h4>
            These commands act as shortcuts to the shell command, so you can save typing a word if you use these frequently.
            <br><br>
        </td>
    </tr>
</table>

<table>
    <tr>
        <td width="60px">
            <img align="left" width="50" src="https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/extension.svg">
        </td>
        <td>
            <h4>&gt; <code>jishaku [load|reload] [extensions...]</code></h4>
            <h4>&gt; <code>jishaku unload [extensions...]</code></h4>
            These commands load, reload, or unload extensions on your bot.
            <br><br>
            You can reload jishaku itself with <code>jsk reload jishaku</code>.
            <br>
            <code>jsk reload ~</code> will reload all extensions on your bot.
            <br><br>
            You can load, reload, or unload multiple extensions at once: <code>jsk reload cogs.one cogs.two</code>
            <br><br>
            <h4>&gt; <code>jishaku shutdown</code></h4>
            This command gracefully shuts down your bot.
            <br><br>
            <h4>&gt; <code>jishaku rtt</code></h4>
            This command calculates <a href="https://en.wikipedia.org/wiki/Round-trip_delay">Round-Trip Time</a> 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.
            <br><br>
            <h4>&gt; <code>jishaku sync [guild_ids...]</code></h4>
            This command syncs the app_command tree for a list of guilds, or globally if none are given, and then reports the results.
            <br><br>
        </td>
    </tr>
</table>

<table>
    <tr>
        <td width="60px">
            <img align="left" width="50" src="https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/description.svg">
        </td>
        <td>
            <h4>&gt; <code>jishaku cat &lt;file&gt;</code></h4>
            This command reads a file from your file system, automatically detecting encoding and (if applicable) highlighting.
            <br><br>
            You can use this to read things like bot logs or source files in your project.
            <h4>&gt; <code>jishaku curl &lt;url&gt;</code></h4>
            This command reads text from a URL and attempts to detect encoding and language, similar to <code>jsk cat</code>.
            <br><br>
            You can use this to display contents of files online, for instance, the <code>message.txt</code> files created when a message is too long, or raw files from paste sites.
            <br><br>
        </td>
    </tr>
</table>

<table>
    <tr>
        <td width="60px">
            <img align="left" width="50" src="https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/chat.svg">
        </td>
        <td>
            <h4>&gt; <code>jishaku exec [member and/or channel...] &lt;command string&gt;</code></h4>
            <h4>&gt; <code>jishaku debug &lt;command string&gt;</code></h4>
            <h4>&gt; <code>jishaku repeat &lt;times&gt; &lt;command string&gt;</code></h4>
            These commands serve as command control for other commands.
            <br><br>
            <code>jishaku exec</code> allows you to execute a command as another user, in another channel, or both. Using aliases with a postfix exclamation mark (such as <code>jsk exec! ...</code>) executes the command bypassing checks and cooldowns.
            <br><br>
            <code>jishaku debug</code> executes a command with an exception wrapper and a timer. This allows you to quickly get feedback on reproducable command errors and slowdowns.
            <br><br>
            <code>jishaku repeat</code> repeats a command a number of times.
            <br><br>
            <h4>&gt; <code>jishaku permtrace &lt;channel&gt; [targets...]</code></h4>
            This command allows you to investigate the source of expressed permissions in a given channel. Targets can be either a member, or a list of roles (to simulate a member with those roles).
            <br><br>
            It will read all of the guild permissions and channel overwrites for the given member or roles in the channel, and provide a breakdown containing whether the permission is granted, and the most fundamental reason why.
            <br><br>
        </td>
    </tr>
</table>

## 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:
> ```bash
> pip install -U "jishaku @ git+https://github.com/Gorialis/jishaku@master"
> ```
> From GitLab:
> ```bash
> pip install -U "jishaku @ git+https://gitlab.com/Gorialis/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:
> ```bash
> pip install -U --force-reinstall "jishaku @ git+https://github.com/Gorialis/jishaku@master"
> ```
> From GitLab:
> ```bash
> pip install -U --force-reinstall "jishaku @ git+https://gitlab.com/Gorialis/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 <a href="https://github.com/google/material-design-icons">Material Design Icon</a> library, which is licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License Version 2.0</a>.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Gorialis/jishaku",
    "name": "jishaku",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8.0",
    "maintainer_email": "",
    "keywords": "jishaku discord.py discord cog repl extension",
    "author": "Devon (Gorialis) R",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/be/88/23d3c9f3f475b7721c7845a59fa9b947ea423987d48db6a7ebe7583b7b2c/jishaku-2.5.2.tar.gz",
    "platform": null,
    "description": "[![Python versions](https://img.shields.io/pypi/pyversions/jishaku.svg)](https://pypi.python.org/pypi/jishaku)\n[![License](https://img.shields.io/pypi/l/jishaku.svg)](https://github.com/Gorialis/jishaku/blob/master/LICENSE)\n[![Status](https://img.shields.io/pypi/status/jishaku.svg)](https://pypi.python.org/pypi/jishaku)\n[![Issues](https://img.shields.io/github/issues/Gorialis/jishaku.svg?colorB=3333ff)](https://github.com/Gorialis/jishaku/issues)\n[![Commit activity](https://img.shields.io/github/commit-activity/w/Gorialis/jishaku.svg)](https://github.com/Gorialis/jishaku/commits)\n\n***\n\n<h1 align=\"center\">\n<sub>\n    <img src=\"https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/jishaku_logo.svg\" height=\"36\">\n</sub>\n&nbsp;\njishaku\n</h1>\n<p align=\"center\">\n<sup>\na debugging and utility extension for discord.py bots\n</sup>\n<br>\n<sup>\n    <a href=\"https://jishaku.readthedocs.io/\">Read the documentation online.</a>\n</sup>\n</p>\n\n***\n\njishaku is an extension for bot developers that enables rapid prototyping, experimentation, and debugging of features for bots.\n\nOne of jishaku's core philosophies is to be dynamic and easy-to-use. Here's the two step install:\n\n> 1. Download jishaku on the command line using pip:\n> ```bash\n> pip install -U jishaku\n> ```\n> 2. Load the extension in your bot code before it runs:\n> ```python\n> bot.load_extension('jishaku')\n> ```\n> That's it!\n\nYou can also import the module to use the command development utilities.\n\n## Index\n\n* [Command reference](#command-reference)\n* [Installing development versions](#installing-development-versions)\n* [Acknowledgements](#acknowledgements)\n\n## Command reference\n\n<table>\n    <tr>\n        <td width=\"60px\">\n            <img align=\"left\" width=\"50\" src=\"https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/python_logo.svg\">\n        </td>\n        <td>\n            <h4>&gt; <code>jishaku [py|python] &lt;argument&gt;</code></h4>\n            <h4>&gt; <code>jishaku [pyi|python_inspect] &lt;argument&gt;</code></h4>\n            The Python commands execute or evaluate Python code passed into them.\n            It supports simple expressions:\n            <br><br> <!-- Horrifying that I have to do this -->\n            <blockquote>\n                <p>&gt;  <i>jsk py 3+4</i></p>\n                <img align=\"left\" width=\"50\" height=\"50\" src=\"https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/beep_bot.svg\">\n                    <p><b>Beep Bot</b></p>\n                    7\n            </blockquote>\n            <br>\n            It also supports async expressions:\n            <br><br>\n            <blockquote>\n                <p>&gt;  <i>jsk py await _ctx.pins()</i></p>\n                <img align=\"left\" width=\"50\" height=\"50\" src=\"https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/beep_bot.svg\">\n                    <p><b>Beep Bot</b></p>\n                    [&lt;Message id=123456789012345678 ...&gt;, ...]\n            </blockquote>\n            <br>\n            You can pass in codeblocks for longer blocks of code to execute, and you can use <code>yield</code> to return intermediate results within your processing.\n            <br><br>\n            The <i>inspect</i> variant of the command will return a codeblock with detailed inspection information on all objects returned.\n            <br><br>\n            The variables available by default in all execution contexts are:\n            <br><br>\n            <table>\n                <tr>\n                    <td><code>_ctx</code></td>\n                    <td>\n                        The <a href=\"https://discordpy.readthedocs.io/en/latest/ext/commands/api.html#discord.ext.commands.Context\">Context</a> that invoked the command.\n                    </td>\n                </tr>\n                <tr>\n                    <td><code>_bot</code></td>\n                    <td>\n                        The running <a href=\"https://discordpy.readthedocs.io/en/latest/ext/commands/api.html#discord.ext.commands.Bot\">Bot</a> instance.\n                    </td>\n                </tr>\n                <tr>\n                    <td><code>_author</code><br><code>_channel</code><br><code>_guild</code><br><code>_me</code><br><code>_message</code><br><code>_msg</code></td>\n                    <td>\n                        Shortcuts for attributes on <a href=\"https://discordpy.readthedocs.io/en/latest/ext/commands/api.html#discord.ext.commands.Context\"><code>_ctx</code></a>.\n                    </td>\n                </tr>\n                <tr>\n                    <td><code>_find</code><br><code>_get</code></td>\n                    <td>\n                        Shortcuts for <a href=\"https://discordpy.readthedocs.io/en/latest/api.html#utility-functions\"><code>discord.utils</code></a> functions.\n                    </td>\n                </tr>\n            </table>\n            <br>\n            The underscore prefix on the provided variables is intended to help prevent shadowing when writing large blocks of code within the command.\n            <br>\n            If you decide that you don't want the prefix, you can disable it by setting the <code>JISHAKU_NO_UNDERSCORE</code> environment variable to <code>true</code>.\n            <br><br>\n            Each Python command is individually scoped. That means variables you create won't be retained in later invocations.\n            <br>\n            You can use <code>jishaku retain on</code> to change this behavior and retain variables, and <code>jishaku retain off</code> if you change your mind later.\n            <br><br>\n            <h4>&gt; <code>jishaku [dis|disassemble] &lt;argument&gt;</code></h4>\n            This command compiles Python code in an asynchronous context, and then disassembles the resulting function into Python bytecode in the style of <code>dis.dis</code>.\n            <br><br>\n            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.\n            <br><br>\n            <h4>&gt; <code>jishaku ast &lt;argument&gt;</code></h4>\n            This command compiles Python code into its Abstract Syntax Tree, and then displays it as a formatted tree of AST blocks.\n            <br><br>\n        </td>\n    </tr>\n</table>\n\n<table>\n    <tr>\n        <td width=\"60px\">\n            <img align=\"left\" width=\"50\" src=\"https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/terminal.svg\">\n        </td>\n        <td>\n            <h4>&gt; <code>jishaku [sh|shell] &lt;argument&gt;</code></h4>\n            The shell command executes commands within your system shell.\n            <br><br>\n            If you're on Linux and are using a custom shell, jishaku will obey the <code>SHELL</code> environment variable, otherwise, it will use <code>/bin/bash</code>.\n            <br>\n            On Windows, jishaku will use PowerShell if it's detected, otherwise, it will use Command Prompt.\n            <br><br>\n            The results from the commands you pass in are returned through a paginator interface live as the command runs. If you need to stop a command, you can press the stop button reaction, or use <code>jsk cancel</code>.\n            <br><br>\n            The execution will terminate automatically if no output is produced for 120 seconds.\n            <br><br>\n            <h4>&gt; <code>jishaku git &lt;argument&gt;</code></h4>\n            <h4>&gt; <code>jishaku pip &lt;argument&gt;</code></h4>\n            These commands act as shortcuts to the shell command, so you can save typing a word if you use these frequently.\n            <br><br>\n        </td>\n    </tr>\n</table>\n\n<table>\n    <tr>\n        <td width=\"60px\">\n            <img align=\"left\" width=\"50\" src=\"https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/extension.svg\">\n        </td>\n        <td>\n            <h4>&gt; <code>jishaku [load|reload] [extensions...]</code></h4>\n            <h4>&gt; <code>jishaku unload [extensions...]</code></h4>\n            These commands load, reload, or unload extensions on your bot.\n            <br><br>\n            You can reload jishaku itself with <code>jsk reload jishaku</code>.\n            <br>\n            <code>jsk reload ~</code> will reload all extensions on your bot.\n            <br><br>\n            You can load, reload, or unload multiple extensions at once: <code>jsk reload cogs.one cogs.two</code>\n            <br><br>\n            <h4>&gt; <code>jishaku shutdown</code></h4>\n            This command gracefully shuts down your bot.\n            <br><br>\n            <h4>&gt; <code>jishaku rtt</code></h4>\n            This command calculates <a href=\"https://en.wikipedia.org/wiki/Round-trip_delay\">Round-Trip Time</a> 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.\n            <br><br>\n            <h4>&gt; <code>jishaku sync [guild_ids...]</code></h4>\n            This command syncs the app_command tree for a list of guilds, or globally if none are given, and then reports the results.\n            <br><br>\n        </td>\n    </tr>\n</table>\n\n<table>\n    <tr>\n        <td width=\"60px\">\n            <img align=\"left\" width=\"50\" src=\"https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/description.svg\">\n        </td>\n        <td>\n            <h4>&gt; <code>jishaku cat &lt;file&gt;</code></h4>\n            This command reads a file from your file system, automatically detecting encoding and (if applicable) highlighting.\n            <br><br>\n            You can use this to read things like bot logs or source files in your project.\n            <h4>&gt; <code>jishaku curl &lt;url&gt;</code></h4>\n            This command reads text from a URL and attempts to detect encoding and language, similar to <code>jsk cat</code>.\n            <br><br>\n            You can use this to display contents of files online, for instance, the <code>message.txt</code> files created when a message is too long, or raw files from paste sites.\n            <br><br>\n        </td>\n    </tr>\n</table>\n\n<table>\n    <tr>\n        <td width=\"60px\">\n            <img align=\"left\" width=\"50\" src=\"https://raw.githubusercontent.com/Gorialis/jishaku/328565b5d8f00a7955a6cfe8d95209d581dc9d51/.github/assets/chat.svg\">\n        </td>\n        <td>\n            <h4>&gt; <code>jishaku exec [member and/or channel...] &lt;command string&gt;</code></h4>\n            <h4>&gt; <code>jishaku debug &lt;command string&gt;</code></h4>\n            <h4>&gt; <code>jishaku repeat &lt;times&gt; &lt;command string&gt;</code></h4>\n            These commands serve as command control for other commands.\n            <br><br>\n            <code>jishaku exec</code> allows you to execute a command as another user, in another channel, or both. Using aliases with a postfix exclamation mark (such as <code>jsk exec! ...</code>) executes the command bypassing checks and cooldowns.\n            <br><br>\n            <code>jishaku debug</code> executes a command with an exception wrapper and a timer. This allows you to quickly get feedback on reproducable command errors and slowdowns.\n            <br><br>\n            <code>jishaku repeat</code> repeats a command a number of times.\n            <br><br>\n            <h4>&gt; <code>jishaku permtrace &lt;channel&gt; [targets...]</code></h4>\n            This command allows you to investigate the source of expressed permissions in a given channel. Targets can be either a member, or a list of roles (to simulate a member with those roles).\n            <br><br>\n            It will read all of the guild permissions and channel overwrites for the given member or roles in the channel, and provide a breakdown containing whether the permission is granted, and the most fundamental reason why.\n            <br><br>\n        </td>\n    </tr>\n</table>\n\n## Installing development versions\n\nIf you'd like to test the latest versions of jishaku, you can do so by downloading from the git hosts instead of from PyPI.\n\n> From GitHub:\n> ```bash\n> pip install -U \"jishaku @ git+https://github.com/Gorialis/jishaku@master\"\n> ```\n> From GitLab:\n> ```bash\n> pip install -U \"jishaku @ git+https://gitlab.com/Gorialis/jishaku@master\"\n> ```\n\nPlease note that the new 2020 dependency resolver now no longer discounts git package sources from reinstall prevention,\nwhich 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.\n\nIf you run into such a problem, you can force jishaku to be reinstalled like this:\n\n> From GitHub:\n> ```bash\n> pip install -U --force-reinstall \"jishaku @ git+https://github.com/Gorialis/jishaku@master\"\n> ```\n> From GitLab:\n> ```bash\n> pip install -U --force-reinstall \"jishaku @ git+https://gitlab.com/Gorialis/jishaku@master\"\n> ```\n\nYou **must** have installed jishaku with one of the commands above before doing this else you will probably end up with a broken installation.\n\n## Acknowledgements\n\nThe documentation and this README uses icons from the <a href=\"https://github.com/google/material-design-icons\">Material Design Icon</a> library, which is licensed under the <a href=\"https://www.apache.org/licenses/LICENSE-2.0.html\">Apache License Version 2.0</a>.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A discord.py extension including useful tools for bot development and debugging.",
    "version": "2.5.2",
    "project_urls": {
        "Code": "https://github.com/Gorialis/jishaku",
        "Documentation": "https://jishaku.readthedocs.io/en/latest/",
        "Download": "https://github.com/Gorialis/jishaku/archive/2.5.2.tar.gz",
        "Homepage": "https://github.com/Gorialis/jishaku",
        "Issue tracker": "https://github.com/Gorialis/jishaku/issues"
    },
    "split_keywords": [
        "jishaku",
        "discord.py",
        "discord",
        "cog",
        "repl",
        "extension"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8e729d36891f8c1cc6c0b6cb12472494218af991252939a2bdf70dd8d9f7247",
                "md5": "5024f5e10db411986050a33d75e2d5cc",
                "sha256": "87f34942ee44865f5ce08e36723b7c74a313d8a13a4db8a6b7cc12618cc3496c"
            },
            "downloads": -1,
            "filename": "jishaku-2.5.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5024f5e10db411986050a33d75e2d5cc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.0",
            "size": 76664,
            "upload_time": "2023-11-01T17:31:12",
            "upload_time_iso_8601": "2023-11-01T17:31:12.573689Z",
            "url": "https://files.pythonhosted.org/packages/d8/e7/29d36891f8c1cc6c0b6cb12472494218af991252939a2bdf70dd8d9f7247/jishaku-2.5.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be8823d3c9f3f475b7721c7845a59fa9b947ea423987d48db6a7ebe7583b7b2c",
                "md5": "1182dca21f17ebb3e457df0e77e9389e",
                "sha256": "56d38c333036e37481df5e3c9e81d6033b5097738f0d171a81e2752124f0df5c"
            },
            "downloads": -1,
            "filename": "jishaku-2.5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "1182dca21f17ebb3e457df0e77e9389e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.0",
            "size": 69186,
            "upload_time": "2023-11-01T17:36:31",
            "upload_time_iso_8601": "2023-11-01T17:36:31.843340Z",
            "url": "https://files.pythonhosted.org/packages/be/88/23d3c9f3f475b7721c7845a59fa9b947ea423987d48db6a7ebe7583b7b2c/jishaku-2.5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-01 17:36:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Gorialis",
    "github_project": "jishaku",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jishaku"
}
        
Elapsed time: 0.13797s