Metadata-Version: 2.1
Name: dumb-menu
Version: 1.0
Summary: a ligh weight menu , support both win and mac 
Author: clever chen
Author-email: 
Keywords: python,menu,dumb_menu,windows,mac,linux
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown


# dumb_menu

one day i want to make a menu for my progarm, but i don't want to use any library they are so heavy and not support both mac and windows (i am talking about u : simple_term_menu ), so i make this.



dumb_menu is a ligh weight menu ,support hot key, support both win and mac ,not tested on linux.



```python

options = ["[1]Option 1", "[2]Option 2", "[3]Option 3","[q]quit"]



index = get_menu_choice(options)



print(f"You selected option {index + 1}: {options[index]}")

```



![png](https://raw.githubusercontent.com/cornradio/imgs/main/20230214163952.png)
