Metadata-Version: 2.1
Name: simple-console-menu
Version: 0.0.3
Summary: A simple console menu
Home-page: https://github.com/mikeee1/simple-console-menu
Author: mikeee
Author-email: mikevansmaalen@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/mikeee1/simple-console-menu
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Simple console menu

This is a simple console menu

## SimpleConsoleMenu
---
The first (and only) menu is the `SimpleConsoleMenu`. <br>
You can use it by first importing the right file: 
```python
from simple_console_menu import Menu
```

And if you want to use it you can do this:
```python
Menu.SimpleConsoleMenu(menuName,menuItems,autoAddQuit,onlyReturnNumber)
```

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)


