cli-ih 0.5.2__tar.gz → 0.5.2.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.
- cli_ih-0.5.2.2/InputHandler/__init__.py +1 -0
- {cli_ih-0.5.2 → cli_ih-0.5.2.2}/PKG-INFO +3 -3
- {cli_ih-0.5.2 → cli_ih-0.5.2.2}/README.md +2 -2
- {cli_ih-0.5.2 → cli_ih-0.5.2.2}/cli_ih.egg-info/PKG-INFO +3 -3
- {cli_ih-0.5.2 → cli_ih-0.5.2.2}/cli_ih.egg-info/SOURCES.txt +1 -0
- {cli_ih-0.5.2 → cli_ih-0.5.2.2}/pyproject.toml +1 -1
- {cli_ih-0.5.2 → cli_ih-0.5.2.2}/setup.py +1 -1
- /cli_ih-0.5.2/InputHandler/__init__.py → /cli_ih-0.5.2.2/InputHandler/InputHandler.py +0 -0
- {cli_ih-0.5.2 → cli_ih-0.5.2.2}/cli_ih.egg-info/dependency_links.txt +0 -0
- {cli_ih-0.5.2 → cli_ih-0.5.2.2}/cli_ih.egg-info/top_level.txt +0 -0
- {cli_ih-0.5.2 → cli_ih-0.5.2.2}/setup.cfg +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
from . import InputHandler
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cli_ih
|
3
|
-
Version: 0.5.2
|
3
|
+
Version: 0.5.2.2
|
4
4
|
Summary: A background command handler for python's command line interface.
|
5
5
|
Author-email: Hotment <michatchuplay@gmail.com>
|
6
6
|
Requires-Python: >=3.8
|
@@ -20,12 +20,12 @@ A lightweight Python library for creating interactive command-line interfaces wi
|
|
20
20
|
|
21
21
|
## Installation
|
22
22
|
|
23
|
-
pip install cli-ih
|
23
|
+
`pip install cli-ih`
|
24
24
|
|
25
25
|
## Quick Start
|
26
26
|
|
27
27
|
```python
|
28
|
-
from
|
28
|
+
from cli_ih import InputHandler
|
29
29
|
|
30
30
|
def greet(args):
|
31
31
|
print(f"Hello, {' '.join(args)}!")
|
@@ -12,12 +12,12 @@ A lightweight Python library for creating interactive command-line interfaces wi
|
|
12
12
|
|
13
13
|
## Installation
|
14
14
|
|
15
|
-
pip install cli-ih
|
15
|
+
`pip install cli-ih`
|
16
16
|
|
17
17
|
## Quick Start
|
18
18
|
|
19
19
|
```python
|
20
|
-
from
|
20
|
+
from cli_ih import InputHandler
|
21
21
|
|
22
22
|
def greet(args):
|
23
23
|
print(f"Hello, {' '.join(args)}!")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cli_ih
|
3
|
-
Version: 0.5.2
|
3
|
+
Version: 0.5.2.2
|
4
4
|
Summary: A background command handler for python's command line interface.
|
5
5
|
Author-email: Hotment <michatchuplay@gmail.com>
|
6
6
|
Requires-Python: >=3.8
|
@@ -20,12 +20,12 @@ A lightweight Python library for creating interactive command-line interfaces wi
|
|
20
20
|
|
21
21
|
## Installation
|
22
22
|
|
23
|
-
pip install cli-ih
|
23
|
+
`pip install cli-ih`
|
24
24
|
|
25
25
|
## Quick Start
|
26
26
|
|
27
27
|
```python
|
28
|
-
from
|
28
|
+
from cli_ih import InputHandler
|
29
29
|
|
30
30
|
def greet(args):
|
31
31
|
print(f"Hello, {' '.join(args)}!")
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|