Skip to content

hcristea/python-cli-ui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-cli-ui

Tools for nice user interfaces in the terminal.

https://img.shields.io/travis/SuperTanker/python-cli-ui.svg?branch=master

Documentation

See python-cli-ui 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!

About

Tools for better command line interfaces

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%