orionis 0.539.0__py3-none-any.whl → 0.541.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.
Files changed (59) hide show
  1. orionis/console/base/command.py +1 -1
  2. orionis/console/base/scheduler.py +1 -1
  3. orionis/console/contracts/base_command.py +123 -0
  4. orionis/console/contracts/cli_request.py +85 -0
  5. orionis/console/contracts/command.py +90 -108
  6. orionis/console/contracts/event.py +1 -1
  7. orionis/console/contracts/reactor.py +40 -0
  8. orionis/console/core/reactor.py +325 -91
  9. orionis/console/dumper/dump.py +1 -1
  10. orionis/console/dynamic/progress_bar.py +1 -1
  11. orionis/console/{enums → entities}/command.py +3 -0
  12. orionis/console/{enums → entities}/event.py +1 -1
  13. orionis/console/fluent/command.py +216 -0
  14. orionis/console/{tasks → fluent}/event.py +1 -1
  15. orionis/console/kernel.py +28 -11
  16. orionis/console/output/console.py +1 -1
  17. orionis/console/output/executor.py +1 -1
  18. orionis/console/request/cli_request.py +113 -31
  19. orionis/console/tasks/schedule.py +4 -4
  20. orionis/container/container.py +102 -1
  21. orionis/container/contracts/container.py +46 -0
  22. orionis/failure/base/handler.py +6 -6
  23. orionis/failure/catch.py +1 -1
  24. orionis/failure/contracts/handler.py +3 -3
  25. orionis/foundation/application.py +1 -1
  26. orionis/foundation/providers/console_provider.py +1 -1
  27. orionis/foundation/providers/dumper_provider.py +1 -1
  28. orionis/foundation/providers/executor_provider.py +1 -1
  29. orionis/foundation/providers/progress_bar_provider.py +1 -1
  30. orionis/metadata/framework.py +1 -1
  31. orionis/support/facades/application.pyi +5 -0
  32. orionis/support/facades/console.pyi +4 -0
  33. orionis/support/facades/directory.py +0 -1
  34. orionis/support/facades/directory.pyi +4 -0
  35. orionis/support/facades/dumper.pyi +4 -0
  36. orionis/support/facades/executor.pyi +4 -0
  37. orionis/support/facades/inspire.pyi +4 -0
  38. orionis/support/facades/logger.pyi +4 -0
  39. orionis/support/facades/performance_counter.pyi +4 -0
  40. orionis/support/facades/progress_bar.pyi +4 -0
  41. orionis/support/facades/reactor.pyi +97 -0
  42. orionis/support/facades/testing.pyi +4 -0
  43. orionis/support/facades/workers.pyi +4 -0
  44. orionis/test/kernel.py +1 -1
  45. {orionis-0.539.0.dist-info → orionis-0.541.0.dist-info}/METADATA +1 -1
  46. {orionis-0.539.0.dist-info → orionis-0.541.0.dist-info}/RECORD +57 -44
  47. orionis/console/entities/request.py +0 -37
  48. orionis/console/output/contracts/__init__.py +0 -0
  49. /orionis/console/contracts/{scheduler.py → base_scheduler.py} +0 -0
  50. /orionis/console/{output/contracts → contracts}/console.py +0 -0
  51. /orionis/console/{dumper/contracts → contracts}/dump.py +0 -0
  52. /orionis/console/{output/contracts → contracts}/executor.py +0 -0
  53. /orionis/console/{dynamic/contracts → contracts}/progress_bar.py +0 -0
  54. /orionis/console/{dumper/contracts → fluent}/__init__.py +0 -0
  55. /orionis/console/{dynamic/contracts → request}/__init__.py +0 -0
  56. {orionis-0.539.0.dist-info → orionis-0.541.0.dist-info}/WHEEL +0 -0
  57. {orionis-0.539.0.dist-info → orionis-0.541.0.dist-info}/licenses/LICENCE +0 -0
  58. {orionis-0.539.0.dist-info → orionis-0.541.0.dist-info}/top_level.txt +0 -0
  59. {orionis-0.539.0.dist-info → orionis-0.541.0.dist-info}/zip-safe +0 -0
@@ -100,6 +100,52 @@ class IContainer(ABC):
100
100
  """
101
101
  pass
102
102
 
103
+ @abstractmethod
104
+ def scopedInstance(
105
+ self,
106
+ abstract: Callable[..., Any],
107
+ instance: Any,
108
+ *,
109
+ alias: str = None,
110
+ enforce_decoupling: bool = False
111
+ ) -> Optional[bool]:
112
+ """
113
+ Registers an instance of a class or interface in the container with scoped lifetime.
114
+
115
+ Parameters
116
+ ----------
117
+ abstract : Callable[..., Any]
118
+ The abstract class or interface to associate with the instance.
119
+ instance : Any
120
+ The concrete instance to register.
121
+ alias : str, optional
122
+ An optional alias to register the instance under. If not provided,
123
+ the abstract's `__name__` attribute will be used as the alias if available.
124
+ enforce_decoupling : bool, optional
125
+ Whether to enforce decoupling between abstract and concrete types.
126
+
127
+ Returns
128
+ -------
129
+ bool
130
+ True if the instance was successfully registered.
131
+
132
+ Raises
133
+ ------
134
+ TypeError
135
+ If `abstract` is not an abstract class or if `alias` is not a valid string.
136
+ ValueError
137
+ If `instance` is not a valid instance of `abstract`.
138
+ OrionisContainerException
139
+ If no active scope is found.
140
+
141
+ Notes
142
+ -----
143
+ This method registers the instance with scoped lifetime, meaning it will be
144
+ available only within the current active scope. If no scope is active,
145
+ an exception will be raised.
146
+ """
147
+ pass
148
+
103
149
  @abstractmethod
104
150
  def instance(
105
151
  self,
@@ -1,6 +1,6 @@
1
1
  from typing import Any, List
2
- from orionis.console.entities.request import CLIRequest
3
- from orionis.console.output.contracts.console import IConsole
2
+ from orionis.console.contracts.cli_request import ICLIRequest
3
+ from orionis.console.contracts.console import IConsole
4
4
  from orionis.failure.contracts.handler import IBaseExceptionHandler
5
5
  from orionis.failure.entities.throwable import Throwable
6
6
  from orionis.services.log.contracts.log_service import ILogger
@@ -92,7 +92,7 @@ class BaseExceptionHandler(IBaseExceptionHandler):
92
92
  # Return the structured exception
93
93
  return throwable
94
94
 
95
- async def renderCLI(self, request: CLIRequest, exception: BaseException, log: ILogger, console: IConsole) -> Any:
95
+ async def renderCLI(self, exception: BaseException, request: ICLIRequest, log: ILogger, console: IConsole) -> Any:
96
96
  """
97
97
  Render the exception message for CLI output.
98
98
 
@@ -110,14 +110,14 @@ class BaseExceptionHandler(IBaseExceptionHandler):
110
110
  raise TypeError(f"Expected BaseException, got {type(exception).__name__}")
111
111
 
112
112
  # Ensure the request is a CLIRequest
113
- if not isinstance(request, CLIRequest):
114
- raise TypeError(f"Expected CLIRequest, got {type(request).__name__}")
113
+ if not isinstance(request, ICLIRequest):
114
+ raise TypeError(f"Expected ICLIRequest, got {type(request).__name__}")
115
115
 
116
116
  # Convert the exception into a structured Throwable object
117
117
  throwable = await self.destructureException(exception)
118
118
 
119
119
  # Convert the request arguments to a string for logging
120
- string_args = ' '.join(request.args)
120
+ string_args = ', '.join(request.all().keys()) if request.all() else 'No arguments'
121
121
 
122
122
  # Log the CLI error message with arguments
123
123
  log.error(f"CLI Error: {throwable.message} (Args: {string_args})")
orionis/failure/catch.py CHANGED
@@ -79,4 +79,4 @@ class Catch(ICatch):
79
79
  if isinstance(kernel, KernelCLI) or isinstance(kernel, Schedule):
80
80
 
81
81
  # Render the exception details to the CLI using the exception handler
82
- self.__app.call(self.__exception_handler, 'renderCLI', request=request, exception=e)
82
+ self.__app.call(self.__exception_handler, 'renderCLI', exception=e, request=request)
@@ -1,7 +1,7 @@
1
1
  from abc import abstractmethod
2
2
  from typing import Any
3
- from orionis.console.entities.request import CLIRequest
4
- from orionis.console.output.contracts.console import IConsole
3
+ from orionis.console.contracts.cli_request import ICLIRequest
4
+ from orionis.console.contracts.console import IConsole
5
5
  from orionis.services.log.contracts.log_service import ILogger
6
6
 
7
7
  class IBaseExceptionHandler:
@@ -62,7 +62,7 @@ class IBaseExceptionHandler:
62
62
  pass
63
63
 
64
64
  @abstractmethod
65
- async def renderCLI(self, request: CLIRequest, exception: BaseException, log: ILogger, console: IConsole) -> Any:
65
+ async def renderCLI(self, exception: BaseException, request: ICLIRequest, log: ILogger, console: IConsole) -> Any:
66
66
  """
67
67
  Render the exception message for CLI output.
68
68
 
@@ -2,7 +2,7 @@ import asyncio
2
2
  import time
3
3
  from pathlib import Path
4
4
  from typing import Any, List, Type
5
- from orionis.console.contracts.scheduler import IBaseScheduler
5
+ from orionis.console.contracts.base_scheduler import IBaseScheduler
6
6
  from orionis.console.base.scheduler import BaseScheduler
7
7
  from orionis.container.container import Container
8
8
  from orionis.container.contracts.service_provider import IServiceProvider
@@ -1,5 +1,5 @@
1
1
  from orionis.console.output.console import Console
2
- from orionis.console.output.contracts.console import IConsole
2
+ from orionis.console.contracts.console import IConsole
3
3
  from orionis.container.providers.service_provider import ServiceProvider
4
4
 
5
5
  class ConsoleProvider(ServiceProvider):
@@ -1,5 +1,5 @@
1
1
  from orionis.console.dumper.dump import Debug
2
- from orionis.console.dumper.contracts.dump import IDebug
2
+ from orionis.console.contracts.dump import IDebug
3
3
  from orionis.container.providers.service_provider import ServiceProvider
4
4
 
5
5
  class DumperProvider(ServiceProvider):
@@ -1,4 +1,4 @@
1
- from orionis.console.output.contracts.executor import IExecutor
1
+ from orionis.console.contracts.executor import IExecutor
2
2
  from orionis.console.output.executor import Executor
3
3
  from orionis.container.providers.service_provider import ServiceProvider
4
4
 
@@ -1,4 +1,4 @@
1
- from orionis.console.dynamic.contracts.progress_bar import IProgressBar
1
+ from orionis.console.contracts.progress_bar import IProgressBar
2
2
  from orionis.console.dynamic.progress_bar import ProgressBar
3
3
  from orionis.container.providers.service_provider import ServiceProvider
4
4
 
@@ -5,7 +5,7 @@
5
5
  NAME = "orionis"
6
6
 
7
7
  # Current version of the framework
8
- VERSION = "0.539.0"
8
+ VERSION = "0.541.0"
9
9
 
10
10
  # Full name of the author or maintainer of the project
11
11
  AUTHOR = "Raul Mauricio Uñate Castro"
@@ -0,0 +1,5 @@
1
+ from orionis.container.contracts.container import IContainer
2
+ from orionis.foundation.contracts.application import IApplication
3
+
4
+ class Application(IApplication, IContainer):
5
+ pass
@@ -0,0 +1,4 @@
1
+ from orionis.console.contracts.console import IConsole
2
+
3
+ class Console(IConsole):
4
+ pass
@@ -1,5 +1,4 @@
1
1
  from orionis.container.facades.facade import Facade
2
- from orionis.services.file.contracts.directory import IDirectory
3
2
 
4
3
  class Directory(Facade):
5
4
 
@@ -0,0 +1,4 @@
1
+ from orionis.services.file.contracts.directory import IDirectory
2
+
3
+ class Directory(IDirectory):
4
+ pass
@@ -0,0 +1,4 @@
1
+ from orionis.console.contracts.dump import IDebug
2
+
3
+ class Dumper(IDebug):
4
+ pass
@@ -0,0 +1,4 @@
1
+ from orionis.console.contracts.executor import IExecutor
2
+
3
+ class ConsoleExecutor(IExecutor):
4
+ pass
@@ -0,0 +1,4 @@
1
+ from orionis.services.inspirational.contracts.inspire import IInspire
2
+
3
+ class Inspire(IInspire):
4
+ pass
@@ -0,0 +1,4 @@
1
+ from orionis.services.log.contracts.log_service import ILogger
2
+
3
+ class Log(ILogger):
4
+ pass
@@ -0,0 +1,4 @@
1
+ from orionis.support.performance.contracts.counter import IPerformanceCounter
2
+
3
+ class PerformanceCounter(IPerformanceCounter):
4
+ pass
@@ -0,0 +1,4 @@
1
+ from orionis.console.contracts.progress_bar import IProgressBar
2
+
3
+ class ProgressBar(IProgressBar):
4
+ pass
@@ -0,0 +1,97 @@
1
+ from typing import Any, List, Optional
2
+ from orionis.console.contracts.command import ICommand
3
+ from orionis.console.contracts.reactor import IReactor
4
+
5
+ class Reactor(IReactor):
6
+ """
7
+ Reactor facade class that implements the IReactor interface.
8
+
9
+ This class serves as a facade for reactor functionality, providing a simplified
10
+ interface for event-driven programming and asynchronous operations. It acts as
11
+ a wrapper around the underlying reactor implementation, abstracting away the
12
+ complexity of the reactor pattern and providing a clean abstraction layer.
13
+
14
+ The Reactor class follows the facade design pattern, offering a unified and
15
+ consistent API for managing events, callbacks, timers, and asynchronous
16
+ operations within the Orionis framework. It encapsulates the complexity of
17
+ event loop management and provides thread-safe access to reactor functionality.
18
+
19
+ Parameters
20
+ ----------
21
+ None
22
+ This facade class typically doesn't require initialization parameters
23
+ as it wraps an existing reactor implementation.
24
+
25
+ Attributes
26
+ ----------
27
+ None
28
+ Attributes are defined by the underlying IReactor interface implementation.
29
+
30
+ Notes
31
+ -----
32
+ This is a type stub file (.pyi) used for type checking and IDE support.
33
+ The actual implementation should be provided in the corresponding .py file.
34
+ The reactor pattern is essential for handling I/O operations, network events,
35
+ and other asynchronous operations in a non-blocking manner.
36
+
37
+ See Also
38
+ --------
39
+ IReactor : The interface contract that this facade implements
40
+ """
41
+
42
+ @classmethod
43
+ def command(cls, signature: str, handler: Any) -> ICommand:
44
+ """
45
+ Define a new command using a fluent interface.
46
+
47
+ Parameters
48
+ ----------
49
+ signature : str
50
+ The unique signature identifier for the command.
51
+ handler : Any
52
+ The function or callable that will be executed when the command is invoked.
53
+
54
+ Returns
55
+ -------
56
+ ICommand
57
+ Returns an instance of ICommand that allows further configuration.
58
+ """
59
+ ...
60
+
61
+ @classmethod
62
+ def call(cls, signature: str, args: Optional[List[str]] = None) -> Optional[Any]:
63
+ """
64
+ Executes a registered command synchronously by its signature.
65
+
66
+ Parameters
67
+ ----------
68
+ signature : str
69
+ The unique signature identifier of the command to execute.
70
+ args : Optional[List[str]], default None
71
+ List of command-line arguments to pass to the command.
72
+
73
+ Returns
74
+ -------
75
+ Optional[Any]
76
+ The output produced by the command's handle method if execution is successful.
77
+ """
78
+ ...
79
+
80
+ @classmethod
81
+ async def callAsync(cls, signature: str, args: Optional[List[str]] = None) -> Optional[Any]:
82
+ """
83
+ Executes a registered command asynchronously by its signature.
84
+
85
+ Parameters
86
+ ----------
87
+ signature : str
88
+ The unique signature identifier of the command to execute.
89
+ args : Optional[List[str]], default None
90
+ List of command-line arguments to pass to the command.
91
+
92
+ Returns
93
+ -------
94
+ Optional[Any]
95
+ The output produced by the command's handle method if execution is successful.
96
+ """
97
+ ...
@@ -0,0 +1,4 @@
1
+ from orionis.test.contracts.unit_test import IUnitTest
2
+
3
+ class Test(IUnitTest):
4
+ pass
@@ -0,0 +1,4 @@
1
+ from orionis.services.system.contracts.workers import IWorkers
2
+
3
+ class Workers(IWorkers):
4
+ pass
orionis/test/kernel.py CHANGED
@@ -1,4 +1,4 @@
1
- from orionis.console.output.contracts.console import IConsole
1
+ from orionis.console.contracts.console import IConsole
2
2
  from orionis.foundation.contracts.application import IApplication
3
3
  from orionis.services.log.contracts.log_service import ILogger
4
4
  from orionis.test.contracts.kernel import ITestKernel
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.539.0
3
+ Version: 0.541.0
4
4
  Summary: Orionis Framework – Elegant, Fast, and Powerful.
5
5
  Home-page: https://github.com/orionis-framework/framework
6
6
  Author: Raul Mauricio Uñate Castro
@@ -1,14 +1,14 @@
1
1
  orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  orionis/app.py,sha256=foCcJAfebeZD69wsAiNvPUx_7UMK6w8ow5WpVjzwDDk,1131
3
3
  orionis/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- orionis/console/kernel.py,sha256=m4RoulZB3nkl6-O250UDN4ZoXqfTF4F5gbAYt7TAnQo,3054
4
+ orionis/console/kernel.py,sha256=SlOMVGSVOd1HlhsxbY02ehTd7xEqVzbH0YKAXEjIss4,4070
5
5
  orionis/console/args/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  orionis/console/args/argument.py,sha256=Is8Z8_kW4DvcK1nK1UU-sa6Pk0BeOdcRczCayW0ZVHc,20360
7
7
  orionis/console/args/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  orionis/console/args/enums/actions.py,sha256=S3T-vWS6DJSGtANrq3od3-90iYAjPvJwaOZ2V02y34c,1222
9
9
  orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- orionis/console/base/command.py,sha256=OM4xqVgpv_1RZVyVG8BzOHl1sP9FT5mPUwZjMil8IRg,6637
11
- orionis/console/base/scheduler.py,sha256=w86p-4KjfMqMcGlQBsmiBASpzv33M-PWLbgYza7Um9g,8030
10
+ orionis/console/base/command.py,sha256=jdUPc7MoJs9QWo_WEPV0Mb_7f6G563OWFTh7DJeUfM8,6642
11
+ orionis/console/base/scheduler.py,sha256=03_nwYbdRXLSoDwVIJ9-ba-fSBwqNaCXvAk9pv3VdFI,8035
12
12
  orionis/console/base/scheduler_event_listener.py,sha256=tmdAMPzTmT8z0BcpyoIZwyTRzmVHF1olXCuw6XjuMMA,4929
13
13
  orionis/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  orionis/console/commands/cache.py,sha256=8DsYoRzSBLn0P9qkGVItRbo0R6snWBDBg0_Xa7tmVhs,2322
@@ -21,25 +21,29 @@ orionis/console/commands/test.py,sha256=-EmQwFwMBuby3OI9HwqMIwuJzd2CGbWbOqmwrR25
21
21
  orionis/console/commands/version.py,sha256=SUuNDJ40f2uq69OQUmPQXJKaa9Bm_iVRDPmBd7zc1Yc,3658
22
22
  orionis/console/commands/workflow.py,sha256=NYOmjTSvm2o6AE4h9LSTZMFSYPQreNmEJtronyOxaYk,2451
23
23
  orionis/console/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- orionis/console/contracts/command.py,sha256=vmAJD0yMQ5-AD_s9_xCFEAl64sKk65z7U2E196dALQM,5760
25
- orionis/console/contracts/event.py,sha256=GEgpmsyVGKJYi0LwvEklTm7aAHqsqUprtC2p6qq0eZU,120005
24
+ orionis/console/contracts/base_command.py,sha256=vmAJD0yMQ5-AD_s9_xCFEAl64sKk65z7U2E196dALQM,5760
25
+ orionis/console/contracts/base_scheduler.py,sha256=OW-a_YDDNPrenYT9z8Tv71VjyZ1aSzqzqhTBhTCZhGM,7698
26
+ orionis/console/contracts/cli_request.py,sha256=1fl18n2mtpk-p4XCY0dtyHjYS0bazXyE6gcLczY5YGY,3360
27
+ orionis/console/contracts/command.py,sha256=Wvm62hw2gDIPNmoEUFyhKUERjZ6wnAbI-UDY_5gJE24,3626
28
+ orionis/console/contracts/console.py,sha256=phaQhCLWa81MLzB5ydOSaUfEIdDq7fOjvym8Rmi-arc,11908
29
+ orionis/console/contracts/dump.py,sha256=LqT4nAyn37eACNz0c_WqQd8BDXgZ9pugtkiVlHOP6yc,1012
30
+ orionis/console/contracts/event.py,sha256=nzce2828dT6KGZy-stkdFuqr8_UgMgqC4OUMhCR-Yd4,120008
31
+ orionis/console/contracts/executor.py,sha256=7l3kwnvv6GlH9EYk0v94YE1olex_-mvgyRDAqZvvYrQ,4254
26
32
  orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01IIHI5Y,826
27
- orionis/console/contracts/reactor.py,sha256=Xeq7Zrw6WE5MV_XOQfiQEchAFbb6-0TjLpjWOxYW--g,4554
33
+ orionis/console/contracts/progress_bar.py,sha256=NYebL2h-vg2t2H6IhJjuC37gglRkpT-MW71wbJtpLNg,1784
34
+ orionis/console/contracts/reactor.py,sha256=iT6ShoCutAWEeJzOf_PK7CGXi9TgrOD5tewHFVQ2NQw,6075
28
35
  orionis/console/contracts/schedule.py,sha256=N-AYUa1CJY7a4CV9L1EX_EUDtGlDJMg4y0aV9EDby1Q,16090
29
36
  orionis/console/contracts/schedule_event_listener.py,sha256=7fQdPh6X_npfGpQW_2x81D7-5Pe40jIog9uDeEU0kro,4390
30
- orionis/console/contracts/scheduler.py,sha256=OW-a_YDDNPrenYT9z8Tv71VjyZ1aSzqzqhTBhTCZhGM,7698
31
37
  orionis/console/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- orionis/console/core/reactor.py,sha256=cUYZwOyWjKai885peSaRRu3vM0IpWxskCNyl9IangHs,30626
38
+ orionis/console/core/reactor.py,sha256=6kDC0a9RDCA8bvlpc7rXQUWmYAK9M5_Lm74E7pU6EeQ,40885
33
39
  orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- orionis/console/dumper/dump.py,sha256=CATERiQ6XuIrKQsDaWcVxzTtlAJI9qLJX44fQxEX8ws,22443
35
- orionis/console/dumper/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- orionis/console/dumper/contracts/dump.py,sha256=LqT4nAyn37eACNz0c_WqQd8BDXgZ9pugtkiVlHOP6yc,1012
40
+ orionis/console/dumper/dump.py,sha256=_75IS-JLMRhWm5C9JoKfnRZvPg3NXcpyNE5JgexsGRw,22436
37
41
  orionis/console/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- orionis/console/dynamic/progress_bar.py,sha256=iK1kAf9vJIgk6BbdlGvlJkGc1m7Ck4euNqQpg5aarW8,2880
39
- orionis/console/dynamic/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
- orionis/console/dynamic/contracts/progress_bar.py,sha256=NYebL2h-vg2t2H6IhJjuC37gglRkpT-MW71wbJtpLNg,1784
42
+ orionis/console/dynamic/progress_bar.py,sha256=58wne7E_QZb_uN9jjqQ_V28Ci19SVNhCQQ4zzXCiOu0,2872
41
43
  orionis/console/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
44
  orionis/console/entities/all_jobs_removed.py,sha256=4_Foo_CW2mP7iazBJX90I_QJ-Qd_wYGpaJGHXzYDREw,728
45
+ orionis/console/entities/command.py,sha256=OXoiE533U1JDbK6Mh-d6jlRmc4CCAPHeNNgBmmJFvpU,1360
46
+ orionis/console/entities/event.py,sha256=teDa54mivEZvaRPfF9tP3Wd81jl9znObYhLyQn9yZ0s,3003
43
47
  orionis/console/entities/event_job.py,sha256=vweIHfjCnjs8wo8O9rJ092ERHlF_O5hhDSt7Mlaf6rQ,2129
44
48
  orionis/console/entities/executor_added.py,sha256=qtV8dQKYxI_NcpDdOObuCemQy0eAihr0yBIkXewGCv0,702
45
49
  orionis/console/entities/executor_removed.py,sha256=B_Z_toclI46N5Wjo-ZUgFemxL_5UJcjkDod3kHWR1AQ,738
@@ -56,7 +60,6 @@ orionis/console/entities/job_resume.py,sha256=IwCkjO5zrPU59hruF264EQYrPDoSEp_j4Q
56
60
  orionis/console/entities/job_store_added.py,sha256=NoocJD3zSm7E8ZsUob8BdvKxveu9WdEqAtVPCzC8WII,735
57
61
  orionis/console/entities/job_store_removed.py,sha256=wh53sf3Rkezo5hMQkWo-NToeCYwMOmp7BLa1ACVUnqo,740
58
62
  orionis/console/entities/job_submitted.py,sha256=8ftGEOsDQxHYK2tunGA9_b-u581hPcvNnZ5NmmaMua0,731
59
- orionis/console/entities/request.py,sha256=Sm-6jMd95teUEdh_4VJWjsDbvfID3khHCOU_2OEEIv4,980
60
63
  orionis/console/entities/scheduler_error.py,sha256=4nedVmkx69IeZzmilCcH5AeghkS2zblwNpsK12bcxHQ,717
61
64
  orionis/console/entities/scheduler_event_data.py,sha256=2BvWGhk48B3PsivaFuF10yl4UpG70k2gTn6ghhlHBN8,840
62
65
  orionis/console/entities/scheduler_paused.py,sha256=YwiVM2lDWOEdFHP4m-BLHFMiwQmZ6Cvknhl5FGDwf9M,557
@@ -64,34 +67,32 @@ orionis/console/entities/scheduler_resumed.py,sha256=GT-QvvP38Qhr9ZnrHTCuDKFubRd
64
67
  orionis/console/entities/scheduler_shutdown.py,sha256=vRFXUt3hxKueaT6M4335HFL3NO3pe8QB9CSMvW_4PB0,900
65
68
  orionis/console/entities/scheduler_started.py,sha256=U0pduaFhWrEUJQws81jTjDmTp4Kxfy6ontq8rQN4Y6I,910
66
69
  orionis/console/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
- orionis/console/enums/command.py,sha256=lCfVp2vnDojJN2gjdVxE_XU3mRjZZgOIxPfBVQYo9w4,1278
68
- orionis/console/enums/event.py,sha256=xyJfJQmXnZ_c-zPZx3_pzKm54R-kKyJkQzIercv556w,3004
69
70
  orionis/console/enums/listener.py,sha256=bDHDOkKQFEfEmZyiisZj37ozr8Hs7_lKvm_3uYjvEpw,2988
70
71
  orionis/console/exceptions/__init__.py,sha256=0qlHNuHMVZO87M-rP8lThUUyljRM1jSFNikaxSCjSbw,366
71
72
  orionis/console/exceptions/cli_exception.py,sha256=HsZ_vSeNiJWQ0gznVFNcIdhM0Bj_vkSRVBJs0wMjEKY,1141
72
73
  orionis/console/exceptions/cli_orionis_value_error.py,sha256=RQP0HRwxDG8hxFOT1kUoZ1Ab1CZ1KLoSIl5yqlmgG4M,1147
73
74
  orionis/console/exceptions/cli_runtime_error.py,sha256=DaCDGu6mXBk1LIzc7cwRROw1mePAigPNASjNZHhUSBE,1154
74
75
  orionis/console/exceptions/cli_schedule_exception.py,sha256=IBbXb_5zi02pyo1laHdjGn6FYZK7WWRp4j2fkZOCT6I,1161
76
+ orionis/console/fluent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ orionis/console/fluent/command.py,sha256=ayEh2fH83pCITyYUXHvt2jEgjMU63zdgRRYVdvUgFvk,8195
78
+ orionis/console/fluent/event.py,sha256=mqp55Dz3LPFHi9MmzZkLMPXhuLyxOCGICZhCU8-gHig,166482
75
79
  orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- orionis/console/output/console.py,sha256=4DmoZZ8g6Ra_WtFsCyiszFVDs_3ezX6TKGuAcuS7gnQ,17895
77
- orionis/console/output/executor.py,sha256=9A8lCSU9DEVKhMsQLwBhFKW44Mz7KP-ig-o-4Vm-EcU,7328
78
- orionis/console/output/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
- orionis/console/output/contracts/console.py,sha256=phaQhCLWa81MLzB5ydOSaUfEIdDq7fOjvym8Rmi-arc,11908
80
- orionis/console/output/contracts/executor.py,sha256=7l3kwnvv6GlH9EYk0v94YE1olex_-mvgyRDAqZvvYrQ,4254
80
+ orionis/console/output/console.py,sha256=LHwJv9IL85TVfDpbw1K4XR5IbknPTcexfvGZI2uRMRA,17888
81
+ orionis/console/output/executor.py,sha256=_ekAXeOAvOp5sClN0FSFuUOa59RVgvj-IsnGaUuixcY,7321
81
82
  orionis/console/output/enums/__init__.py,sha256=LAaAxg-DpArCjf_jqZ0_9s3p8899gntDYkSU_ppTdC8,66
82
83
  orionis/console/output/enums/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
83
- orionis/console/request/cli_request.py,sha256=7-sgYmNUCipuHLVAwWLJiHv0cJCDmsM1Lu9s2D8RIII,1498
84
+ orionis/console/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
+ orionis/console/request/cli_request.py,sha256=yaVW5ovpRyh86PZZpApZOTkk_ErvSev6Db5nH-zLwlQ,5155
84
86
  orionis/console/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
- orionis/console/tasks/event.py,sha256=yE64gWAWaaz-mlWk5LIKDh4HYO14iwRfdYfwFh7Wktk,166479
86
87
  orionis/console/tasks/listener.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
- orionis/console/tasks/schedule.py,sha256=EQs1wmowaYxN8KBy-csj27ZXnza5xHctSbk3qr0-88I,83378
88
+ orionis/console/tasks/schedule.py,sha256=FgZWJtfXRcZ_-FfJaxP1LzHmDtm5QD9QRRCJ--QMqK8,83385
88
89
  orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
- orionis/container/container.py,sha256=262gahG9L_72QovlHP7cF5QhFX4HTolwcYrVo86HcVg,93196
90
+ orionis/container/container.py,sha256=9beW1IQzgZkgVIMo0ePBAkTz7bnNz3GNZZDRogMp8AI,96902
90
91
  orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
92
  orionis/container/context/manager.py,sha256=I08K_jKXSKmrq18Pv33qYyMKIlAovVOwIgmfiVm-J7c,2971
92
93
  orionis/container/context/scope.py,sha256=p_oCzR7dDz-5ZAd16ab4vfLc3gBf34CaN0f4iR9D0bQ,1155
93
94
  orionis/container/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
- orionis/container/contracts/container.py,sha256=r-HpuMUbkI19lNTisgxB2lbvvt0YFA4xsEDVLCPDrys,15507
95
+ orionis/container/contracts/container.py,sha256=I3nu3RUGgnn-tnQv3zxSQDYpOSwXLjkzt96Gyqon_ik,17083
95
96
  orionis/container/contracts/service_provider.py,sha256=TJtwFoPYvw3hvBSfIEO3-httq8iszaRQh1IjCKfDyVM,1016
96
97
  orionis/container/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
98
  orionis/container/entities/binding.py,sha256=sY0ioHbRcjp9TSQjfrFHxkO3vRn_VOrbHK62_QEGe1U,3717
@@ -117,16 +118,16 @@ orionis/container/validators/is_subclass.py,sha256=4sBaGLoRs8nUhuWjlP0VJqyTwVHYq
117
118
  orionis/container/validators/is_valid_alias.py,sha256=4uAYcq8xov7jZbXnpKpjNkxcZtlTNnL5RRctVPMwJes,1424
118
119
  orionis/container/validators/lifetime.py,sha256=IQ43fDNrxYHMlZH2zlYDJnlkLO_eS4U7Fs3UJgQBidI,1844
119
120
  orionis/failure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
- orionis/failure/catch.py,sha256=XpPISy-83grGYP1PSScrF7jyogpvOjDjbz-11iop2FQ,3286
121
+ orionis/failure/catch.py,sha256=O6C_KsSPI-ZZb8upzwGagkJMhQ6FWX7J2q9BWweMgQE,3286
121
122
  orionis/failure/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
- orionis/failure/base/handler.py,sha256=6QU2XHpJgH2hhGBANvioJBz16Aoi9Xy6QEF1PJBGLDQ,4939
123
+ orionis/failure/base/handler.py,sha256=7oT0xz8Tkt76JGgRjZHvhyaRh1cq_lUfHHlWBtV0cLw,4987
123
124
  orionis/failure/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
125
  orionis/failure/contracts/catch.py,sha256=e2wM1p6VxbvAjgWm-MwoM9p2ystSsyBu8Qnt6Ehr6Vc,1179
125
- orionis/failure/contracts/handler.py,sha256=drNE8iu8RUHi3TgKn-lUEIfVsZeGsMTUecTZOfay19E,2240
126
+ orionis/failure/contracts/handler.py,sha256=AeJfkJfD3hTkOIYAtADq6GnQfq-qWgDfUc7bYMdYKAU,2240
126
127
  orionis/failure/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
128
  orionis/failure/entities/throwable.py,sha256=1zD-awcuAyEtlR-L7V7ZIfPSF4GpXkf-neL5sXul7dc,1240
128
129
  orionis/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
- orionis/foundation/application.py,sha256=_I8EAPcsRmGdmG9ajdSHovwny_tsELXWwvej6WZQj0A,86506
130
+ orionis/foundation/application.py,sha256=0mEPSPYSXvSuSyMuY8UXPnQVDxVq5kCS2ZB8mTvtMKE,86511
130
131
  orionis/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
132
  orionis/foundation/config/startup.py,sha256=vbzduprRCNyYeR2nnMaqc1uKXw6PTzAY2jVfXNQKN8I,9691
132
133
  orionis/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -229,20 +230,20 @@ orionis/foundation/exceptions/type.py,sha256=Ug51YdaUKUlbngR0KeWnJNqIwS9StP4ScVo
229
230
  orionis/foundation/exceptions/value.py,sha256=hQhXybXEnaa59ba7JxG65jceHt3mnql9MyekF-TChpM,465
230
231
  orionis/foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
232
  orionis/foundation/providers/catch_provider.py,sha256=jLEFyHeyqCWgIJfqSfXrbRm9h6M6M5IkW8M_9o_NvCQ,1701
232
- orionis/foundation/providers/console_provider.py,sha256=9oDHOGm79O8OtwTFPCYl4hNQgxAskqGdG1mIYyEg6qQ,2970
233
+ orionis/foundation/providers/console_provider.py,sha256=p4XucSau5Nc8-u2xbVg2LAXDC9UXo6qhHD58u1g2T4Q,2963
233
234
  orionis/foundation/providers/directory_provider.py,sha256=17Euot2Eahe8DjK0zK2uC3c8gPua4eux3q-MKcomDYU,2091
234
- orionis/foundation/providers/dumper_provider.py,sha256=nKHjLDClCo-KnPloh6EYVySjgzf6SYSvoxVD6IwJt8M,3355
235
- orionis/foundation/providers/executor_provider.py,sha256=kwkH8YWEXoEoP51akJXQJ0U25rhlOLxnfE0s9fALr0I,3478
235
+ orionis/foundation/providers/dumper_provider.py,sha256=mWBfnZUo-AKPEz1_Ele3lgaqR4bOcA8msvjV9KKZJQk,3348
236
+ orionis/foundation/providers/executor_provider.py,sha256=rJXsQrsfhyfHZOIF2Rk8HPSal7RGHKJa_YE5lQj4WX0,3471
236
237
  orionis/foundation/providers/inspirational_provider.py,sha256=uq2o0uLd5p6PR99uH4cJAcc6NnU6nIOwe0ZIdzZcF4Q,3726
237
238
  orionis/foundation/providers/logger_provider.py,sha256=rs8UpaD_vSp3qNli0u9A4eRum3q3F0KEM0V6yhcl2GU,3417
238
239
  orionis/foundation/providers/performance_counter_provider.py,sha256=7y10Vaqx7GemGh2wCaww8XmdvFQXLXm9_E4GjpdNXcA,3010
239
- orionis/foundation/providers/progress_bar_provider.py,sha256=X4Ke7mPr0MgVp6WDNaQ3bI3Z_LOS8qE-wid0MQErKms,3367
240
+ orionis/foundation/providers/progress_bar_provider.py,sha256=hmyzVV0sx5DYG3YuMtQWNr_GqZKgYmCviS_z_OIjKzg,3359
240
241
  orionis/foundation/providers/reactor_provider.py,sha256=P0KQcp4AFKTrD6BStGfCTqhGUlpKgsrZTZZKSqyGJQg,3662
241
242
  orionis/foundation/providers/scheduler_provider.py,sha256=1do4B09bU_6xbFHHVYYTGMWis3wW6-mbENg52rksmUs,2130
242
243
  orionis/foundation/providers/testing_provider.py,sha256=SrJRpdvcblx9WvX7x9Y3zc7OQfiTf7la0HAJrm2ESlE,3725
243
244
  orionis/foundation/providers/workers_provider.py,sha256=oa_2NIDH6UxZrtuGkkoo_zEoNIMGgJ46vg5CCgAm7wI,3926
244
245
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
- orionis/metadata/framework.py,sha256=B1ivHqAUsvb3Cu9cvci-wX6X3zYW9sbCBl4LlPe94Ho,4109
246
+ orionis/metadata/framework.py,sha256=XCQjtevRWOj-O6oKCM1gdwHuOtqUv2JoGciiSPS1m2k,4109
246
247
  orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
247
248
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
248
249
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -341,17 +342,29 @@ orionis/support/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
341
342
  orionis/support/entities/base.py,sha256=kVx9YWZjYS6C9MraarU7U12OeT5enBp5XqizrQm4RQs,4801
342
343
  orionis/support/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
343
344
  orionis/support/facades/application.py,sha256=GxB6TzsCSyDEHlvJJr-WVrppJvuolXCcV1vZ0tq_H6E,883
345
+ orionis/support/facades/application.pyi,sha256=0X4MOu1vWeWjvHcrL1ZhjK3sC33ZScvrxGxtHZd8TyU,185
344
346
  orionis/support/facades/console.py,sha256=Yhpgv0FpwyOXP4IMgTtDw0_nkcu-J_9nhZRPwJCetCg,875
345
- orionis/support/facades/directory.py,sha256=Bgis_IiWJhU6mVExL77ve6tSaCZR4K8Z9BkbQ9D2uOk,800
347
+ orionis/support/facades/console.pyi,sha256=jxJE4jNo_WWz7ZNRgjAdrYgktmCUahVkb1v3iTP9K3k,92
348
+ orionis/support/facades/directory.py,sha256=vOoepTMZvvzsoK-6PXNUc8E9viW4nJLLEJs4lkQXvTg,734
349
+ orionis/support/facades/directory.pyi,sha256=2jKmcL8PfRA57yWJ8bmcPNOkxEDAqzOst26y6qo6LzE,106
346
350
  orionis/support/facades/dumper.py,sha256=qQPoMbkXExv6UaByoDCyJA-gt5SA1oQtym2TwpihtoI,794
351
+ orionis/support/facades/dumper.pyi,sha256=jKXso-x5gz6tG-Vbz7MqilrykTJLWbYdFz7LuG1laOE,84
347
352
  orionis/support/facades/executor.py,sha256=fRBQ447WpL2T42Ys02k_DJNqukFFk8-bbNFz4GEbRfI,931
353
+ orionis/support/facades/executor.pyi,sha256=PRUh_6-JW-vM1W1IRm24V_we5a2ZeEPRv9ORoQB713s,103
348
354
  orionis/support/facades/inspire.py,sha256=n7TFhxneqUtEJYQSrOdmNq9XQzhFMMsIAfdwnBWR1hA,841
355
+ orionis/support/facades/inspire.pyi,sha256=vz141lp9-LihuqKEK2LkSVg0D6FVsEzzoNyWm8IpQ-E,107
349
356
  orionis/support/facades/logger.py,sha256=Ncrd_bcggEOnWfLmvGjYTnFgO_Hop2iO9di1oWqH0Ow,824
357
+ orionis/support/facades/logger.pyi,sha256=BPqrtYffNggr0FhXob1JidcLxVIBu8FXlz-fOOG-F6E,95
350
358
  orionis/support/facades/performance_counter.py,sha256=NGSYbGREfOfjsXnLcJ2J9sLVRuOLZwPjJsqYP7-6egg,733
359
+ orionis/support/facades/performance_counter.pyi,sha256=UHNqbYum8hSEEwI83NhcC5429NydTdiDR0FHUuxXy5E,137
351
360
  orionis/support/facades/progress_bar.py,sha256=eTxfGIAfdkrXkycvdQBddn9E4MIlbCLOU7TDO2-7cgU,717
361
+ orionis/support/facades/progress_bar.pyi,sha256=g3BAWZR1FqTSzOIoSui07vlilCFarBGfE-2kdiHZnPU,109
352
362
  orionis/support/facades/reactor.py,sha256=CJwyUU-MC1LqwiHji7f7gSm2XAs8_DdhbOXmTylNt70,742
363
+ orionis/support/facades/reactor.pyi,sha256=BvjKSlfFO8Q7lZV0tLsyJK40yJDsnS4dHaK41BYc2WY,3475
353
364
  orionis/support/facades/testing.py,sha256=5tzFIMSe1gxLcs7dcueUnAdTJ977czd2sNK1RtUjSUM,737
365
+ orionis/support/facades/testing.pyi,sha256=QLvbufQw20csjwfwQLCfXiuD5_NALuKKRIjQbYIyWWg,90
354
366
  orionis/support/facades/workers.py,sha256=3kRK7TogGTHpdeHEW13Q1tQIlpXwXAmS93JIsAvYRcw,717
367
+ orionis/support/facades/workers.pyi,sha256=btjafC6mV9ghRO4HGWL8GrFnHRi8YfjxaeTe7fIuuYo,100
355
368
  orionis/support/formatter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
369
  orionis/support/formatter/serializer.py,sha256=SGii2rPei1QR-W1KQTA_IpH4a_46AgaUzSaruwRlcdM,662
357
370
  orionis/support/formatter/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -374,7 +387,7 @@ orionis/support/standard/exceptions/value.py,sha256=rsyWFQweImaJGTJa7Id7RhPlwWJ4
374
387
  orionis/support/wrapper/__init__.py,sha256=jGoWoIGYuRYqMYQKlrX7Dpcbg-AGkHoB_aM2xhu73yc,62
375
388
  orionis/support/wrapper/dot_dict.py,sha256=T8xWwwOhBZHNeXRwE_CxvOwG9UFxsLqNmOJjV2CNIrc,7284
376
389
  orionis/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
- orionis/test/kernel.py,sha256=0LiEftvk5ehjDbXUjbcfLzrtXAYfo-cU7GXWzUF5Myo,5300
390
+ orionis/test/kernel.py,sha256=QtnS3iPl5sMgTezrUd1Cxrhdgkcq11HYh4rJqIczcjc,5293
378
391
  orionis/test/cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
379
392
  orionis/test/cases/asynchronous.py,sha256=3e1Y3qzIxVU7i7lbLFEVyJ89IA74JsB7famx71W-p2E,1974
380
393
  orionis/test/cases/synchronous.py,sha256=S5jhuDEZ5I9wosrTFaCtowkD5r5HzJH6mKPOdEJcDJE,1734
@@ -421,7 +434,7 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
421
434
  orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnIfJYgc,1206
422
435
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
423
436
  orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
424
- orionis-0.539.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
437
+ orionis-0.541.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
425
438
  tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
426
439
  tests/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
427
440
  tests/container/context/test_manager.py,sha256=wOwXpl9rHNfTTexa9GBKYMwK0_-KSQPbI-AEyGNkmAE,1356
@@ -567,8 +580,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
567
580
  tests/testing/validators/test_testing_validators.py,sha256=WPo5GxTP6xE-Dw3X1vZoqOMpb6HhokjNSbgDsDRDvy4,16588
568
581
  tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
569
582
  tests/testing/view/test_render.py,sha256=tnnMBwS0iKUIbogLvu-7Rii50G6Koddp3XT4wgdFEYM,1050
570
- orionis-0.539.0.dist-info/METADATA,sha256=F-KBbDIpGlRLF8FR94D9ZNmkzI_Cg6mux9WUhwmTa40,4801
571
- orionis-0.539.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
572
- orionis-0.539.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
573
- orionis-0.539.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
574
- orionis-0.539.0.dist-info/RECORD,,
583
+ orionis-0.541.0.dist-info/METADATA,sha256=tTd8x2IL7QhZ4tsFJ34SbrgJXT-kgEEWm0PnDeSKtZE,4801
584
+ orionis-0.541.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
585
+ orionis-0.541.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
586
+ orionis-0.541.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
587
+ orionis-0.541.0.dist-info/RECORD,,
@@ -1,37 +0,0 @@
1
- from dataclasses import dataclass, field
2
- from orionis.support.entities.base import BaseEntity
3
-
4
- @dataclass(kw_only=True)
5
- class CLIRequest(BaseEntity):
6
- """
7
- Represents a command-line interface (CLI) request.
8
-
9
- Parameters
10
- ----------
11
- command : str
12
- The command to be executed by the CLI.
13
- args : list of str, optional
14
- A list of arguments passed to the command. Defaults to an empty list.
15
-
16
- Returns
17
- -------
18
- CLIRequest
19
- An instance of the CLIRequest class encapsulating the command and its arguments.
20
-
21
- Attributes
22
- ----------
23
- command : str
24
- The command to be executed.
25
- args : list of str
26
- The arguments associated with the command.
27
- """
28
-
29
- # The command to execute
30
- command: str = field(
31
- default=None
32
- )
33
-
34
- # Arguments for the command; defaults to an empty list if not provided
35
- args: list[str] = field(
36
- default_factory=lambda: []
37
- )
File without changes
File without changes