fun-args 0.0.1__py3-none-any.whl → 0.0.2__py3-none-any.whl
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.
- fun_args/__init__.py +1 -1
- {fun_args-0.0.1.dist-info → fun_args-0.0.2.dist-info}/METADATA +5 -3
- fun_args-0.0.2.dist-info/RECORD +6 -0
- fun_args-0.0.1.dist-info/RECORD +0 -6
- {fun_args-0.0.1.dist-info → fun_args-0.0.2.dist-info}/WHEEL +0 -0
- {fun_args-0.0.1.dist-info → fun_args-0.0.2.dist-info}/top_level.txt +0 -0
fun_args/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
from
|
|
1
|
+
from fun_args import argumentize
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
|
-
Name:
|
|
3
|
-
Version: 0.0.
|
|
2
|
+
Name: fun_args
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: Tiny CLI argument parser inspired by Typer
|
|
5
5
|
Author-email: Maxim Grivennyy <maximgriven@gmail.com>
|
|
6
|
-
Requires-Python: >=3.
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
|
|
9
9
|
# Fun Args Package
|
|
@@ -11,6 +11,8 @@ Description-Content-Type: text/markdown
|
|
|
11
11
|
Simple argument passing library inspired by Typer
|
|
12
12
|
|
|
13
13
|
```python
|
|
14
|
+
from fun_args import argumentize
|
|
15
|
+
|
|
14
16
|
# Your main with explicitly defined parameters
|
|
15
17
|
def main(name: str, age: int = 25, smart = False):
|
|
16
18
|
print(f"Hi, {name}")
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
fun_args/__init__.py,sha256=oKZ0miIKShS9wzdzew_Azdpz68zSEHttUTWVATSi9M0,34
|
|
2
|
+
fun_args/main.py,sha256=9CNToRrgk2Gg6E6XjPQbJPShy5HwadELAq9-FRhH8eY,1533
|
|
3
|
+
fun_args-0.0.2.dist-info/METADATA,sha256=Tuk2feZ3vRK8onZpoa2ezRUigAUaKkBz_fXaTFPsXOc,851
|
|
4
|
+
fun_args-0.0.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
5
|
+
fun_args-0.0.2.dist-info/top_level.txt,sha256=Zo8QUvL6orXEOdypGmIotozZTcv6rH-INV6Yjzc-_wM,9
|
|
6
|
+
fun_args-0.0.2.dist-info/RECORD,,
|
fun_args-0.0.1.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
fun_args/__init__.py,sha256=5g6QiGB9QrBzT3wbJXluhdcRkskSmoIkIRGYsxR_dCA,31
|
|
2
|
-
fun_args/main.py,sha256=9CNToRrgk2Gg6E6XjPQbJPShy5HwadELAq9-FRhH8eY,1533
|
|
3
|
-
fun_args-0.0.1.dist-info/METADATA,sha256=K6E7ZQyQZp_sH4nDrfGVEGQ9D7-0sm-vrJODBjaR5vM,816
|
|
4
|
-
fun_args-0.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
5
|
-
fun_args-0.0.1.dist-info/top_level.txt,sha256=Zo8QUvL6orXEOdypGmIotozZTcv6rH-INV6Yjzc-_wM,9
|
|
6
|
-
fun_args-0.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|