
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
click-shell
Advanced tools
|TravisCI| |DocsStatus|
click-shell is an extension to click_ that easily turns your click app into a shell utility.
It is built on top of the built in python cmd_ module, with modifications to make it work with click.
Simply replace @click.group with @click_shell.shell on the root level command:
.. code-block:: python
from click_shell import shell
# @click.group() # no longer
@shell(prompt='my-app > ', intro='Starting my app...')
def my_app():
pass
@my_app.command()
def testcommand():
print('testcommand is running')
# more commands
if __name__ == '__main__':
my_app()
When run, you should expect an output like so:
.. code-block:: bash
$ python my_app.py
Starting my app...
my-app > testcommand
testcommand is running
my-app >
.. note::
It should be noted that this decorator **only** alters functionality if no arguments are
passed on the command line. If you try to run a command directly
(like ``python my_app.py the_command`` in the above example), your app will function
identically to how it did before.
For more advanced usage, check out our docs at https://click-shell.readthedocs.io/
.. _click: http://click.pocoo.org/ .. _cmd: https://docs.python.org/2/library/cmd.html
.. |TravisCI| image:: https://travis-ci.com/clarkperkins/click-shell.svg?branch=master :target: https://travis-ci.com/clarkperkins/click-shell :alt: Build status
.. |DocsStatus| image:: https://readthedocs.org/projects/click-shell/badge/?version=latest :target: https://click-shell.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
FAQs
An extension to click that easily turns your click app into a shell utility
We found that click-shell demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.