Input for command line questions with options
Project description
PromptWithOptions
Command line input with options for Python
Example
from promptwithoptions import (
set_prompt_defaults,
promptwithoptions,
)
clr_yellow = "\u001b[33m"
clr_l_green = "\u001b[32;1m"
clr_blue = "\u001b[34m"
clr_l_blue = "\u001b[34;1m"
my_options = ('one', 'two', 'three')
set_prompt_defaults(options_line_color=clr_yellow, options_number_color=clr_l_green, input_line_color=clr_blue, confirm_line_color=clr_l_blue)
promptwithoptions('How many', options=my_options, default=1, show_confirmation=True)
Available settings
These are all optional named arguments (in this order) of set_prompt_defaults
and promptwithoptions
.
prompt
: prompt string - this appears as a question with a ?
appended as long as hide_questionmark is not True
options
: list of available options, without this
data_type
: a callable that raises an exception if the input is invalid (e.g. int
, bool
)
default
: default in case of empty input
allow_empty
: boolean, if True then prompt doesn't repeat with empty input
allow_multiple
: boolean, if True then comma-separated values are accepted and the return value is always a list (in fact a tuple
)
show_confirmation
: boolean, if True then the accepted input is reprinted with the selected option (if options are given)
hide_key
: boolean, if True the first item of each option doesn't get printed on the screen (if an option has multiple items like keys and values)
hide_questionmark
: boolean, if True then '?' is not attached to prompt text (neither a ':' to the confirmation if shown)
hide_mandatory_sign
: boolean, if True then '*' doesn't appear after the question if allow_empty is not True
hide_multiple_choice_sign
: boolean, if True then '…' doesn't appear after the question if allow_multiple is True
no_interaction
: boolean, if True default is applied automatically (if given) and no input is required (this is to apply --yes
)
options_line_color
: if given, options are displayed as a numbered list - this is the colour of the list items
options_number_color
: if given, options are displayed as a numbered list - this is the colour of the numbers
input_line_color
: as is
confirm_line_color
: as is
Setting and resetting defaults
set_prompt_defaults()
can be called multiple times.
A default value can be removed (set back to None) when _None_
is passed down like set_prompt_defaults(allow_empty="_None_")
.
Argument defaults can be removed at once by calling reset_defaults
(from promptwithoptions import reset_defaults
).
Options list
It's a plain list of strings, a list of keys and values or a dict.
If there are keys and values only a key is returned at the end. In that case keys can be stopped from printing by hide_key
.
Multiple Choice
When allow_multiple is True
then multiple values can be added separated by ,
s.
Commas can be escaped by quotation marks similarly to CSV escape rules.
Entering empty value when default is given
Use '-' to explicitely get empty even when default is given and allow_empty=True
.
Escape it as '-'
if you need a literal hyphen.
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
Built Distribution
File details
Details for the file promptwithoptions-0.9.7.tar.gz
.
File metadata
- Download URL: promptwithoptions-0.9.7.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.10.10-051010-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bacf745d7c39d7a5ead7068cbeb19e7be76d29e8a21d58d4606138226add393f |
|
MD5 | 9e1c75b45e17a123b34ddbaa31e6016b |
|
BLAKE2b-256 | 8bdb80f402763af9c1b42ead21f1b53d060c45ea77728a95910bf90565bfe5f4 |
File details
Details for the file promptwithoptions-0.9.7-py3-none-any.whl
.
File metadata
- Download URL: promptwithoptions-0.9.7-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.10.10-051010-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd5e0bf71f32a2d6061228f24538b377fb2415ee9000d81ca64f090b5f43aa17 |
|
MD5 | d7a17611b692a56d1d1ce9676d61e45b |
|
BLAKE2b-256 | b18c743d33395be67583cf7a4b31d8f1000b72995f2a75e7a1bd11182c7b10e4 |