Metadata-Version: 2.4
Name: custom-inputs
Version: 0.2
Summary: Custom terminal inputs for Python
Author: mm-sh
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# custom-inputs-python

Simple and customizable input functions for Python.


## new update 0.2
added the *multi_choice_input()*
added the *custom_inputs error*

## we will add installition by pip soon
now you can copy the file near your python file
```
from custom_inputs import *
```


## Examples

number_input()
```
number_input("How old are you?",allow_negative=False)
```

multi_chice_input()
```
multi_choice_input("what's your gender?","male","female")
```
