Go to file
Sebastian Lohff 9fe596bc01 Add option to return instantly on single item in cli_select_item()
cli_select_item() allows to quickly launch a menu from code, but if only
a single item is given a selection is not necessary in most cases.
Therefore we now instantly return the given value in these cases. This
can be turned off by setting return_single=False
2020-03-11 17:55:16 +01:00
clintermission Add option to return instantly on single item in cli_select_item() 2020-03-11 17:55:16 +01:00
examples Add theme example 2019-08-15 15:13:18 +02:00
.gitignore Initial commit 2019-01-31 23:58:29 +01:00
LICENSE Initial commit 2019-01-31 23:58:29 +01:00
README.md Initial commit 2019-01-31 23:58:29 +01:00
requirements.txt Initial commit 2019-01-31 23:58:29 +01:00
setup.cfg Initial commit 2019-01-31 23:58:29 +01:00
setup.py Initial commit 2019-01-31 23:58:29 +01:00

README.md

CLI-Intermission

Tool to easily ask your user questions on the commandline. Interactive! ...by abusing python prompt-toolkit's Buffer class.

Highly inspired by go promptui