Metadata-Version: 2.1
Name: selectpy
Version: 0.0.4
Summary: A fully customizable selection menu for python
Author: Soham P
Author-email: <sohxmp1204@gmail.com>
Keywords: python,select,select menu,terminal menu,python menu,python select menu
Description-Content-Type: text/markdown
License-File: LICENSE


# SelectPy ( selectpy )

Selectpy is a simple python module to integrate a fully customizable select menu in your python projects.



## How To Use



Installing The Module



```python

pip install selectpy

```



Importing The Module in The Project



```python

from selectpy import select

```



Adding The Select Menu And Getting The Result



```python

ans = select(opts=["Option 1", "Option 2"],

             msg="Choose an Option:",

             c=">",

             cursor_color="#ff0000",

             selected_color="#ff0000",

             unselected_color="#ffffff")



print(ans)

```



Output



```

Choose an Option:

> Option 1

  Option 2



Option 1

```





Navigation For The Selection Menu:



- Up Arrow

- Down Arrow

- Enter

- Escape

- Ctrl + C



Thats it!
