Rich Menu
Rich menu is a library that allows the quick and simple creation of cli menus, using Rich as a backend.
Installation
Installation is very simple, just run the following command in the terminal:
pip install rich-menu
Basic Usage
from rich_menu import Menu
menu = Menu(
"Option 1",
"Option 2",
"Option 3",
"Exit",
)
match menu.ask():
case "Option 1":
print("first option selected")
case "Option 2":
print("second option selected")
case "Option 3":
print("third option selected")
case "Exit":
exit()
from rich_menu import Menu
menu = Menu(
"X",
"O",
color="blue",
rule_title="Tic Tac Toe",
align="center",
panel_title="Choose your icon",
selection_char="->",
)
selected = menu.ask(screen=False)
Release files for rich-menu 0.3.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| rich_menu-0.3.0.tar.gz | 3.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| rich_menu-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 7.0 kB