listinput 0.1.0__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- listinput-0.1.2/PKG-INFO +38 -0
- listinput-0.1.2/README.md +27 -0
- {listinput-0.1.0 → listinput-0.1.2}/pyproject.toml +2 -2
- listinput-0.1.2/src/listinput.egg-info/PKG-INFO +38 -0
- {listinput-0.1.0 → listinput-0.1.2}/src/listinput.egg-info/SOURCES.txt +1 -0
- listinput-0.1.0/PKG-INFO +0 -10
- listinput-0.1.0/src/listinput.egg-info/PKG-INFO +0 -10
- {listinput-0.1.0 → listinput-0.1.2}/setup.cfg +0 -0
- {listinput-0.1.0 → listinput-0.1.2}/src/list_input/__init__.py +0 -0
- {listinput-0.1.0 → listinput-0.1.2}/src/list_input/input_handlers.py +0 -0
- {listinput-0.1.0 → listinput-0.1.2}/src/listinput.egg-info/dependency_links.txt +0 -0
- {listinput-0.1.0 → listinput-0.1.2}/src/listinput.egg-info/top_level.txt +0 -0
listinput-0.1.2/PKG-INFO
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: listinput
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A custom package to handle various user list inputs easily.
|
|
5
|
+
Author-email: H1te5h <malviya.hitesh.1607@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# ListInput
|
|
13
|
+
|
|
14
|
+
A custom Python package to easily handle various types of user list inputs from the terminal.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install listinput
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage Examples
|
|
23
|
+
|
|
24
|
+
### Get a list of strings
|
|
25
|
+
```python
|
|
26
|
+
import listinput
|
|
27
|
+
|
|
28
|
+
fruits = listinput.get_strings("Enter fruits: ")
|
|
29
|
+
print(fruits)
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Get a list of numbers
|
|
33
|
+
```python
|
|
34
|
+
import listinput
|
|
35
|
+
|
|
36
|
+
numbers = listinput.get_numbers("Enter numbers: ", num_type=int)
|
|
37
|
+
print(numbers)
|
|
38
|
+
```
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# ListInput
|
|
2
|
+
|
|
3
|
+
A custom Python package to easily handle various types of user list inputs from the terminal.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install listinput
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage Examples
|
|
12
|
+
|
|
13
|
+
### Get a list of strings
|
|
14
|
+
```python
|
|
15
|
+
import listinput
|
|
16
|
+
|
|
17
|
+
fruits = listinput.get_strings("Enter fruits: ")
|
|
18
|
+
print(fruits)
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Get a list of numbers
|
|
22
|
+
```python
|
|
23
|
+
import listinput
|
|
24
|
+
|
|
25
|
+
numbers = listinput.get_numbers("Enter numbers: ", num_type=int)
|
|
26
|
+
print(numbers)
|
|
27
|
+
```
|
|
@@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "listinput"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
authors = [
|
|
9
|
-
{ name="
|
|
9
|
+
{ name="H1te5h", email="malviya.hitesh.1607@gmail.com" }
|
|
10
10
|
]
|
|
11
11
|
description = "A custom package to handle various user list inputs easily."
|
|
12
12
|
readme = "README.md"
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: listinput
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A custom package to handle various user list inputs easily.
|
|
5
|
+
Author-email: H1te5h <malviya.hitesh.1607@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# ListInput
|
|
13
|
+
|
|
14
|
+
A custom Python package to easily handle various types of user list inputs from the terminal.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install listinput
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage Examples
|
|
23
|
+
|
|
24
|
+
### Get a list of strings
|
|
25
|
+
```python
|
|
26
|
+
import listinput
|
|
27
|
+
|
|
28
|
+
fruits = listinput.get_strings("Enter fruits: ")
|
|
29
|
+
print(fruits)
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Get a list of numbers
|
|
33
|
+
```python
|
|
34
|
+
import listinput
|
|
35
|
+
|
|
36
|
+
numbers = listinput.get_numbers("Enter numbers: ", num_type=int)
|
|
37
|
+
print(numbers)
|
|
38
|
+
```
|
listinput-0.1.0/PKG-INFO
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: listinput
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: A custom package to handle various user list inputs easily.
|
|
5
|
-
Author-email: Your Name <your.email@example.com>
|
|
6
|
-
Classifier: Programming Language :: Python :: 3
|
|
7
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
-
Classifier: Operating System :: OS Independent
|
|
9
|
-
Requires-Python: >=3.7
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: listinput
|
|
3
|
-
Version: 0.1.0
|
|
4
|
-
Summary: A custom package to handle various user list inputs easily.
|
|
5
|
-
Author-email: Your Name <your.email@example.com>
|
|
6
|
-
Classifier: Programming Language :: Python :: 3
|
|
7
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
-
Classifier: Operating System :: OS Independent
|
|
9
|
-
Requires-Python: >=3.7
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|