Build Nice User Interfaces In The Terminal
Project description
Note
This project is deprecated. Please use cli-ui instead.
Originaly readme below.
Documentation
Demo
Watch the asciinema recording.
Usage
$ pip install python-cli-ui
Example:
import ui
# coloring:
ui.info("This is", ui.red, "red",
ui.reset, "and this is", ui.bold, "bold")
# enumerating:
list_of_things = ["foo", "bar", "baz"]
for i, thing in enumerate(list_of_things):
ui.info_count(i, len(list_of_things), thing)
# progress indication:
ui.info_progress("Done", 5, 20)
ui.info_progress("Done", 10, 20)
ui.info_progress("Done", 20, 20)
# reading user input:
with_sugar = ui.ask_yes_no("With sugar?", default=False)
fruits = ["apple", "orange", "banana"]
selected_fruit = ui.ask_choice("Choose a fruit", 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
python-cli-ui-0.7.5.tar.gz
(10.0 kB
view hashes)
Built Distribution
Close
Hashes for python_cli_ui-0.7.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 315e1655982708e5b5cfe7f3cef72a6c86fc682e2ce121faebfc58722af46614 |
|
MD5 | 7c689162f9244f7ff907fad6fc21da98 |
|
BLAKE2b-256 | 25673babc30b45ea745831bb31d7251d82c7c4f3f920a773463863cfa75cb7bd |