The easy way to create command line menus
Project description
pyclimenu
This python module creates simple command line menus. Just define the callable and the label of each option and voila! Foreground, background color numbering and labels are adjustable.
Install
pip install pyclimenu
Demo
from pyclimenu.menu import Menu
def a():
print('''
Let's Rock!
''')
return 1
mn = Menu(items=[
{"label": "The easy way", "callback": a},
{"label": "to create", "callback": a},
{"label": "command line menus", "callback": a}
])
mn.set_colors(num_fg="cyan", num_bld=True, label_fg="blue", label_bl=True)
results = mn.run(header="pyclimenu")
print(results)
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
pyclimenu-0.1.18.tar.gz
(4.5 kB
view details)