orionis 0.93.0__py3-none-any.whl → 0.94.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/contracts/console/i_task_manager.py +1 -1
- orionis/contracts/facades/commands/i_scheduler_facade.py +28 -0
- orionis/framework.py +1 -1
- orionis/luminate/facades/commands/scheduler_facade.py +30 -0
- {orionis-0.93.0.dist-info → orionis-0.94.0.dist-info}/METADATA +1 -1
- {orionis-0.93.0.dist-info → orionis-0.94.0.dist-info}/RECORD +10 -8
- {orionis-0.93.0.dist-info → orionis-0.94.0.dist-info}/LICENCE +0 -0
- {orionis-0.93.0.dist-info → orionis-0.94.0.dist-info}/WHEEL +0 -0
- {orionis-0.93.0.dist-info → orionis-0.94.0.dist-info}/entry_points.txt +0 -0
- {orionis-0.93.0.dist-info → orionis-0.94.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
from abc import ABC, abstractmethod
|
2
|
+
from typing import Any
|
3
|
+
from orionis.luminate.services.commands.scheduler_service import ScheduleService
|
4
|
+
|
5
|
+
class ISchedule(ABC):
|
6
|
+
|
7
|
+
@abstractmethod
|
8
|
+
def command(signature: str, vars: dict[str, Any] = {}, *args: Any, **kwargs: Any) -> 'ScheduleService':
|
9
|
+
"""
|
10
|
+
Defines a Orionis command to be executed.
|
11
|
+
|
12
|
+
Parameters
|
13
|
+
----------
|
14
|
+
signature : str
|
15
|
+
The signature of the command to execute.
|
16
|
+
vars : dict, optional
|
17
|
+
A dictionary of variables to pass to the command, by default an empty dictionary.
|
18
|
+
*args : Any
|
19
|
+
Additional positional arguments to pass to the command.
|
20
|
+
**kwargs : Any
|
21
|
+
Additional keyword arguments to pass to the command.
|
22
|
+
|
23
|
+
Returns
|
24
|
+
-------
|
25
|
+
Schedule
|
26
|
+
Returns the Schedule instance itself, allowing method chaining.
|
27
|
+
"""
|
28
|
+
pass
|
orionis/framework.py
CHANGED
@@ -0,0 +1,30 @@
|
|
1
|
+
from typing import Any
|
2
|
+
from orionis.contracts.facades.commands.i_scheduler_facade import ISchedule
|
3
|
+
from orionis.luminate.facades.app import app
|
4
|
+
from orionis.luminate.services.commands.scheduler_service import ScheduleService
|
5
|
+
|
6
|
+
class Schedule(ISchedule):
|
7
|
+
|
8
|
+
@staticmethod
|
9
|
+
def command(signature: str, vars: dict[str, Any] = {}, *args: Any, **kwargs: Any) -> 'ScheduleService':
|
10
|
+
"""
|
11
|
+
Defines a Orionis command to be executed.
|
12
|
+
|
13
|
+
Parameters
|
14
|
+
----------
|
15
|
+
signature : str
|
16
|
+
The signature of the command to execute.
|
17
|
+
vars : dict, optional
|
18
|
+
A dictionary of variables to pass to the command, by default an empty dictionary.
|
19
|
+
*args : Any
|
20
|
+
Additional positional arguments to pass to the command.
|
21
|
+
**kwargs : Any
|
22
|
+
Additional keyword arguments to pass to the command.
|
23
|
+
|
24
|
+
Returns
|
25
|
+
-------
|
26
|
+
Schedule
|
27
|
+
Returns the Schedule instance itself, allowing method chaining.
|
28
|
+
"""
|
29
|
+
_scheduler_provider : ScheduleService = app(ScheduleService)
|
30
|
+
return _scheduler_provider.command(signature, 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=q1BoeNDxlkOfUKxP4UW9H77iLeTchu-G6UTu9PeHvk8,1386
|
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
|
@@ -11,7 +11,7 @@ orionis/contracts/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
11
11
|
orionis/contracts/console/i_command_filter.py,sha256=g66AlKNjTyQfdarO23r27nFqwiCnrP6kjaZ7tUGql-c,937
|
12
12
|
orionis/contracts/console/i_kernel.py,sha256=GtiGlWe7EQ9aeChHpQ-GlIJlJ5tEqpZYYkjNcrwXI94,945
|
13
13
|
orionis/contracts/console/i_parser.py,sha256=vMmTK0wMfTjt7H-tRf-WRLI8R-ghUzJauctwtgj0jFU,2082
|
14
|
-
orionis/contracts/console/i_task_manager.py,sha256=
|
14
|
+
orionis/contracts/console/i_task_manager.py,sha256=SfSEAebGZIt7ajBU-jdWklvYHjUffA5pertVVLw-E4E,1207
|
15
15
|
orionis/contracts/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
orionis/contracts/console/base/i_command.py,sha256=godE5t2r5Vrc5jYu_bsJnlSj8DjFWqtZYe14S7sKxwE,12239
|
17
17
|
orionis/contracts/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -23,6 +23,7 @@ orionis/contracts/container/i_types.py,sha256=GCH7x3PjpXKPET3l84GcXbcM8cpne8AGrm
|
|
23
23
|
orionis/contracts/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
orionis/contracts/facades/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
25
|
orionis/contracts/facades/commands/i_commands_facade.py,sha256=LpSfZb3lTmhgMx0H42NmFbKLvcOqSDIbpQrkQpF9RPY,1274
|
26
|
+
orionis/contracts/facades/commands/i_scheduler_facade.py,sha256=CR2E7WbYGt8ZMpekUzWBHCor3FEnBmYMDwPfKSYPq84,947
|
26
27
|
orionis/contracts/facades/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
28
|
orionis/contracts/facades/config/i_config_facade.py,sha256=Yzc0mB4W9XF8cZTdTO78AKUiyGaiShl1k8nJiecvKTc,970
|
28
29
|
orionis/contracts/facades/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -104,6 +105,7 @@ orionis/luminate/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
104
105
|
orionis/luminate/facades/app.py,sha256=DHwCdhfU-Mfj0gPX5nwXR_cgnkvg6agMP2WBa-L0JE8,1294
|
105
106
|
orionis/luminate/facades/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
107
|
orionis/luminate/facades/commands/commands_facade.py,sha256=xy-5sW5_fDXhS2y0c0CCbBOfrOR0mJQLVTwBe3J8WTk,1561
|
108
|
+
orionis/luminate/facades/commands/scheduler_facade.py,sha256=mB7bU6OGT5btAejhkty4X86YLa7o5oB5ItuW-oRxFHA,1170
|
107
109
|
orionis/luminate/facades/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
108
110
|
orionis/luminate/facades/config/config_facade.py,sha256=xpyVdH_-CeOvtMuf-Pjl9SFZWOflXzx9lyDy_fYOmxU,1353
|
109
111
|
orionis/luminate/facades/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -159,9 +161,9 @@ tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
161
|
tests/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
160
162
|
tests/tools/class_example.py,sha256=dIPD997Y15n6WmKhWoOFSwEldRm9MdOHTZZ49eF1p3c,1056
|
161
163
|
tests/tools/test_reflection.py,sha256=bhLQ7VGVod4B8sv-rW9AjnOumvaBVsoxieA3sdoM2yM,5244
|
162
|
-
orionis-0.
|
163
|
-
orionis-0.
|
164
|
-
orionis-0.
|
165
|
-
orionis-0.
|
166
|
-
orionis-0.
|
167
|
-
orionis-0.
|
164
|
+
orionis-0.94.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
165
|
+
orionis-0.94.0.dist-info/METADATA,sha256=4x294DLMvEIxGwN2p_Hz1x2sx2HXR-rXj582DvN9abw,2978
|
166
|
+
orionis-0.94.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
167
|
+
orionis-0.94.0.dist-info/entry_points.txt,sha256=eef1_CVewfokKjrGBynXa06KabSJYo7LlDKKIKvs1cM,53
|
168
|
+
orionis-0.94.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
169
|
+
orionis-0.94.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|