Interactive Python Menu
Project description
menupy
Interactive Python Menu
About
CLI Menu creation with easy, fast, flexible usage for the programmer, and a clean layout for their users.
Documentation
Documentation is available at https://menupy.readthedocs.io/en/latest/
Examples
Option Menu
import menupy
NewMenu = menupy.OptionMenu("Title", title_color="cyan")
NewMenu.add_option("Option Selection #1")
NewMenu.add_option("Option Selection #2", color="red")
NewMenu.add_option("Option Selection #3", color="green")
result = NewMenu.run()
Input Menu
import menupy
NewMenu = menupy.InputMenu("Title", title_color="cyan")
NewMenu.add_input("Input #1")
NewMenu.add_input("Input #2", color="magenta")
NewMenu.add_input("Input #3", color="yellow", input_text="default", input_color="blue")
result = NewMenu.run()
License
This project is licensed under the terms of the MIT License.
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
menupy-1.0.2.tar.gz
(3.5 kB
view hashes)
Built Distribution
menupy-1.0.2-py3-none-any.whl
(4.5 kB
view hashes)