falyx 0.1.37__py3-none-any.whl → 0.1.38__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.
- falyx/__init__.py +0 -11
- falyx/action/__init__.py +7 -9
- falyx/action/action.py +4 -724
- falyx/action/action_factory.py +1 -1
- falyx/action/action_group.py +169 -0
- falyx/action/base.py +156 -0
- falyx/action/chained_action.py +208 -0
- falyx/action/fallback_action.py +49 -0
- falyx/action/io_action.py +1 -1
- falyx/action/literal_input_action.py +47 -0
- falyx/action/menu_action.py +1 -1
- falyx/action/mixins.py +33 -0
- falyx/action/process_action.py +128 -0
- falyx/action/prompt_menu_action.py +1 -1
- falyx/action/select_file_action.py +1 -1
- falyx/action/selection_action.py +1 -2
- falyx/action/user_input_action.py +1 -1
- falyx/command.py +2 -1
- falyx/config.py +2 -1
- falyx/falyx.py +21 -13
- falyx/menu.py +1 -1
- falyx/parsers/argparse.py +139 -40
- falyx/parsers/utils.py +1 -1
- falyx/protocols.py +1 -1
- falyx/retry_utils.py +2 -1
- falyx/utils.py +1 -1
- falyx/version.py +1 -1
- {falyx-0.1.37.dist-info → falyx-0.1.38.dist-info}/METADATA +1 -1
- falyx-0.1.38.dist-info/RECORD +60 -0
- falyx-0.1.37.dist-info/RECORD +0 -53
- {falyx-0.1.37.dist-info → falyx-0.1.38.dist-info}/LICENSE +0 -0
- {falyx-0.1.37.dist-info → falyx-0.1.38.dist-info}/WHEEL +0 -0
- {falyx-0.1.37.dist-info → falyx-0.1.38.dist-info}/entry_points.txt +0 -0
falyx/__init__.py
CHANGED
@@ -7,23 +7,12 @@ Licensed under the MIT License. See LICENSE file for details.
|
|
7
7
|
|
8
8
|
import logging
|
9
9
|
|
10
|
-
from .action.action import Action, ActionGroup, ChainedAction, ProcessAction
|
11
|
-
from .command import Command
|
12
|
-
from .context import ExecutionContext, SharedContext
|
13
10
|
from .execution_registry import ExecutionRegistry
|
14
11
|
from .falyx import Falyx
|
15
12
|
|
16
13
|
logger = logging.getLogger("falyx")
|
17
14
|
|
18
15
|
__all__ = [
|
19
|
-
"Action",
|
20
|
-
"ChainedAction",
|
21
|
-
"ActionGroup",
|
22
|
-
"ProcessAction",
|
23
16
|
"Falyx",
|
24
|
-
"Command",
|
25
|
-
"ExecutionContext",
|
26
|
-
"SharedContext",
|
27
17
|
"ExecutionRegistry",
|
28
|
-
"HookType",
|
29
18
|
]
|
falyx/action/__init__.py
CHANGED
@@ -5,19 +5,17 @@ Copyright (c) 2025 rtj.dev LLC.
|
|
5
5
|
Licensed under the MIT License. See LICENSE file for details.
|
6
6
|
"""
|
7
7
|
|
8
|
-
from .action import
|
9
|
-
Action,
|
10
|
-
ActionGroup,
|
11
|
-
BaseAction,
|
12
|
-
ChainedAction,
|
13
|
-
FallbackAction,
|
14
|
-
LiteralInputAction,
|
15
|
-
ProcessAction,
|
16
|
-
)
|
8
|
+
from .action import Action
|
17
9
|
from .action_factory import ActionFactoryAction
|
10
|
+
from .action_group import ActionGroup
|
11
|
+
from .base import BaseAction
|
12
|
+
from .chained_action import ChainedAction
|
13
|
+
from .fallback_action import FallbackAction
|
18
14
|
from .http_action import HTTPAction
|
19
15
|
from .io_action import BaseIOAction, ShellAction
|
16
|
+
from .literal_input_action import LiteralInputAction
|
20
17
|
from .menu_action import MenuAction
|
18
|
+
from .process_action import ProcessAction
|
21
19
|
from .prompt_menu_action import PromptMenuAction
|
22
20
|
from .select_file_action import SelectFileAction
|
23
21
|
from .selection_action import SelectionAction
|