Skip to main content

Suppresses the default behavior of Click commands to exit the process.

Project description

click-noexit

A utility for the Click command-line interface library that prevents commands from exiting the application directly. Instead, it allows commands to return exit codes for improved control and handling in larger applications.

Introduction

click-noexit is a decorator for Click commands designed to suppress the default behavior of exiting the application upon command completion or when an error occurs. This is particularly useful when integrating Click commands into larger applications, where you want to handle exits and exceptions more gracefully.

Installation

Install click-noexit using pip:

pip install click-noexit

Or, if you are using Poetry:

poetry add click-noexit

Ensure that you have Click version 8.0.0 or newer.

Installation

Import and use the noexit decorator to wrap your Click commands:

import click
import click_noexit

@click_noexit.noexit()
@click.command()
def my_command():
    # Command logic here
    pass

The noexit decorator can be used without any additional arguments. It modifies the behavior of the Click command to prevent the application from exiting and allows the command to return exit codes instead.

Examples

Basic Command

@click_noexit.noexit()
@click.command()
def hello() -> None:
    click.echo("Hello, World!")

Command with Exit Code

@noexit()
@click.command()
def goodbye():
    click.echo("Goodbye!")
    return 42

Contributing

Contributions are welcome! If you have a feature request, bug report, or a pull request, please feel free to open an issue or a pull request on the project repository.

License

click-noexit is released under the MIT License. See the LICENSE file for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

click_noexit-0.1.0.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

click_noexit-0.1.0-py3-none-any.whl (3.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page