Skip to main content

Automatically turn script arguments into an interactive terminal interface

Project description

Tooey

Turn any python console script into an interactive TUI application. Tooey is similar to (and inspired by) Gooey, but keeps you in the terminal.

Without Tooey 😕

Running a command line script without the Tooey decorator

With Tooey 🎉

Running a command line script with the Tooey decorator (sample)

Installation

Install Tooey from PyPi via pip:

python -m pip install tooey

Getting started

Decorate your script's argparse function with @Tooey, then run the script with or without any of its arguments. You'll be prompted interactively in the terminal to enter each argument. After this the script will continue as normal.

Example

The following python script requests and then prints three arguments. The method that handles command line arguments is decorated with @Tooey.

import argparse
from tooey import Tooey

@Tooey
def main():
    parser = argparse.ArgumentParser()
    parser.add_argument('positional', nargs=1, help='A positional argument requiring one value')
    parser.add_argument('--named-choices', nargs=2, type=int, choices=range(1, 5), help='A named argument requiring two integers from a given list of choices')
    parser.add_argument('--store-true', action='store_true', help='A store_true argument')
    print(parser.parse_args())

main()

Tooey automatically turns this into an interactive prompt for each argument. Running a command line script with the Tooey decorator (full)

Configuration

Tooey will automatically inject itself into any decorated functions whenever sys.isatty() is True.

If you would like to override this behaviour and disable Tooey when running a script, add the additional parameter --ignore-tooey when running, or set an environment variable IGNORE_TOOEY. For example, Tooey will ignore any decorated methods in this script:

$ python tooey_example.py val1 --named-choices 1 3 --ignore-tooey

Conversely, if you would like to force Tooey to inject itself into decorated functions even when it does not detect a terminal-like environment, add the additional parameter --force-tooey when running, or set an environment variable FORCE_TOOEY. For example, Tooey will still run in the following script:

$ FORCE_TOOEY=1 python tooey_example.py val1 --named-choices 1 3 | sort

Using alongside Gooey

It can be useful to decorate methods with both @Tooey and @Gooey so that scripts can be run flexibly depending on context. To avoid conflicts, if both decorators are present for a single method, Tooey makes sure that only one of them is active. Which one is chosen depends on the order in which you add their decorators, with the decorator closest to the function taking priority:

@Gooey
@Tooey
def main_tooey():
    # Here Tooey is activated and Gooey is ignored
    # To force Gooey to be used instead, pass the `--ignore-tooey` command line option
    [...]

@Tooey
@Gooey
def main_gooey():
    # Here Gooey is activated and Tooey is ignored
    # To force Tooey to be used instead, pass the `--ignore-gooey` command line option
    [...]

Regardless of decorator order, you can always use the command line parameters --ignore-tooey and --ignore-gooey to switch behaviour, as outlined in the example above. If Gooey is present (and not ignored) it will take precedence over the the --force-tooey parameter. Please note that due to the nature of Gooey's interaction with command line arguments, complex scripts with multiple Gooey decorators or unusual configurations may not be fully compatibile with this approach, and it is advisable to test your script when using both Tooey and Gooey simultaneously.

Testing

To run the Tooey tests and generate a coverage report, first clone this repository and open the tests directory in a terminal, then:

python -m pip install gooey
python -m coverage run -m unittest
python -m coverage html --include '*/tooey/*' --omit '*test*'

Inspirations and alternatives

  • Gooey adds a GUI interface to (almost) any script
  • GooeyWrapper extends Gooey to make switching between the command line and Gooey a little more seamless
  • Click supports command line options that auto-prompt when missing

License

Apache 2.0

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

tooey-0.4.0.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

tooey-0.4.0-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

Details for the file tooey-0.4.0.tar.gz.

File metadata

  • Download URL: tooey-0.4.0.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0rc2

File hashes

Hashes for tooey-0.4.0.tar.gz
Algorithm Hash digest
SHA256 8bb70d696062a772d9a4dacddd4f90dcfa459b18bd97b3c0d3467c271b3e32d5
MD5 c23cd111e64fd5e2a69d01cfc5553303
BLAKE2b-256 02a29887fa630b14ff82f5cad4a653640b1ba58a7e82ae6db681954bcf9324ac

See more details on using hashes here.

File details

Details for the file tooey-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: tooey-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0rc2

File hashes

Hashes for tooey-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 53f65374564b7cdbd56a970d73507f708cf6a2c280a7a444a31ab5c5355c00d0
MD5 3b7e0143413365819d8e7363739a3c6d
BLAKE2b-256 94fb0ee3119e84656f2254702715222984da889d47369dce96d017ea409f4f5c

See more details on using hashes here.

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