Simple-Menu
===========

###A small utility for the creation of curses-based menus on Unix-like systems. 

###Requires:

* Python 3.x


###Usage:

    from SimpleMenu import Menu
    new_menu = Menu("Item 1", "Item 2", "Item 3")
    choice = new_menu.show()
    print(choice)

See test.py for more.