orionis 0.101.0__py3-none-any.whl → 0.102.0__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.
- orionis/framework.py +1 -1
- orionis/luminate/bootstrap/command_bootstrapper.py +3 -1
- orionis/luminate/services/commands/reactor_commands_service.py +1 -3
- {orionis-0.101.0.dist-info → orionis-0.102.0.dist-info}/METADATA +1 -1
- {orionis-0.101.0.dist-info → orionis-0.102.0.dist-info}/RECORD +9 -9
- {orionis-0.101.0.dist-info → orionis-0.102.0.dist-info}/LICENCE +0 -0
- {orionis-0.101.0.dist-info → orionis-0.102.0.dist-info}/WHEEL +0 -0
- {orionis-0.101.0.dist-info → orionis-0.102.0.dist-info}/entry_points.txt +0 -0
- {orionis-0.101.0.dist-info → orionis-0.102.0.dist-info}/top_level.txt +0 -0
orionis/framework.py
CHANGED
@@ -170,4 +170,6 @@ class CommandsBootstrapper(ICommandsBootstrapper):
|
|
170
170
|
"""
|
171
171
|
if signature is None:
|
172
172
|
return self._commands
|
173
|
-
|
173
|
+
if signature not in self._commands:
|
174
|
+
raise KeyError(f"Command '{signature}' not found.")
|
175
|
+
return self._commands[signature]
|
@@ -119,9 +119,7 @@ class ReactorCommandsService(IReactorCommandsService):
|
|
119
119
|
self.console_executor.running(program=signature)
|
120
120
|
|
121
121
|
# Retrieve command from bootstrapper
|
122
|
-
command = self.commands_bootstrapper.get(signature
|
123
|
-
if not command:
|
124
|
-
raise CLIOrionisException(f"Command not found: {signature}")
|
122
|
+
command = self.commands_bootstrapper.get(signature)
|
125
123
|
|
126
124
|
# Parse command arguments dynamically based on execution context
|
127
125
|
args_dict = self._parse_arguments(command.get('arguments', []), vars, *args, **kwargs)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
orionis/cli_manager.py,sha256=0bM-hABXJSoPGuvEgnqeaj9qcLP8VjTQ3z9Mb0TSEUI,1381
|
3
|
-
orionis/framework.py,sha256=
|
3
|
+
orionis/framework.py,sha256=YWZ3TMbObSI7tTh0sQ_8GdPE5iuISw0Owq21D0nUWBQ,1387
|
4
4
|
orionis/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
orionis/contracts/bootstrap/i_command_bootstrapper.py,sha256=cfpYWSlNhOY1q_C9o0H7F381OoM0Oh0qaeqP-c85nzk,2457
|
6
6
|
orionis/contracts/bootstrap/i_config_bootstrapper.py,sha256=d2TXT74H2fCBbzWgrt9-ZG11S_H_YPQOEcJoIOrsgb0,4462
|
@@ -63,7 +63,7 @@ orionis/luminate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
63
63
|
orionis/luminate/app.py,sha256=cQZdnPOKZ7Sm4OWvR55U-DwKGPFnDfWgXQM4sB2AG4s,12088
|
64
64
|
orionis/luminate/app_context.py,sha256=se2xpsGoy_drcuOROC7OHaIAN5Yd0kbm5V1zzsxxyQc,996
|
65
65
|
orionis/luminate/bootstrap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
-
orionis/luminate/bootstrap/command_bootstrapper.py,sha256=
|
66
|
+
orionis/luminate/bootstrap/command_bootstrapper.py,sha256=lWlrgE7rWYRS7w6TlTHd0lrXDJxwHKqXH06vL7-sDvw,7029
|
67
67
|
orionis/luminate/bootstrap/config_bootstrapper.py,sha256=Gw83UtPAOggwzqmz062JfJcpIfmZvmIQyZJfgVFiIcQ,7474
|
68
68
|
orionis/luminate/bootstrap/environment_bootstrapper.py,sha256=GTZ-mBumoNlxYcqsQksw4XyH3TRfPkWAU62mB3wFKLk,2777
|
69
69
|
orionis/luminate/bootstrap/exception_bootstrapper.py,sha256=wDKfEW295c7-bavr7YUHK2CLYcTSZgjT9ZRSBne6GOE,1356
|
@@ -131,7 +131,7 @@ orionis/luminate/providers/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
131
131
|
orionis/luminate/providers/log/log_service_provider.py,sha256=tcWDEI-fubi1mWSS-IKiRReuc0pRMHpxvbvuDgs2Uy0,654
|
132
132
|
orionis/luminate/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
133
133
|
orionis/luminate/services/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
134
|
-
orionis/luminate/services/commands/reactor_commands_service.py,sha256=
|
134
|
+
orionis/luminate/services/commands/reactor_commands_service.py,sha256=2kydqQak61enzzoBxQOghWSco1hv2ZFwANJf7d_p9zQ,6441
|
135
135
|
orionis/luminate/services/commands/scheduler_service.py,sha256=JB0f-yOyb7Uz6NLVM4QH2q9_wC-81Mhek-OSKpfOS0o,22577
|
136
136
|
orionis/luminate/services/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
137
|
orionis/luminate/services/config/config_service.py,sha256=sVqX3UBxZA5whjiVFgfo5fzAb8QxD0NT0OYYlgZUK0g,2223
|
@@ -161,9 +161,9 @@ tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
161
|
tests/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
162
|
tests/tools/class_example.py,sha256=dIPD997Y15n6WmKhWoOFSwEldRm9MdOHTZZ49eF1p3c,1056
|
163
163
|
tests/tools/test_reflection.py,sha256=bhLQ7VGVod4B8sv-rW9AjnOumvaBVsoxieA3sdoM2yM,5244
|
164
|
-
orionis-0.
|
165
|
-
orionis-0.
|
166
|
-
orionis-0.
|
167
|
-
orionis-0.
|
168
|
-
orionis-0.
|
169
|
-
orionis-0.
|
164
|
+
orionis-0.102.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
165
|
+
orionis-0.102.0.dist-info/METADATA,sha256=-BMs41KkD-8nawh232ge2P4r9dg9Rbc8MmZhnUpazxk,2979
|
166
|
+
orionis-0.102.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
167
|
+
orionis-0.102.0.dist-info/entry_points.txt,sha256=eef1_CVewfokKjrGBynXa06KabSJYo7LlDKKIKvs1cM,53
|
168
|
+
orionis-0.102.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
169
|
+
orionis-0.102.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|