Build Nice User Interfaces In The Terminal
Project description
python-cli-ui
Tools for nice user interfaces in the terminal.
Note
This project was originally hosted on the TankerHQ organization, which was my employer from 2016 to 2021. They kindly agreed to give back ownership of this project to me. Thanks!
Documentation
Demo
Watch the asciinema recording.
Usage
$ pip install cli-ui
Example:
import cli_ui
# coloring:
cli_ui.info(
"This is",
cli_ui.red, "red", cli_ui.reset,
"and this is",
cli_ui.bold, "bold"
)
# enumerating:
list_of_things = ["foo", "bar", "baz"]
for i, thing in enumerate(list_of_things):
cli_ui.info_count(i, len(list_of_things), thing)
# progress indication:
cli_ui.info_progress("Done", 5, 20)
cli_ui.info_progress("Done", 10, 20)
cli_ui.info_progress("Done", 20, 20)
# reading user input:
with_sugar = cli_ui.ask_yes_no("With sugar?", default=False)
fruits = ["apple", "orange", "banana"]
selected_fruit = cli_ui.ask_choice("Choose a fruit", choices=fruits)
# ... and more!
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cli-ui-0.16.0.tar.gz.
File metadata
- Download URL: cli-ui-0.16.0.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.7 Linux/5.13.0-22-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57fefcc7187329031c84c9262548decc48ab94a13798ea90a99c760cd9b302c2
|
|
| MD5 |
cf54c7071139bb7c28a362e19ba2a228
|
|
| BLAKE2b-256 |
75d621873117cf2768d6f33aab46a5cfb99e21725c384643c6b574de505e498a
|
File details
Details for the file cli_ui-0.16.0-py3-none-any.whl.
File metadata
- Download URL: cli_ui-0.16.0-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.7 Linux/5.13.0-22-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
417197240a591bd34ad49c4dc8c4ee19fdf22d50b149be9406e7dcfcf9440778
|
|
| MD5 |
a4960b73433ac7eb7318d187e7a07df2
|
|
| BLAKE2b-256 |
72c529d25eaf9601ce1ac9946a585bc6398a714bfbc457bc04b96f109829d492
|