Metadata-Version: 2.1
Name: menupy
Version: 1.0.2
Summary: Interactive Python Menu
Home-page: https://github.com/luxunator/menupy
Author: luxunator
Author-email: luxunator@pm.me
License: MIT
Keywords: menu menupy curses
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# menupy
[![PyPI](https://img.shields.io/pypi/v/menupy.svg)](https://pypi.org/project/menupy/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/menupy.svg)](https://pypi.org/project/menupy/)
[![PyPI - License](https://img.shields.io/pypi/l/menupy.svg)](https://github.com/luxunator/menupy/blob/master/LICENSE)

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/](https://menupy.readthedocs.io/en/latest/)

# Examples
**Option Menu**
```python
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()
```
![](http://i67.tinypic.com/344ys60.jpg)

**Input Menu**
```python
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()
```
![](http://i63.tinypic.com/rgwgvs.jpg)

## License
This project is licensed under the terms of the [MIT License](https://github.com/luxunator/menupy/blob/master/LICENSE).

