Metadata-Version: 2.4
Name: listinput
Version: 0.1.2
Summary: A custom package to handle various user list inputs easily.
Author-email: H1te5h <malviya.hitesh.1607@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# ListInput

A custom Python package to easily handle various types of user list inputs from the terminal.

## Installation

```bash
pip install listinput
```

## Usage Examples

### Get a list of strings
```python
import listinput

fruits = listinput.get_strings("Enter fruits: ")
print(fruits)
```

### Get a list of numbers
```python
import listinput

numbers = listinput.get_numbers("Enter numbers: ", num_type=int)
print(numbers)
```
