argenta 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.
- {argenta-0.1.0 → argenta-0.1.2}/PKG-INFO +2 -2
- argenta-0.1.2/README.md +2 -0
- argenta-0.1.2/argenta/app/__init__.py +7 -0
- argenta-0.1.2/argenta/router/__init__.py +4 -0
- {argenta-0.1.0 → argenta-0.1.2}/argenta/router/entity.py +3 -3
- {argenta-0.1.0 → argenta-0.1.2}/pyproject.toml +1 -1
- argenta-0.1.0/README.md +0 -2
- argenta-0.1.0/argenta/__init__.py +0 -2
- argenta-0.1.0/argenta/router/__init__.py +0 -0
- {argenta-0.1.0 → argenta-0.1.2}/LICENSE +0 -0
- {argenta-0.1.0/argenta/app → argenta-0.1.2/argenta}/__init__.py +0 -0
- {argenta-0.1.0 → argenta-0.1.2}/argenta/app/entity.py +0 -0
- {argenta-0.1.0 → argenta-0.1.2}/argenta/app/exceptions.py +0 -0
- {argenta-0.1.0 → argenta-0.1.2}/argenta/router/exceptions.py +0 -0
@@ -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
|
|
argenta-0.1.2/README.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
from .entity import App
|
2
|
+
from .exceptions import (HandlerForUnknownCommandsCanOnlyBeDeclaredForMainRouterException,
|
3
|
+
InvalidDescriptionMessagePatternException,
|
4
|
+
InvalidRouterInstanceException,
|
5
|
+
OnlyOneMainRouterIsAllowedException,
|
6
|
+
MissingMainRouterException,
|
7
|
+
MissingHandlersForUnknownCommandsOnMainRouterException)
|
@@ -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:
|
argenta-0.1.0/README.md
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|