A simple console menu
Project description
Simple console menu
This is a simple console menu
SimpleConsoleMenu
The first (and only) menu is the SimpleConsoleMenu.
You can use it by first importing the right file:
from simple_console_menu import Menu
And if you want to use it you can do this:
menu = Menu.SimpleConsoleMenu(menuName,menuItems,autoAddQuit,onlyReturnNumber, allowedCharacters = '')
With these parameters :
menuName - Required : name of the menu (Str)
menuItems - Required : menu items, separated with ';' (Str)
autoAddQuit - Optional : automatically add a quit option (Bool)
onlyReturnNumber - Optional : only numbers are allowed to return (Bool)
allowedCharacters - Optional : specifier which character(s) are allowed if onlyReturnNumber is False, separated with ';' (str)
full example:
from simple_console_menu import Menu
menuNumber = Menu.SimpleConsoleMenu('menu','item1;item2;item3;item4;item5',True)
if menuNumber == 1:
print('item1')
elif menuNumber == 2:
print('item2')
elif menuNumber == 3:
print('item3')
elif menuNumber == 4:
print('item4')
elif menuNumber == 5:
print('item5')
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