argenta 0.1.1__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 CHANGED
@@ -1,2 +0,0 @@
1
- from .router import *
2
- from .app import *
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)
@@ -0,0 +1,4 @@
1
+ from .entity import Router
2
+ from .exceptions import (UnknownCommandHandlerHasAlreadyBeenCreatedException,
3
+ InvalidDescriptionInstanceException,
4
+ InvalidCommandInstanceException)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: argenta
3
- Version: 0.1.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
- python library for creating cli apps
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,,
@@ -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=G63P6vj4qxNI9PVw7Cdc9y9gFDlkdv7zA2ydaOcabHM,2541
7
- argenta/router/exceptions.py,sha256=iNZIM84oTdiowF-r4RRlfxkN4pjZuGlg8k3vouOZCT0,414
8
- argenta-0.1.1.dist-info/LICENSE,sha256=zmqoGh2n5rReBv4s8wPxF_gZEZDgauJYSPMuPczgOiU,1082
9
- argenta-0.1.1.dist-info/METADATA,sha256=AS0_EjP-a48efI8ivJW1BBgNh3NQbCAggN1q05q17uU,525
10
- argenta-0.1.1.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
11
- argenta-0.1.1.dist-info/RECORD,,