argenta 0.1.0__py3-none-any.whl → 0.1.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.
- argenta/__init__.py +0 -2
- argenta/app/__init__.py +7 -0
- argenta/router/__init__.py +4 -0
- argenta/router/entity.py +3 -3
- {argenta-0.1.0.dist-info → argenta-0.1.2.dist-info}/METADATA +2 -2
- argenta-0.1.2.dist-info/RECORD +11 -0
- argenta-0.1.0.dist-info/RECORD +0 -11
- {argenta-0.1.0.dist-info → argenta-0.1.2.dist-info}/LICENSE +0 -0
- {argenta-0.1.0.dist-info → argenta-0.1.2.dist-info}/WHEEL +0 -0
argenta/__init__.py
CHANGED
argenta/app/__init__.py
CHANGED
@@ -0,0 +1,7 @@
|
|
1
|
+
from .entity import App
|
2
|
+
from .exceptions import (HandlerForUnknownCommandsCanOnlyBeDeclaredForMainRouterException,
|
3
|
+
InvalidDescriptionMessagePatternException,
|
4
|
+
InvalidRouterInstanceException,
|
5
|
+
OnlyOneMainRouterIsAllowedException,
|
6
|
+
MissingMainRouterException,
|
7
|
+
MissingHandlersForUnknownCommandsOnMainRouterException)
|
argenta/router/__init__.py
CHANGED
argenta/router/entity.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
from typing import Callable, Any
|
2
|
-
from
|
3
|
-
|
4
|
-
|
2
|
+
from ..router.exceptions import (InvalidCommandInstanceException,
|
3
|
+
UnknownCommandHandlerHasAlreadyBeenCreatedException,
|
4
|
+
InvalidDescriptionInstanceException)
|
5
5
|
|
6
6
|
|
7
7
|
class Router:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: argenta
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: python library for creating cli apps
|
5
5
|
License: MIT
|
6
6
|
Author: kolo
|
@@ -14,5 +14,5 @@ Classifier: Programming Language :: Python :: 3.13
|
|
14
14
|
Description-Content-Type: text/markdown
|
15
15
|
|
16
16
|
# Argenta
|
17
|
-
|
17
|
+
Python library for creating cli apps
|
18
18
|
|
@@ -0,0 +1,11 @@
|
|
1
|
+
argenta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
argenta/app/__init__.py,sha256=WGPNy7LzkE6vjgRIITFYuJIB96vgDMFPRLOh4SV3R3E,443
|
3
|
+
argenta/app/entity.py,sha256=IYUeVGIYQS5J8vQ4gUz3TfXIxOUpDpTMjdxMd30AODU,5869
|
4
|
+
argenta/app/exceptions.py,sha256=IW_o0hfAbsj4aeWifzT7tL3BL-6tBCqm0R9MwMXTIRE,1551
|
5
|
+
argenta/router/__init__.py,sha256=gjneUFVbKVgwil8TbHRvCN89wT_U9CaakSbFmMC_fxk,227
|
6
|
+
argenta/router/entity.py,sha256=G63P6vj4qxNI9PVw7Cdc9y9gFDlkdv7zA2ydaOcabHM,2541
|
7
|
+
argenta/router/exceptions.py,sha256=iNZIM84oTdiowF-r4RRlfxkN4pjZuGlg8k3vouOZCT0,414
|
8
|
+
argenta-0.1.2.dist-info/LICENSE,sha256=zmqoGh2n5rReBv4s8wPxF_gZEZDgauJYSPMuPczgOiU,1082
|
9
|
+
argenta-0.1.2.dist-info/METADATA,sha256=Xkp04g7UmihvCL9-qizuEZva6wpews8aPrCycWBJ8jY,525
|
10
|
+
argenta-0.1.2.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
11
|
+
argenta-0.1.2.dist-info/RECORD,,
|
argenta-0.1.0.dist-info/RECORD
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
argenta/__init__.py,sha256=FebXtkVKUBK3d0JGA3Lov1mpjcOjDeT-vmcV93iaoYg,41
|
2
|
-
argenta/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
argenta/app/entity.py,sha256=IYUeVGIYQS5J8vQ4gUz3TfXIxOUpDpTMjdxMd30AODU,5869
|
4
|
-
argenta/app/exceptions.py,sha256=IW_o0hfAbsj4aeWifzT7tL3BL-6tBCqm0R9MwMXTIRE,1551
|
5
|
-
argenta/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
argenta/router/entity.py,sha256=t3bkIW0pJPov6lQim388y0DdrekYWRE6VtXj4RQrtyk,2562
|
7
|
-
argenta/router/exceptions.py,sha256=iNZIM84oTdiowF-r4RRlfxkN4pjZuGlg8k3vouOZCT0,414
|
8
|
-
argenta-0.1.0.dist-info/LICENSE,sha256=zmqoGh2n5rReBv4s8wPxF_gZEZDgauJYSPMuPczgOiU,1082
|
9
|
-
argenta-0.1.0.dist-info/METADATA,sha256=hu5dbaIOJV6Krp9AYQ4jFnpGeAdxxk1R5K_jPfI6N_8,525
|
10
|
-
argenta-0.1.0.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
11
|
-
argenta-0.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|