orionis 0.543.0__py3-none-any.whl → 0.544.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/console/args/argument.py +1 -1
- orionis/console/commands/help.py +1 -4
- orionis/console/commands/scheduler_list.py +1 -1
- orionis/console/commands/version.py +1 -3
- orionis/console/contracts/event.py +2 -0
- orionis/console/core/reactor.py +29 -12
- orionis/console/kernel.py +1 -23
- orionis/console/output/console.py +1 -1
- orionis/console/output/executor.py +1 -1
- orionis/console/request/cli_request.py +95 -1
- orionis/failure/base/handler.py +1 -4
- orionis/metadata/framework.py +1 -1
- orionis/services/file/contracts/directory.py +24 -0
- orionis/services/file/directory.py +22 -0
- orionis/support/facades/application.pyi +37 -0
- orionis/support/facades/console.pyi +33 -0
- orionis/support/facades/directory.pyi +12 -0
- orionis/support/facades/dumper.pyi +12 -0
- orionis/support/facades/executor.pyi +14 -0
- orionis/support/facades/inspire.pyi +17 -0
- orionis/support/facades/logger.pyi +18 -0
- orionis/support/facades/performance_counter.pyi +13 -0
- orionis/support/facades/progress_bar.pyi +16 -0
- orionis/support/facades/testing.pyi +16 -1
- orionis/support/facades/workers.pyi +12 -0
- {orionis-0.543.0.dist-info → orionis-0.544.0.dist-info}/METADATA +1 -1
- {orionis-0.543.0.dist-info → orionis-0.544.0.dist-info}/RECORD +33 -36
- orionis/console/args/enums/__init__.py +0 -0
- orionis/console/output/enums/__init__.py +0 -5
- orionis/console/tasks/listener.py +0 -0
- /orionis/console/{args/enums → enums}/actions.py +0 -0
- /orionis/console/{output/enums → enums}/styles.py +0 -0
- {orionis-0.543.0.dist-info → orionis-0.544.0.dist-info}/WHEEL +0 -0
- {orionis-0.543.0.dist-info → orionis-0.544.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.543.0.dist-info → orionis-0.544.0.dist-info}/top_level.txt +0 -0
- {orionis-0.543.0.dist-info → orionis-0.544.0.dist-info}/zip-safe +0 -0
orionis/console/args/argument.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import argparse
|
|
2
2
|
from dataclasses import dataclass, field
|
|
3
3
|
from typing import Any, Optional, List, Type, Union, Dict
|
|
4
|
-
from orionis.console.
|
|
4
|
+
from orionis.console.enums.actions import ArgumentAction
|
|
5
5
|
from orionis.console.exceptions.cli_orionis_value_error import CLIOrionisValueError
|
|
6
6
|
|
|
7
7
|
@dataclass(kw_only=True, frozen=True, slots=True)
|
orionis/console/commands/help.py
CHANGED
|
@@ -18,7 +18,7 @@ class HelpCommand(BaseCommand):
|
|
|
18
18
|
# Command description
|
|
19
19
|
description: str = "Displays usage information, examples, and a list of available commands in the Orionis CLI."
|
|
20
20
|
|
|
21
|
-
def handle(self, reactor: IReactor) -> dict:
|
|
21
|
+
def handle(self, reactor: IReactor, console: Console) -> dict:
|
|
22
22
|
"""
|
|
23
23
|
Displays usage information and a list of available commands for the Orionis CLI.
|
|
24
24
|
|
|
@@ -43,9 +43,6 @@ class HelpCommand(BaseCommand):
|
|
|
43
43
|
# List of dicts with 'signature' and 'description'
|
|
44
44
|
commands = reactor.info()
|
|
45
45
|
|
|
46
|
-
# Initialize the rich console for formatted output
|
|
47
|
-
console = Console()
|
|
48
|
-
|
|
49
46
|
# Build the usage and commands help text
|
|
50
47
|
usage = "[bold cyan]Usage:[/]\n python -B <command> <params/flags>\n\n"
|
|
51
48
|
usage += "[bold cyan]Example:[/]\n python -B app:command --flag\n\n"
|
|
@@ -35,7 +35,7 @@ class ScheduleListCommand(BaseCommand):
|
|
|
35
35
|
signature: str = "schedule:list"
|
|
36
36
|
|
|
37
37
|
# Command description
|
|
38
|
-
description: str = "
|
|
38
|
+
description: str = "Lists all scheduled jobs defined in the application."
|
|
39
39
|
|
|
40
40
|
async def handle(self, app: IApplication, console: Console) -> bool:
|
|
41
41
|
"""
|
|
@@ -27,7 +27,7 @@ class VersionCommand(BaseCommand):
|
|
|
27
27
|
# Command description
|
|
28
28
|
description: str = "Displays the current Orionis framework version and metadata, including author, Python requirements, documentation, and repository links."
|
|
29
29
|
|
|
30
|
-
def handle(self) -> str:
|
|
30
|
+
def handle(self, console: Console) -> str:
|
|
31
31
|
"""
|
|
32
32
|
Executes the version command to display the current Orionis framework version and metadata.
|
|
33
33
|
|
|
@@ -51,8 +51,6 @@ class VersionCommand(BaseCommand):
|
|
|
51
51
|
with the original exception message.
|
|
52
52
|
"""
|
|
53
53
|
try:
|
|
54
|
-
# Initialize the console for rich output
|
|
55
|
-
console = Console()
|
|
56
54
|
|
|
57
55
|
# Compose the main information strings using framework metadata
|
|
58
56
|
title = f"[bold yellow]{framework.NAME.capitalize()} Framework[/bold yellow] [white]v{framework.VERSION}[/white]"
|
|
@@ -5,6 +5,7 @@ from orionis.console.entities.event import Event as EventEntity
|
|
|
5
5
|
|
|
6
6
|
class IEvent(ABC):
|
|
7
7
|
|
|
8
|
+
@abstractmethod
|
|
8
9
|
def misfireGraceTime(
|
|
9
10
|
self,
|
|
10
11
|
seconds: int = 60
|
|
@@ -31,6 +32,7 @@ class IEvent(ABC):
|
|
|
31
32
|
CLIOrionisValueError
|
|
32
33
|
If the provided seconds is not a positive integer.
|
|
33
34
|
"""
|
|
35
|
+
pass
|
|
34
36
|
|
|
35
37
|
@abstractmethod
|
|
36
38
|
def purpose(
|
orionis/console/core/reactor.py
CHANGED
|
@@ -2,7 +2,7 @@ import argparse
|
|
|
2
2
|
import os
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
import re
|
|
5
|
-
from typing import Any, List, Optional
|
|
5
|
+
from typing import Any, List, Optional, Type
|
|
6
6
|
from orionis.console.args.argument import CLIArgument
|
|
7
7
|
from orionis.console.base.command import BaseCommand
|
|
8
8
|
from orionis.console.contracts.base_command import IBaseCommand
|
|
@@ -154,25 +154,30 @@ class Reactor(IReactor):
|
|
|
154
154
|
|
|
155
155
|
# List all .py files in the routes directory and subdirectories
|
|
156
156
|
for current_directory, _, files in os.walk(routes_path):
|
|
157
|
+
|
|
158
|
+
# Iterate through each file in the current directory
|
|
157
159
|
for file in files:
|
|
158
160
|
|
|
159
161
|
# Only process Python files
|
|
160
162
|
if file.endswith('.py'):
|
|
163
|
+
|
|
164
|
+
# Construct the full file path
|
|
161
165
|
file_path = os.path.join(current_directory, file)
|
|
162
166
|
|
|
163
|
-
# Read file content to check for
|
|
167
|
+
# Read file content to check for Reactor.command usage
|
|
164
168
|
try:
|
|
165
169
|
|
|
170
|
+
# Open and read the file content
|
|
166
171
|
with open(file_path, 'r', encoding='utf-8') as f:
|
|
167
172
|
content = f.read()
|
|
168
173
|
|
|
169
|
-
# Check if the file contains
|
|
170
|
-
if 'Reactor
|
|
174
|
+
# Check if the file contains a Reactor.command definition
|
|
175
|
+
if 'from orionis.support.facades.reactor import Reactor' in content:
|
|
171
176
|
|
|
172
177
|
# Sanitize the module path for import
|
|
173
178
|
pre_module = current_directory.replace(root_path, '')\
|
|
174
|
-
|
|
175
|
-
|
|
179
|
+
.replace(os.sep, '.')\
|
|
180
|
+
.lstrip('.')
|
|
176
181
|
|
|
177
182
|
# Remove virtual environment paths
|
|
178
183
|
pre_module = re.sub(r'[^.]*\.(?:Lib|lib)\.(?:python[^.]*\.)?site-packages\.?', '', pre_module)
|
|
@@ -208,6 +213,7 @@ class Reactor(IReactor):
|
|
|
208
213
|
# Iterate through all fluent command definitions
|
|
209
214
|
for f_command in self.__fluent_commands:
|
|
210
215
|
|
|
216
|
+
# Validate and extract required command attributes
|
|
211
217
|
signature, command_entity = f_command.get()
|
|
212
218
|
|
|
213
219
|
# Build the arguments dictionary from the CLIArgument instances
|
|
@@ -223,9 +229,12 @@ class Reactor(IReactor):
|
|
|
223
229
|
exit_on_error=True,
|
|
224
230
|
prog=signature
|
|
225
231
|
)
|
|
232
|
+
|
|
233
|
+
# Iterate through each CLIArgument and add it to the ArgumentParser
|
|
226
234
|
for arg in required_args:
|
|
227
235
|
arg.addToParser(arg_parser)
|
|
228
236
|
|
|
237
|
+
# Register the command in the internal registry with all its metadata
|
|
229
238
|
self.__commands[signature] = Command(
|
|
230
239
|
obj=command_entity.obj,
|
|
231
240
|
method=command_entity.method,
|
|
@@ -631,7 +640,7 @@ class Reactor(IReactor):
|
|
|
631
640
|
def command(
|
|
632
641
|
self,
|
|
633
642
|
signature: str,
|
|
634
|
-
handler: Any
|
|
643
|
+
handler: List[Any]
|
|
635
644
|
) -> ICommand:
|
|
636
645
|
"""
|
|
637
646
|
Define a new command using a fluent interface.
|
|
@@ -647,10 +656,10 @@ class Reactor(IReactor):
|
|
|
647
656
|
The unique signature identifier for the command. Must follow naming conventions
|
|
648
657
|
(alphanumeric characters, underscores, colons, cannot start/end with underscore
|
|
649
658
|
or colon, cannot start with a number).
|
|
650
|
-
handler : Any
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
659
|
+
handler : List[Any]
|
|
660
|
+
A list containing the class and optionally the method name. The first element
|
|
661
|
+
should be a class, and the second element (if provided) should be a string
|
|
662
|
+
representing the method name.
|
|
654
663
|
|
|
655
664
|
Returns
|
|
656
665
|
-------
|
|
@@ -661,7 +670,7 @@ class Reactor(IReactor):
|
|
|
661
670
|
Raises
|
|
662
671
|
------
|
|
663
672
|
TypeError
|
|
664
|
-
If the signature is not a string or if the handler is not
|
|
673
|
+
If the signature is not a string or if the handler is not a valid list.
|
|
665
674
|
ValueError
|
|
666
675
|
If the signature does not meet the required naming conventions.
|
|
667
676
|
"""
|
|
@@ -669,6 +678,14 @@ class Reactor(IReactor):
|
|
|
669
678
|
# Import the FluentCommand class here to avoid circular imports
|
|
670
679
|
from orionis.console.fluent.command import Command as FluentCommand
|
|
671
680
|
|
|
681
|
+
# Validate the handler parameter
|
|
682
|
+
if len(handler) < 1 or not isinstance(handler, list):
|
|
683
|
+
raise TypeError("Handler must be a list with at least one element (the callable).")
|
|
684
|
+
|
|
685
|
+
# Ensure the first element is a class
|
|
686
|
+
if not hasattr(handler[0], '__call__') or not hasattr(handler[0], '__name__'):
|
|
687
|
+
raise TypeError("The first element of handler must be a class.")
|
|
688
|
+
|
|
672
689
|
# Create a new FluentCommand instance with the provided signature and handler
|
|
673
690
|
f_command = FluentCommand(
|
|
674
691
|
signature=signature,
|
orionis/console/kernel.py
CHANGED
|
@@ -91,27 +91,5 @@ class KernelCLI(IKernelCLI):
|
|
|
91
91
|
|
|
92
92
|
except BaseException as e:
|
|
93
93
|
|
|
94
|
-
# Extract command name for error handling, with fallback for edge cases
|
|
95
|
-
command = args[0] if args and len(args) > 0 else "__unknown__"
|
|
96
|
-
|
|
97
|
-
# Prepare command arguments as dictionary for CLIRequest
|
|
98
|
-
command_args = {}
|
|
99
|
-
if args and len(args) > 1:
|
|
100
|
-
for arg in args[1:]:
|
|
101
|
-
if '=' in arg:
|
|
102
|
-
key, value = arg.split('=', 1)
|
|
103
|
-
# Remove -- prefix if present
|
|
104
|
-
if key.startswith('--'):
|
|
105
|
-
key = key[2:]
|
|
106
|
-
command_args[key] = value
|
|
107
|
-
else:
|
|
108
|
-
# If it's a flag (starts with --) or just a flag name, set flag=flag
|
|
109
|
-
if arg.startswith('--'):
|
|
110
|
-
flag_name = arg[2:] # Remove --
|
|
111
|
-
command_args[flag_name] = flag_name
|
|
112
|
-
else:
|
|
113
|
-
# For regular arguments without =, set arg=arg
|
|
114
|
-
command_args[arg] = arg
|
|
115
|
-
|
|
116
94
|
# Catch any exceptions that occur during command handling
|
|
117
|
-
self.__catch.exception(self, CLIRequest(
|
|
95
|
+
self.__catch.exception(self, CLIRequest.fromList(args), e)
|
|
@@ -1,9 +1,103 @@
|
|
|
1
|
-
from typing import Any
|
|
1
|
+
from typing import Any, List
|
|
2
2
|
from orionis.console.contracts.cli_request import ICLIRequest
|
|
3
3
|
from orionis.console.exceptions.cli_orionis_value_error import CLIOrionisValueError
|
|
4
4
|
|
|
5
5
|
class CLIRequest(ICLIRequest):
|
|
6
6
|
|
|
7
|
+
@classmethod
|
|
8
|
+
def fromList(cls, args: List[str]) -> 'CLIRequest':
|
|
9
|
+
"""
|
|
10
|
+
Create a CLIRequest instance from a list of command line arguments.
|
|
11
|
+
|
|
12
|
+
This class method provides a convenient way to construct a CLIRequest object
|
|
13
|
+
directly from a list of command line arguments, such as those typically
|
|
14
|
+
received from sys.argv. It parses the arguments according to common CLI
|
|
15
|
+
conventions and extracts the command name and associated parameters.
|
|
16
|
+
|
|
17
|
+
Parameters
|
|
18
|
+
----------
|
|
19
|
+
args : list
|
|
20
|
+
A list of command line arguments where the first element is expected
|
|
21
|
+
to be the command name, and subsequent elements are command arguments
|
|
22
|
+
in the format '--key=value', '--flag', or 'value'. Empty lists are
|
|
23
|
+
handled gracefully with fallback behavior.
|
|
24
|
+
|
|
25
|
+
Returns
|
|
26
|
+
-------
|
|
27
|
+
CLIRequest
|
|
28
|
+
A new CLIRequest instance initialized with the parsed command name
|
|
29
|
+
and arguments dictionary extracted from the input list.
|
|
30
|
+
|
|
31
|
+
Examples
|
|
32
|
+
--------
|
|
33
|
+
>>> args = ['migrate', '--database=production', '--force', 'users']
|
|
34
|
+
>>> request = CLIRequest.fromList(args)
|
|
35
|
+
>>> request.command()
|
|
36
|
+
'migrate'
|
|
37
|
+
>>> request.argument('database')
|
|
38
|
+
'production'
|
|
39
|
+
>>> request.argument('force')
|
|
40
|
+
'force'
|
|
41
|
+
|
|
42
|
+
Notes
|
|
43
|
+
-----
|
|
44
|
+
The parsing logic follows these conventions:
|
|
45
|
+
- First argument is always treated as the command name
|
|
46
|
+
- Arguments with '=' are split into key-value pairs
|
|
47
|
+
- Arguments starting with '--' have the prefix removed
|
|
48
|
+
- Flag arguments (--flag) are stored with the flag name as both key and value
|
|
49
|
+
- Regular arguments without '=' are stored with the argument as both key and value
|
|
50
|
+
- Empty or single-element lists result in default command names and empty arguments
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
# Validate that args is a list
|
|
54
|
+
if not isinstance(args, list):
|
|
55
|
+
raise CLIOrionisValueError(
|
|
56
|
+
f"Failed to create CLIRequest from list: expected list, got {type(args).__module__}.{type(args).__name__}."
|
|
57
|
+
)
|
|
58
|
+
|
|
59
|
+
# Extract command name with defensive programming for edge cases
|
|
60
|
+
# Use fallback command name for empty lists or malformed input
|
|
61
|
+
command = args[0] if args and len(args) > 0 else "__unknown__"
|
|
62
|
+
|
|
63
|
+
# Initialize command arguments dictionary for storing parsed parameters
|
|
64
|
+
command_args = {}
|
|
65
|
+
|
|
66
|
+
# Process command arguments if any exist beyond the command name
|
|
67
|
+
if args and len(args) > 1:
|
|
68
|
+
|
|
69
|
+
# Iterate over each argument provided after the command name
|
|
70
|
+
for arg in args[1:]:
|
|
71
|
+
|
|
72
|
+
# Handle arguments in key=value format
|
|
73
|
+
if '=' in arg:
|
|
74
|
+
|
|
75
|
+
# Handle key=value format arguments
|
|
76
|
+
key, value = arg.split('=', 1) # Split only on first '=' to preserve values with '='
|
|
77
|
+
|
|
78
|
+
# Normalize key by removing common CLI prefixes
|
|
79
|
+
if key.startswith('--'):
|
|
80
|
+
key = key[2:] # Remove double-dash prefix
|
|
81
|
+
|
|
82
|
+
command_args[key] = value
|
|
83
|
+
|
|
84
|
+
else:
|
|
85
|
+
|
|
86
|
+
# Handle flag-style arguments and standalone values
|
|
87
|
+
if arg.startswith('--'):
|
|
88
|
+
|
|
89
|
+
# Extract flag name by removing prefix and store as flag=flag
|
|
90
|
+
flag_name = arg[2:]
|
|
91
|
+
command_args[flag_name] = flag_name
|
|
92
|
+
|
|
93
|
+
else:
|
|
94
|
+
|
|
95
|
+
# For regular arguments without '=', store as arg=arg
|
|
96
|
+
command_args[arg] = arg
|
|
97
|
+
|
|
98
|
+
# Create and return a new CLIRequest instance with parsed command and arguments
|
|
99
|
+
return cls(command, command_args)
|
|
100
|
+
|
|
7
101
|
def __init__(
|
|
8
102
|
self,
|
|
9
103
|
command: str,
|
orionis/failure/base/handler.py
CHANGED
|
@@ -116,11 +116,8 @@ class BaseExceptionHandler(IBaseExceptionHandler):
|
|
|
116
116
|
# Convert the exception into a structured Throwable object
|
|
117
117
|
throwable = await self.destructureException(exception)
|
|
118
118
|
|
|
119
|
-
# Convert the request arguments to a string for logging
|
|
120
|
-
string_args = ', '.join(request.all().keys()) if request.all() else 'No arguments'
|
|
121
|
-
|
|
122
119
|
# Log the CLI error message with arguments
|
|
123
|
-
log.error(f"CLI Error: {throwable.message} (Args: {
|
|
120
|
+
log.error(f"CLI Error: {throwable.message} (Args: {repr(request.all())})")
|
|
124
121
|
|
|
125
122
|
# Output the exception traceback to the console
|
|
126
123
|
console.newLine()
|
orionis/metadata/framework.py
CHANGED
|
@@ -28,6 +28,30 @@ class IDirectory(ABC):
|
|
|
28
28
|
"""
|
|
29
29
|
pass
|
|
30
30
|
|
|
31
|
+
@abstractmethod
|
|
32
|
+
def consoleCommands(self) -> Path:
|
|
33
|
+
"""
|
|
34
|
+
Get the console commands directory path.
|
|
35
|
+
|
|
36
|
+
Returns
|
|
37
|
+
-------
|
|
38
|
+
Path
|
|
39
|
+
The path to the console commands directory.
|
|
40
|
+
"""
|
|
41
|
+
pass
|
|
42
|
+
|
|
43
|
+
@abstractmethod
|
|
44
|
+
def consoleListeners(self) -> Path:
|
|
45
|
+
"""
|
|
46
|
+
Get the console listeners directory path.
|
|
47
|
+
|
|
48
|
+
Returns
|
|
49
|
+
-------
|
|
50
|
+
Path
|
|
51
|
+
The path to the console listeners directory.
|
|
52
|
+
"""
|
|
53
|
+
pass
|
|
54
|
+
|
|
31
55
|
@abstractmethod
|
|
32
56
|
def controllers(self) -> Path:
|
|
33
57
|
"""
|
|
@@ -48,6 +48,28 @@ class Directory(IDirectory):
|
|
|
48
48
|
"""
|
|
49
49
|
return Path(self.__app.path('console'))
|
|
50
50
|
|
|
51
|
+
def consoleCommands(self) -> Path:
|
|
52
|
+
"""
|
|
53
|
+
Get the console commands directory path.
|
|
54
|
+
|
|
55
|
+
Returns
|
|
56
|
+
-------
|
|
57
|
+
Path
|
|
58
|
+
The path to the console commands directory.
|
|
59
|
+
"""
|
|
60
|
+
return Path(self.__app.path('console')) / 'commands'
|
|
61
|
+
|
|
62
|
+
def consoleListeners(self) -> Path:
|
|
63
|
+
"""
|
|
64
|
+
Get the console listeners directory path.
|
|
65
|
+
|
|
66
|
+
Returns
|
|
67
|
+
-------
|
|
68
|
+
Path
|
|
69
|
+
The path to the console listeners directory.
|
|
70
|
+
"""
|
|
71
|
+
return Path(self.__app.path('console')) / 'listeners'
|
|
72
|
+
|
|
51
73
|
def controllers(self) -> Path:
|
|
52
74
|
"""
|
|
53
75
|
Get the controllers directory path.
|
|
@@ -2,4 +2,41 @@ from orionis.container.contracts.container import IContainer
|
|
|
2
2
|
from orionis.foundation.contracts.application import IApplication
|
|
3
3
|
|
|
4
4
|
class Application(IApplication, IContainer):
|
|
5
|
+
"""
|
|
6
|
+
Application facade that provides a unified interface for application and container functionality.
|
|
7
|
+
|
|
8
|
+
This class serves as the main application facade, combining the capabilities of both
|
|
9
|
+
IApplication and IContainer interfaces. It acts as the central point for managing
|
|
10
|
+
application lifecycle, service registration, dependency injection, and other
|
|
11
|
+
core application concerns.
|
|
12
|
+
|
|
13
|
+
The Application facade provides comprehensive access to:
|
|
14
|
+
- Application configuration and environment settings management
|
|
15
|
+
- Service container for dependency injection and service resolution
|
|
16
|
+
- Application lifecycle management (bootstrap, startup, shutdown)
|
|
17
|
+
- HTTP routing and middleware pipeline handling
|
|
18
|
+
- Event dispatching, listening, and subscription management
|
|
19
|
+
- Centralized logging, error handling, and exception management
|
|
20
|
+
- Database connections and ORM integration
|
|
21
|
+
- Cache management and session handling
|
|
22
|
+
- Authentication and authorization services
|
|
23
|
+
|
|
24
|
+
This facade implements the Facade design pattern to provide a simplified interface
|
|
25
|
+
to the complex subsystems of the Orionis framework, making it easier for developers
|
|
26
|
+
to interact with core application functionality without dealing with internal
|
|
27
|
+
implementation details.
|
|
28
|
+
|
|
29
|
+
Notes
|
|
30
|
+
-----
|
|
31
|
+
This is a type stub file (.pyi) that defines the interface contract for the
|
|
32
|
+
Application facade implementation. The actual implementation should be found
|
|
33
|
+
in the corresponding .py file.
|
|
34
|
+
|
|
35
|
+
The class inherits from both IApplication and IContainer interfaces, ensuring
|
|
36
|
+
it provides all methods required for application management and dependency
|
|
37
|
+
injection container functionality.
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
# Type stub class - no implementation needed in .pyi files
|
|
41
|
+
# The actual implementation will be provided in the corresponding .py file
|
|
5
42
|
pass
|
|
@@ -1,4 +1,37 @@
|
|
|
1
1
|
from orionis.console.contracts.console import IConsole
|
|
2
2
|
|
|
3
3
|
class Console(IConsole):
|
|
4
|
+
"""
|
|
5
|
+
Console facade class that implements the IConsole interface.
|
|
6
|
+
|
|
7
|
+
This class serves as a facade for console operations, providing a simplified
|
|
8
|
+
and unified interface for console-related functionality. It inherits from the
|
|
9
|
+
IConsole interface and implements all required console interface methods to
|
|
10
|
+
handle various console operations.
|
|
11
|
+
|
|
12
|
+
The Console facade provides functionality for:
|
|
13
|
+
- Command line input and output operations
|
|
14
|
+
- Console text formatting and styling
|
|
15
|
+
- Progress indicators and status message display
|
|
16
|
+
- Error and warning message handling
|
|
17
|
+
- Interactive console features and user prompts
|
|
18
|
+
|
|
19
|
+
Parameters
|
|
20
|
+
----------
|
|
21
|
+
None
|
|
22
|
+
|
|
23
|
+
Returns
|
|
24
|
+
-------
|
|
25
|
+
None
|
|
26
|
+
This is a class definition that does not return a value.
|
|
27
|
+
|
|
28
|
+
Notes
|
|
29
|
+
-----
|
|
30
|
+
This class acts as a facade pattern implementation, abstracting the complexity
|
|
31
|
+
of underlying console operations and providing a clean, consistent API for
|
|
32
|
+
console interactions throughout the application.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
# Placeholder implementation - concrete methods should be implemented
|
|
36
|
+
# to fulfill the IConsole interface contract
|
|
4
37
|
pass
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
from orionis.services.file.contracts.directory import IDirectory
|
|
2
2
|
|
|
3
3
|
class Directory(IDirectory):
|
|
4
|
+
"""
|
|
5
|
+
A facade class that provides a simplified interface for directory operations.
|
|
6
|
+
|
|
7
|
+
This class implements the IDirectory interface and serves as a facade to abstract
|
|
8
|
+
directory-related functionality, providing a clean and consistent API for
|
|
9
|
+
directory management operations.
|
|
10
|
+
|
|
11
|
+
Notes
|
|
12
|
+
-----
|
|
13
|
+
This is a facade implementation that delegates directory operations to underlying
|
|
14
|
+
services while maintaining a simple interface for client code.
|
|
15
|
+
"""
|
|
4
16
|
pass
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
from orionis.console.contracts.dump import IDebug
|
|
2
2
|
|
|
3
3
|
class Dumper(IDebug):
|
|
4
|
+
"""
|
|
5
|
+
A facade class that implements the IDebug interface for debugging operations.
|
|
6
|
+
|
|
7
|
+
This class serves as a simplified interface to debugging functionality,
|
|
8
|
+
providing a convenient way to access debug operations throughout the
|
|
9
|
+
application without directly instantiating debug components.
|
|
10
|
+
|
|
11
|
+
Returns
|
|
12
|
+
-------
|
|
13
|
+
None
|
|
14
|
+
This is a class definition and does not return a value.
|
|
15
|
+
"""
|
|
4
16
|
pass
|
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
from orionis.console.contracts.executor import IExecutor
|
|
2
2
|
|
|
3
3
|
class ConsoleExecutor(IExecutor):
|
|
4
|
+
"""
|
|
5
|
+
Console executor implementation that provides command execution capabilities.
|
|
6
|
+
|
|
7
|
+
This class implements the IExecutor interface to handle console-based
|
|
8
|
+
command execution operations within the Orionis framework.
|
|
9
|
+
|
|
10
|
+
Inherits from IExecutor interface which defines the contract for
|
|
11
|
+
command execution functionality.
|
|
12
|
+
|
|
13
|
+
Returns
|
|
14
|
+
-------
|
|
15
|
+
None
|
|
16
|
+
This is a class definition, no return value.
|
|
17
|
+
"""
|
|
4
18
|
pass
|
|
@@ -1,4 +1,21 @@
|
|
|
1
1
|
from orionis.services.inspirational.contracts.inspire import IInspire
|
|
2
2
|
|
|
3
3
|
class Inspire(IInspire):
|
|
4
|
+
"""
|
|
5
|
+
Facade class for inspirational services.
|
|
6
|
+
|
|
7
|
+
This class provides a simplified interface to access inspirational content
|
|
8
|
+
and motivational resources through the IInspire contract implementation.
|
|
9
|
+
It acts as a facade pattern to hide the complexity of the underlying
|
|
10
|
+
inspirational service infrastructure.
|
|
11
|
+
|
|
12
|
+
Parameters
|
|
13
|
+
----------
|
|
14
|
+
None
|
|
15
|
+
|
|
16
|
+
Returns
|
|
17
|
+
-------
|
|
18
|
+
None
|
|
19
|
+
This is a class definition, not a method.
|
|
20
|
+
"""
|
|
4
21
|
pass
|
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
from orionis.services.log.contracts.log_service import ILogger
|
|
2
2
|
|
|
3
3
|
class Log(ILogger):
|
|
4
|
+
"""
|
|
5
|
+
Log facade class that provides a simplified interface to the logging service.
|
|
6
|
+
|
|
7
|
+
This class acts as a facade for the underlying logging implementation,
|
|
8
|
+
providing static-like access to logging functionality throughout the application.
|
|
9
|
+
It implements the ILogger interface to ensure consistent logging behavior.
|
|
10
|
+
|
|
11
|
+
Parameters
|
|
12
|
+
----------
|
|
13
|
+
None
|
|
14
|
+
This class is designed to be used as a facade and typically doesn't
|
|
15
|
+
require direct instantiation parameters.
|
|
16
|
+
|
|
17
|
+
Returns
|
|
18
|
+
-------
|
|
19
|
+
None
|
|
20
|
+
This is a class definition, not a method.
|
|
21
|
+
"""
|
|
4
22
|
pass
|
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
from orionis.support.performance.contracts.counter import IPerformanceCounter
|
|
2
2
|
|
|
3
3
|
class PerformanceCounter(IPerformanceCounter):
|
|
4
|
+
"""
|
|
5
|
+
Facade class for performance counter operations.
|
|
6
|
+
|
|
7
|
+
This class provides a simplified interface to the performance counter
|
|
8
|
+
functionality by implementing the IPerformanceCounter contract.
|
|
9
|
+
It acts as a facade pattern implementation to hide the complexity
|
|
10
|
+
of the underlying performance monitoring system.
|
|
11
|
+
|
|
12
|
+
Returns
|
|
13
|
+
-------
|
|
14
|
+
None
|
|
15
|
+
This is a class definition and does not return a value.
|
|
16
|
+
"""
|
|
4
17
|
pass
|
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
from orionis.console.contracts.progress_bar import IProgressBar
|
|
2
2
|
|
|
3
3
|
class ProgressBar(IProgressBar):
|
|
4
|
+
"""
|
|
5
|
+
A facade class that provides a simplified interface to progress bar functionality.
|
|
6
|
+
|
|
7
|
+
This class implements the IProgressBar interface and serves as a wrapper
|
|
8
|
+
around the underlying progress bar implementation, providing a consistent
|
|
9
|
+
API for displaying and managing progress indicators in console applications.
|
|
10
|
+
|
|
11
|
+
Parameters
|
|
12
|
+
----------
|
|
13
|
+
None
|
|
14
|
+
|
|
15
|
+
Returns
|
|
16
|
+
-------
|
|
17
|
+
None
|
|
18
|
+
This is a class definition, not a method.
|
|
19
|
+
"""
|
|
4
20
|
pass
|
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
from orionis.test.contracts.unit_test import IUnitTest
|
|
2
2
|
|
|
3
3
|
class Test(IUnitTest):
|
|
4
|
-
|
|
4
|
+
"""
|
|
5
|
+
A concrete implementation of the IUnitTest interface for testing purposes.
|
|
6
|
+
|
|
7
|
+
This class serves as a basic test facade that implements the IUnitTest contract,
|
|
8
|
+
providing a foundation for unit testing functionality within the Orionis framework.
|
|
9
|
+
It can be extended or used directly for creating test cases.
|
|
10
|
+
|
|
11
|
+
Inherits from IUnitTest interface which defines the contract for unit testing
|
|
12
|
+
operations in the framework.
|
|
13
|
+
|
|
14
|
+
Returns
|
|
15
|
+
-------
|
|
16
|
+
None
|
|
17
|
+
This is a class definition and does not return a value.
|
|
18
|
+
"""
|
|
19
|
+
pass # Placeholder implementation - specific test methods should be added here
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
from orionis.services.system.contracts.workers import IWorkers
|
|
2
2
|
|
|
3
3
|
class Workers(IWorkers):
|
|
4
|
+
"""
|
|
5
|
+
Facade class for managing worker processes and job queues.
|
|
6
|
+
|
|
7
|
+
This class provides a simplified interface to the underlying worker
|
|
8
|
+
management system, implementing the IWorkers contract. It serves as
|
|
9
|
+
a facade pattern implementation to abstract complex worker operations.
|
|
10
|
+
|
|
11
|
+
Notes
|
|
12
|
+
-----
|
|
13
|
+
This is a concrete implementation of the IWorkers interface that
|
|
14
|
+
delegates worker management operations to the underlying service layer.
|
|
15
|
+
"""
|
|
4
16
|
pass
|
|
@@ -1,24 +1,22 @@
|
|
|
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
|
|
4
|
+
orionis/console/kernel.py,sha256=-TRE9caKJ76fUfK7OxA4JgBBLw9wxlmRBC020_EeD84,3795
|
|
5
5
|
orionis/console/args/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
orionis/console/args/argument.py,sha256=
|
|
7
|
-
orionis/console/args/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
orionis/console/args/enums/actions.py,sha256=S3T-vWS6DJSGtANrq3od3-90iYAjPvJwaOZ2V02y34c,1222
|
|
6
|
+
orionis/console/args/argument.py,sha256=3Q_4p56qF0VPxK34xX3W4Ln2-Sua9rCHClGOeO96YcY,20355
|
|
9
7
|
orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
8
|
orionis/console/base/command.py,sha256=jdUPc7MoJs9QWo_WEPV0Mb_7f6G563OWFTh7DJeUfM8,6642
|
|
11
9
|
orionis/console/base/scheduler.py,sha256=03_nwYbdRXLSoDwVIJ9-ba-fSBwqNaCXvAk9pv3VdFI,8035
|
|
12
10
|
orionis/console/base/scheduler_event_listener.py,sha256=tmdAMPzTmT8z0BcpyoIZwyTRzmVHF1olXCuw6XjuMMA,4929
|
|
13
11
|
orionis/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
12
|
orionis/console/commands/cache.py,sha256=8DsYoRzSBLn0P9qkGVItRbo0R6snWBDBg0_Xa7tmVhs,2322
|
|
15
|
-
orionis/console/commands/help.py,sha256=
|
|
13
|
+
orionis/console/commands/help.py,sha256=0VQLw_8ghyMIbWH9L6S2I5umwa_rniK1lzDdX0qYS_U,3118
|
|
16
14
|
orionis/console/commands/make_listener.py,sha256=iPOMCc41njwUKurxSwatZUTjpp-bBLdO9nN-w2FJ4mI,1921
|
|
17
15
|
orionis/console/commands/publisher.py,sha256=FUg-EUzK7LLXsla10ZUZro8V0Z5S-KjmsaSdRHSSGbA,21381
|
|
18
|
-
orionis/console/commands/scheduler_list.py,sha256=
|
|
16
|
+
orionis/console/commands/scheduler_list.py,sha256=OU9qOjZNZRRElxwpg-E8nVefJToeiWu2E2l8P17NZtI,4759
|
|
19
17
|
orionis/console/commands/scheduler_work.py,sha256=mzSFes8Wl1gCf253tNYClij0abT5HlpW1QZVFrU5EXo,6445
|
|
20
18
|
orionis/console/commands/test.py,sha256=-EmQwFwMBuby3OI9HwqMIwuJzd2CGbWbOqmwrR25sOE,2402
|
|
21
|
-
orionis/console/commands/version.py,sha256=
|
|
19
|
+
orionis/console/commands/version.py,sha256=u2f7SetqEX__ufG6c37Ga-CylT4FGvy6wgld6RPBZGc,3589
|
|
22
20
|
orionis/console/commands/workflow.py,sha256=NYOmjTSvm2o6AE4h9LSTZMFSYPQreNmEJtronyOxaYk,2451
|
|
23
21
|
orionis/console/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
22
|
orionis/console/contracts/base_command.py,sha256=vmAJD0yMQ5-AD_s9_xCFEAl64sKk65z7U2E196dALQM,5760
|
|
@@ -27,7 +25,7 @@ orionis/console/contracts/cli_request.py,sha256=1fl18n2mtpk-p4XCY0dtyHjYS0bazXyE
|
|
|
27
25
|
orionis/console/contracts/command.py,sha256=Wvm62hw2gDIPNmoEUFyhKUERjZ6wnAbI-UDY_5gJE24,3626
|
|
28
26
|
orionis/console/contracts/console.py,sha256=phaQhCLWa81MLzB5ydOSaUfEIdDq7fOjvym8Rmi-arc,11908
|
|
29
27
|
orionis/console/contracts/dump.py,sha256=LqT4nAyn37eACNz0c_WqQd8BDXgZ9pugtkiVlHOP6yc,1012
|
|
30
|
-
orionis/console/contracts/event.py,sha256=
|
|
28
|
+
orionis/console/contracts/event.py,sha256=DH_FydRNLYsfP9bYD_KzyRO5YQ3GFPNy8-AD0YGV3JQ,120043
|
|
31
29
|
orionis/console/contracts/executor.py,sha256=7l3kwnvv6GlH9EYk0v94YE1olex_-mvgyRDAqZvvYrQ,4254
|
|
32
30
|
orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01IIHI5Y,826
|
|
33
31
|
orionis/console/contracts/progress_bar.py,sha256=NYebL2h-vg2t2H6IhJjuC37gglRkpT-MW71wbJtpLNg,1784
|
|
@@ -35,7 +33,7 @@ orionis/console/contracts/reactor.py,sha256=iT6ShoCutAWEeJzOf_PK7CGXi9TgrOD5tewH
|
|
|
35
33
|
orionis/console/contracts/schedule.py,sha256=N-AYUa1CJY7a4CV9L1EX_EUDtGlDJMg4y0aV9EDby1Q,16090
|
|
36
34
|
orionis/console/contracts/schedule_event_listener.py,sha256=7fQdPh6X_npfGpQW_2x81D7-5Pe40jIog9uDeEU0kro,4390
|
|
37
35
|
orionis/console/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
orionis/console/core/reactor.py,sha256=
|
|
36
|
+
orionis/console/core/reactor.py,sha256=zjBVj1Zgg0hFGKeG5Uk0x7OZOKpq8nj4RyMxS-K1ZfY,41804
|
|
39
37
|
orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
38
|
orionis/console/dumper/dump.py,sha256=_75IS-JLMRhWm5C9JoKfnRZvPg3NXcpyNE5JgexsGRw,22436
|
|
41
39
|
orionis/console/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -67,7 +65,9 @@ orionis/console/entities/scheduler_resumed.py,sha256=GT-QvvP38Qhr9ZnrHTCuDKFubRd
|
|
|
67
65
|
orionis/console/entities/scheduler_shutdown.py,sha256=vRFXUt3hxKueaT6M4335HFL3NO3pe8QB9CSMvW_4PB0,900
|
|
68
66
|
orionis/console/entities/scheduler_started.py,sha256=U0pduaFhWrEUJQws81jTjDmTp4Kxfy6ontq8rQN4Y6I,910
|
|
69
67
|
orionis/console/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
orionis/console/enums/actions.py,sha256=S3T-vWS6DJSGtANrq3od3-90iYAjPvJwaOZ2V02y34c,1222
|
|
70
69
|
orionis/console/enums/listener.py,sha256=bDHDOkKQFEfEmZyiisZj37ozr8Hs7_lKvm_3uYjvEpw,2988
|
|
70
|
+
orionis/console/enums/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
|
|
71
71
|
orionis/console/exceptions/__init__.py,sha256=0qlHNuHMVZO87M-rP8lThUUyljRM1jSFNikaxSCjSbw,366
|
|
72
72
|
orionis/console/exceptions/cli_exception.py,sha256=HsZ_vSeNiJWQ0gznVFNcIdhM0Bj_vkSRVBJs0wMjEKY,1141
|
|
73
73
|
orionis/console/exceptions/cli_orionis_value_error.py,sha256=RQP0HRwxDG8hxFOT1kUoZ1Ab1CZ1KLoSIl5yqlmgG4M,1147
|
|
@@ -77,14 +77,11 @@ orionis/console/fluent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
77
77
|
orionis/console/fluent/command.py,sha256=ayEh2fH83pCITyYUXHvt2jEgjMU63zdgRRYVdvUgFvk,8195
|
|
78
78
|
orionis/console/fluent/event.py,sha256=mqp55Dz3LPFHi9MmzZkLMPXhuLyxOCGICZhCU8-gHig,166482
|
|
79
79
|
orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
-
orionis/console/output/console.py,sha256=
|
|
81
|
-
orionis/console/output/executor.py,sha256=
|
|
82
|
-
orionis/console/output/enums/__init__.py,sha256=LAaAxg-DpArCjf_jqZ0_9s3p8899gntDYkSU_ppTdC8,66
|
|
83
|
-
orionis/console/output/enums/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
|
|
80
|
+
orionis/console/output/console.py,sha256=EtSDWRBW8wk0iJdPfB1mzU49krLJBaSAUdVdVOzzhQ4,17888
|
|
81
|
+
orionis/console/output/executor.py,sha256=uQjFPOlyZLFj9pcyYPugCqxwJog0AJgK1OcmQH2ELbw,7314
|
|
84
82
|
orionis/console/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
-
orionis/console/request/cli_request.py,sha256=
|
|
83
|
+
orionis/console/request/cli_request.py,sha256=YrjwEpFlEcUrCqKlFD8v1sxj0zjAOCFIFxmsP-5bq4Q,9058
|
|
86
84
|
orionis/console/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
-
orionis/console/tasks/listener.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
85
|
orionis/console/tasks/schedule.py,sha256=FgZWJtfXRcZ_-FfJaxP1LzHmDtm5QD9QRRCJ--QMqK8,83385
|
|
89
86
|
orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
87
|
orionis/container/container.py,sha256=9beW1IQzgZkgVIMo0ePBAkTz7bnNz3GNZZDRogMp8AI,96902
|
|
@@ -120,7 +117,7 @@ orionis/container/validators/lifetime.py,sha256=IQ43fDNrxYHMlZH2zlYDJnlkLO_eS4U7
|
|
|
120
117
|
orionis/failure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
118
|
orionis/failure/catch.py,sha256=O6C_KsSPI-ZZb8upzwGagkJMhQ6FWX7J2q9BWweMgQE,3286
|
|
122
119
|
orionis/failure/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
-
orionis/failure/base/handler.py,sha256=
|
|
120
|
+
orionis/failure/base/handler.py,sha256=arIUtzsING0Yy3-i0Y1ymlQSbpKpoP2AMNdFOynysM0,4836
|
|
124
121
|
orionis/failure/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
122
|
orionis/failure/contracts/catch.py,sha256=e2wM1p6VxbvAjgWm-MwoM9p2ystSsyBu8Qnt6Ehr6Vc,1179
|
|
126
123
|
orionis/failure/contracts/handler.py,sha256=AeJfkJfD3hTkOIYAtADq6GnQfq-qWgDfUc7bYMdYKAU,2240
|
|
@@ -243,7 +240,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=1do4B09bU_6xbFHHVYYTGM
|
|
|
243
240
|
orionis/foundation/providers/testing_provider.py,sha256=SrJRpdvcblx9WvX7x9Y3zc7OQfiTf7la0HAJrm2ESlE,3725
|
|
244
241
|
orionis/foundation/providers/workers_provider.py,sha256=oa_2NIDH6UxZrtuGkkoo_zEoNIMGgJ46vg5CCgAm7wI,3926
|
|
245
242
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
246
|
-
orionis/metadata/framework.py,sha256=
|
|
243
|
+
orionis/metadata/framework.py,sha256=7xBr9XQyQmkD9sIDxf5edGRQJ2MVO7ibTdB92olbSN8,4109
|
|
247
244
|
orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
|
|
248
245
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
246
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -274,9 +271,9 @@ orionis/services/environment/validators/__init__.py,sha256=S0Us4_BtKPuOMQZf4uFFq
|
|
|
274
271
|
orionis/services/environment/validators/key_name.py,sha256=TSwVhQCbBYPZ_4zZ-o16yT_2pOe3WRWl9d8KzfDzWyg,1660
|
|
275
272
|
orionis/services/environment/validators/types.py,sha256=hiTszo7hS_1zQLclUIDOFUTGy2Kg2n3dZe7jU8Pmf1I,2839
|
|
276
273
|
orionis/services/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
277
|
-
orionis/services/file/directory.py,sha256=
|
|
274
|
+
orionis/services/file/directory.py,sha256=UTLFmwzjl09Nbe8gUTmQ9dQ9FV2aUZLyzYrXHHjVnws,8226
|
|
278
275
|
orionis/services/file/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
279
|
-
orionis/services/file/contracts/directory.py,sha256=
|
|
276
|
+
orionis/services/file/contracts/directory.py,sha256=TB1GOKYOBmcOwzT0wZTtP6KOP_RySMU3kL1yFiLvE14,7086
|
|
280
277
|
orionis/services/inspirational/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
278
|
orionis/services/inspirational/inspire.py,sha256=dUxwkNLjKC4jdi06cVB1gfyB2zHjfgdhYhwKtsOTf0Q,4090
|
|
282
279
|
orionis/services/inspirational/quotes.py,sha256=9hCIEFE0DdfXLaGq_SzFpXlC2AbGSnuFLzyec4Rd1H0,53455
|
|
@@ -342,29 +339,29 @@ orionis/support/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
342
339
|
orionis/support/entities/base.py,sha256=kVx9YWZjYS6C9MraarU7U12OeT5enBp5XqizrQm4RQs,4801
|
|
343
340
|
orionis/support/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
341
|
orionis/support/facades/application.py,sha256=GxB6TzsCSyDEHlvJJr-WVrppJvuolXCcV1vZ0tq_H6E,883
|
|
345
|
-
orionis/support/facades/application.pyi,sha256=
|
|
342
|
+
orionis/support/facades/application.pyi,sha256=_ozRru3GNcD5mLUjIuGe3HBm-U1JkozjKpjVdJBRD8U,2070
|
|
346
343
|
orionis/support/facades/console.py,sha256=Yhpgv0FpwyOXP4IMgTtDw0_nkcu-J_9nhZRPwJCetCg,875
|
|
347
|
-
orionis/support/facades/console.pyi,sha256=
|
|
344
|
+
orionis/support/facades/console.pyi,sha256=nWrYF-N5BIHbOSU7lAICb5KKrpzMX0QC7go3e54bLUA,1275
|
|
348
345
|
orionis/support/facades/directory.py,sha256=vOoepTMZvvzsoK-6PXNUc8E9viW4nJLLEJs4lkQXvTg,734
|
|
349
|
-
orionis/support/facades/directory.pyi,sha256=
|
|
346
|
+
orionis/support/facades/directory.pyi,sha256=3WnIpvLMunTgzR5un49XzAkqOKkOtkrVko34SNJVcAY,592
|
|
350
347
|
orionis/support/facades/dumper.py,sha256=qQPoMbkXExv6UaByoDCyJA-gt5SA1oQtym2TwpihtoI,794
|
|
351
|
-
orionis/support/facades/dumper.pyi,sha256=
|
|
348
|
+
orionis/support/facades/dumper.pyi,sha256=GgbdV6YoDS416azIovtScHpKEjm-xclMQMBwLkUaE8Y,507
|
|
352
349
|
orionis/support/facades/executor.py,sha256=fRBQ447WpL2T42Ys02k_DJNqukFFk8-bbNFz4GEbRfI,931
|
|
353
|
-
orionis/support/facades/executor.pyi,sha256=
|
|
350
|
+
orionis/support/facades/executor.pyi,sha256=JS0h8ddYD62o79yXL5UzeZmPWOXNasyMgXKL8ZCOkBE,547
|
|
354
351
|
orionis/support/facades/inspire.py,sha256=n7TFhxneqUtEJYQSrOdmNq9XQzhFMMsIAfdwnBWR1hA,841
|
|
355
|
-
orionis/support/facades/inspire.pyi,sha256=
|
|
352
|
+
orionis/support/facades/inspire.pyi,sha256=LbVrw3-PkpkaLfsihDaBKvjYTk4CoPuuMNMMVcoQvx8,581
|
|
356
353
|
orionis/support/facades/logger.py,sha256=Ncrd_bcggEOnWfLmvGjYTnFgO_Hop2iO9di1oWqH0Ow,824
|
|
357
|
-
orionis/support/facades/logger.pyi,sha256=
|
|
354
|
+
orionis/support/facades/logger.pyi,sha256=0jxUlRixL5U_e0HWw0DN3MeCbDKd0e-2Oro-rB3csck,701
|
|
358
355
|
orionis/support/facades/performance_counter.py,sha256=NGSYbGREfOfjsXnLcJ2J9sLVRuOLZwPjJsqYP7-6egg,733
|
|
359
|
-
orionis/support/facades/performance_counter.pyi,sha256=
|
|
356
|
+
orionis/support/facades/performance_counter.pyi,sha256=6C8b1mXyjDLJ_Qoa2T6VQhhnpK2FIU7kh-CG3SjTj50,583
|
|
360
357
|
orionis/support/facades/progress_bar.py,sha256=eTxfGIAfdkrXkycvdQBddn9E4MIlbCLOU7TDO2-7cgU,717
|
|
361
|
-
orionis/support/facades/progress_bar.pyi,sha256=
|
|
358
|
+
orionis/support/facades/progress_bar.pyi,sha256=bKJL89KUEc263ILcf3iL0jdo1JXm6eG2OFd7Ha-YQSc,589
|
|
362
359
|
orionis/support/facades/reactor.py,sha256=CJwyUU-MC1LqwiHji7f7gSm2XAs8_DdhbOXmTylNt70,742
|
|
363
360
|
orionis/support/facades/reactor.pyi,sha256=BvjKSlfFO8Q7lZV0tLsyJK40yJDsnS4dHaK41BYc2WY,3475
|
|
364
361
|
orionis/support/facades/testing.py,sha256=5tzFIMSe1gxLcs7dcueUnAdTJ977czd2sNK1RtUjSUM,737
|
|
365
|
-
orionis/support/facades/testing.pyi,sha256=
|
|
362
|
+
orionis/support/facades/testing.pyi,sha256=odSZvD6VX3gehkIxSooaPRllO4LV2jvp7lwgMxGYjXg,728
|
|
366
363
|
orionis/support/facades/workers.py,sha256=3kRK7TogGTHpdeHEW13Q1tQIlpXwXAmS93JIsAvYRcw,717
|
|
367
|
-
orionis/support/facades/workers.pyi,sha256=
|
|
364
|
+
orionis/support/facades/workers.pyi,sha256=WhfDTETTgzTyd7YXZZS0-JbKrLzON5RZuihtQbxST70,577
|
|
368
365
|
orionis/support/formatter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
366
|
orionis/support/formatter/serializer.py,sha256=SGii2rPei1QR-W1KQTA_IpH4a_46AgaUzSaruwRlcdM,662
|
|
370
367
|
orionis/support/formatter/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -434,7 +431,7 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
|
|
|
434
431
|
orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnIfJYgc,1206
|
|
435
432
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
436
433
|
orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
|
|
437
|
-
orionis-0.
|
|
434
|
+
orionis-0.544.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
|
|
438
435
|
tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
439
436
|
tests/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
440
437
|
tests/container/context/test_manager.py,sha256=wOwXpl9rHNfTTexa9GBKYMwK0_-KSQPbI-AEyGNkmAE,1356
|
|
@@ -580,8 +577,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
580
577
|
tests/testing/validators/test_testing_validators.py,sha256=WPo5GxTP6xE-Dw3X1vZoqOMpb6HhokjNSbgDsDRDvy4,16588
|
|
581
578
|
tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
582
579
|
tests/testing/view/test_render.py,sha256=tnnMBwS0iKUIbogLvu-7Rii50G6Koddp3XT4wgdFEYM,1050
|
|
583
|
-
orionis-0.
|
|
584
|
-
orionis-0.
|
|
585
|
-
orionis-0.
|
|
586
|
-
orionis-0.
|
|
587
|
-
orionis-0.
|
|
580
|
+
orionis-0.544.0.dist-info/METADATA,sha256=ysG3Ik5nx7idT7IKRzKN1FWzArl-5-rHmgH9X_jDbbQ,4801
|
|
581
|
+
orionis-0.544.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
582
|
+
orionis-0.544.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
|
583
|
+
orionis-0.544.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
584
|
+
orionis-0.544.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|