orionis 0.166.0__py3-none-any.whl → 0.170.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
orionis/framework.py CHANGED
@@ -5,7 +5,7 @@
5
5
  NAME = "orionis"
6
6
 
7
7
  # Current version of the framework
8
- VERSION = "0.166.0"
8
+ VERSION = "0.170.0"
9
9
 
10
10
  # Full name of the author or maintainer of the project
11
11
  AUTHOR = "Raul Mauricio Uñate Castro"
@@ -1,7 +1,6 @@
1
1
  import asyncio
2
2
  import inspect
3
3
  from typing import Dict, List, Type
4
- from contextlib import contextmanager
5
4
  from orionis.luminate.contracts.application import IApplication
6
5
  from orionis.luminate.contracts.container.container import IContainer
7
6
  from orionis.luminate.contracts.foundation.bootstraper import IBootstrapper
@@ -137,7 +136,13 @@ class Application(metaclass=SingletonMeta):
137
136
  self._loadCommands()
138
137
 
139
138
  # Boot service providers
140
- asyncio.run(self._bootServiceProviders())
139
+ try:
140
+ loop = asyncio.get_running_loop()
141
+ loop.run_until_complete(self._bootServiceProviders())
142
+ except RuntimeError:
143
+ loop = asyncio.new_event_loop()
144
+ asyncio.set_event_loop(loop)
145
+ loop.run_until_complete(self._bootServiceProviders())
141
146
 
142
147
  # Change the application status to booted
143
148
  Application.boot()
@@ -189,50 +194,4 @@ class Application(metaclass=SingletonMeta):
189
194
  Registers application commands in the service container.
190
195
  """
191
196
  for command, data_command in self._commands.items():
192
- self._container.transient(data_command.get('signature'), data_command.get('concrete'))
193
-
194
- @contextmanager
195
- def app_context():
196
- """
197
- Context manager for creating an instance of the Orionis application.
198
-
199
- This function initializes the Orionis application with a new container,
200
- ensuring that the application is properly set up before use.
201
-
202
- Yields
203
- ------
204
- Application
205
- The initialized Orionis application instance.
206
-
207
- Raises
208
- ------
209
- RuntimeError
210
- If the application has not been properly initialized.
211
- """
212
- try:
213
- yield Application.getInstance()
214
- finally:
215
- pass
216
-
217
- def app_booted():
218
- """
219
- Check if the application has been booted.
220
-
221
- Returns:
222
- bool: True if the application has been booted, False otherwise.
223
- """
224
- return Application.isRunning()
225
-
226
- def orionis():
227
- """
228
- Creates a new instance of the Orionis application.
229
-
230
- Returns
231
- -------
232
- Application
233
- A new instance of the Orionis application.
234
- """
235
- if Application.isRunning():
236
- Application.destroy()
237
-
238
- return Application()
197
+ self._container.transient(data_command.get('signature'), data_command.get('concrete'))
@@ -1,6 +1,7 @@
1
- from orionis.luminate.application import app_context
2
1
  from orionis.luminate.console.base.command import BaseCommand
3
2
  from orionis.luminate.console.exceptions.cli_exception import CLIOrionisRuntimeError
3
+ from orionis.luminate.container.resolve import Resolve
4
+ from orionis.luminate.contracts.application import IApplication
4
5
 
5
6
  class HelpCommand(BaseCommand):
6
7
  """
@@ -34,28 +35,28 @@ class HelpCommand(BaseCommand):
34
35
  self.newLine()
35
36
  self.textSuccessBold(" (CLI Interpreter) Available Commands: ")
36
37
 
37
- # Fetch the commands from the container IoC
38
- with app_context() as app:
38
+ # Fetch the commands from the Application
39
+ app = Resolve(IApplication)
39
40
 
40
- # Get the list of commands from the container
41
- commands : dict = app._commands
41
+ # Get the list of commands from the container
42
+ commands : dict = app._commands if hasattr(app, '_commands') else {}
42
43
 
43
- # Initialize an empty list to store the rows.
44
- rows = []
45
- for signature, command_data in commands.items():
46
- rows.append([signature, command_data['description']])
44
+ # Initialize an empty list to store the rows.
45
+ rows = []
46
+ for signature, command_data in commands.items():
47
+ rows.append([signature, command_data['description']])
47
48
 
48
- # Sort commands alphabetically
49
- rows_sorted = sorted(rows, key=lambda x: x[0])
49
+ # Sort commands alphabetically
50
+ rows_sorted = sorted(rows, key=lambda x: x[0])
50
51
 
51
- # Display the commands in a table format
52
- self.table(
53
- ["Signature", "Description"],
54
- rows_sorted
55
- )
52
+ # Display the commands in a table format
53
+ self.table(
54
+ ["Signature", "Description"],
55
+ rows_sorted
56
+ )
56
57
 
57
- # Add a new line after the table
58
- self.newLine()
58
+ # Add a new line after the table
59
+ self.newLine()
59
60
 
60
61
  except Exception as e:
61
62
 
@@ -1,5 +1,6 @@
1
1
  import asyncio
2
2
  from typing import Any, Callable
3
+ from orionis.luminate.application import Application
3
4
  from orionis.luminate.container.container import Container
4
5
  from orionis.luminate.container.exception import OrionisContainerValueError
5
6
 
@@ -53,9 +54,12 @@ class Resolve:
53
54
  OrionisContainerValueError
54
55
  If the abstract class or alias is not found in the container.
55
56
  """
56
- container = Container()
57
+ # Validate that the application has been initialized
58
+ if not Application.isRunning():
59
+ raise RuntimeError("Application has not been initialized yet. Please create an instance first.")
57
60
 
58
61
  # Validate that the abstract or alias exists in the container
62
+ container = Container()
59
63
  if not container.bound(abstract_or_alias):
60
64
  raise OrionisContainerValueError(
61
65
  f"Service or alias '{abstract_or_alias}' not found in the container."
@@ -63,12 +67,9 @@ class Resolve:
63
67
 
64
68
  # Resolve and return the service associated with the abstract or alias
65
69
  try:
66
- # Try to get the running event loop
67
70
  loop = asyncio.get_running_loop()
68
- # If there is a running event loop, resolve the service asynchronously
69
71
  return loop.run_until_complete(container.make(abstract_or_alias))
70
72
  except RuntimeError:
71
- # If no event loop is running, create a new one and resolve the service
72
73
  loop = asyncio.new_event_loop()
73
74
  asyncio.set_event_loop(loop)
74
75
  return loop.run_until_complete(container.make(abstract_or_alias))
@@ -1,52 +1,26 @@
1
1
  from typing import Any
2
- from orionis.luminate.application import app_booted
3
- from orionis.luminate.console.output.console import Console
4
- from orionis.luminate.container.container import Container
2
+ from orionis.luminate.application import Application
3
+ from orionis.luminate.container.resolve import Resolve
5
4
 
6
- def app(concrete: Any = None):
5
+ def app(abstract: Any = None) -> Any:
7
6
  """
8
- Retrieves the container instance or resolves a service from the container.
9
-
10
- If a `concrete` class or service is passed, it will check if it is bound
11
- to the container and return an instance of the service. If not bound,
12
- an exception will be raised.
7
+ Retrieve an instance from the application container.
13
8
 
14
9
  Parameters
15
10
  ----------
16
- concrete : Any, optional
17
- The concrete service or class to resolve from the container.
18
- If None, returns the container instance itself.
11
+ abstract : Any, optional
12
+ The abstract class or interface to resolve. If None, returns the application instance.
19
13
 
20
14
  Returns
21
15
  -------
22
- Container or Any
23
- If `concrete` is provided and bound, returns the resolved service.
24
- If `concrete` is None, returns the container instance.
25
-
26
- Raises
27
- ------
28
- OrionisContainerException
29
- If `concrete` is not bound to the container.
16
+ Any
17
+ The resolved instance from the container if an abstract is provided,
18
+ otherwise the singleton instance of the application.
30
19
  """
31
- if not app_booted():
32
-
33
- # Error message
34
- message = "The application context is invalid. Use <with app_context() as cxt:> or ensure that the application is running."
35
-
36
- # Print error in console
37
- Console.textMuted("-" * 50)
38
- Console.error(message)
39
- Console.textMuted("-" * 50)
40
-
41
- # Raise exception
42
- raise RuntimeError(message)
43
-
44
- # Call the container instance
45
- container = Container()
46
20
 
47
- # If concrete is provided (not None), attempt to resolve it from the container
48
- if concrete is not None:
49
- return container.make(concrete)
21
+ # If an abstract class or interface is provided, attempt to resolve it from the container
22
+ if abstract is not None:
23
+ return Resolve(abstract)
50
24
 
51
- # If concrete is None, return the container instance
52
- return container
25
+ # If no abstract is provided, return the singleton instance of the application container
26
+ return Application.getInstance().container()
@@ -1,7 +1,7 @@
1
1
  from typing import Any
2
2
  from orionis.luminate.contracts.facades.commands.commands_facade import ICommand
3
+ from orionis.luminate.contracts.services.commands.reactor_commands_service import IReactorCommandsService
3
4
  from orionis.luminate.facades.app_facade import app
4
- from orionis.luminate.services.commands.reactor_commands_service import ReactorCommandsService
5
5
 
6
6
  class Command(ICommand):
7
7
  """
@@ -38,5 +38,5 @@ class Command(ICommand):
38
38
  Any
39
39
  The output of the executed command.
40
40
  """
41
- _commands_provider : ReactorCommandsService = app(ReactorCommandsService)
41
+ _commands_provider : IReactorCommandsService = app(IReactorCommandsService)
42
42
  return _commands_provider.execute(signature, vars, *args, **kwargs)
@@ -1,12 +1,12 @@
1
1
  from typing import Any
2
2
  from orionis.luminate.contracts.facades.commands.scheduler_facade import ISchedule
3
+ from orionis.luminate.contracts.services.commands.schedule_service import IScheduleService
3
4
  from orionis.luminate.facades.app_facade import app
4
- from orionis.luminate.services.commands.scheduler_service import ScheduleService
5
5
 
6
6
  class Schedule(ISchedule):
7
7
 
8
8
  @staticmethod
9
- def command(signature: str, vars: dict[str, Any] = {}, *args: Any, **kwargs: Any) -> 'ScheduleService':
9
+ def command(signature: str, vars: dict[str, Any] = {}, *args: Any, **kwargs: Any) -> 'IScheduleService':
10
10
  """
11
11
  Defines a Orionis command to be executed.
12
12
 
@@ -26,7 +26,7 @@ class Schedule(ISchedule):
26
26
  Schedule
27
27
  Returns the Schedule instance itself, allowing method chaining.
28
28
  """
29
- _scheduler_provider : ScheduleService = app(ScheduleService)
29
+ _scheduler_provider : IScheduleService = app(IScheduleService)
30
30
  return _scheduler_provider.command(signature, vars, *args, **kwargs)
31
31
 
32
32
  @staticmethod
@@ -34,5 +34,5 @@ class Schedule(ISchedule):
34
34
  """
35
35
  Starts the scheduler and stops automatically when there are no more jobs.
36
36
  """
37
- _scheduler_provider : ScheduleService = app(ScheduleService)
37
+ _scheduler_provider : IScheduleService = app(IScheduleService)
38
38
  return _scheduler_provider.start()
@@ -1,7 +1,7 @@
1
1
  from typing import Any, Optional
2
2
  from orionis.luminate.contracts.facades.config.config_facade import IConfig
3
+ from orionis.luminate.contracts.services.config.config_service import IConfigService
3
4
  from orionis.luminate.facades.app_facade import app
4
- from orionis.luminate.services.config.config_service import ConfigService
5
5
 
6
6
  class Config(IConfig):
7
7
 
@@ -17,7 +17,7 @@ class Config(IConfig):
17
17
  value : Any
18
18
  The value to set.
19
19
  """
20
- _config_service_provider : ConfigService = app(ConfigService)
20
+ _config_service_provider : IConfigService = app(IConfigService)
21
21
  return _config_service_provider.set(key, value)
22
22
 
23
23
  @staticmethod
@@ -37,5 +37,5 @@ class Config(IConfig):
37
37
  Any
38
38
  The configuration value or the default value if the key is not found.
39
39
  """
40
- _config_service_provider : ConfigService = app(ConfigService)
40
+ _config_service_provider : IConfigService = app(IConfigService)
41
41
  return _config_service_provider.get(key, default)
@@ -1,6 +1,6 @@
1
1
  from orionis.luminate.contracts.facades.environment.environment_facade import IEnv
2
+ from orionis.luminate.contracts.services.environment.environment_service import IEnvironmentService
2
3
  from orionis.luminate.facades.app_facade import app
3
- from orionis.luminate.services.environment.environment_service import EnvironmentService
4
4
 
5
5
  class Env(IEnv):
6
6
 
@@ -23,7 +23,7 @@ class Env(IEnv):
23
23
  The value of the environment variable or the default value.
24
24
  """
25
25
 
26
- _env_service : EnvironmentService = app(EnvironmentService)
26
+ _env_service : IEnvironmentService = app(IEnvironmentService)
27
27
  return _env_service.get(key, default)
28
28
 
29
29
  @staticmethod
@@ -38,7 +38,7 @@ class Env(IEnv):
38
38
  value : str
39
39
  The value to set.
40
40
  """
41
- _env_service : EnvironmentService = app(EnvironmentService)
41
+ _env_service : IEnvironmentService = app(IEnvironmentService)
42
42
  return _env_service.set(key, value)
43
43
 
44
44
  @staticmethod
@@ -51,7 +51,7 @@ class Env(IEnv):
51
51
  key : str
52
52
  The key of the environment variable to remove.
53
53
  """
54
- _env_service : EnvironmentService = app(EnvironmentService)
54
+ _env_service : IEnvironmentService = app(IEnvironmentService)
55
55
  return _env_service.unset(key)
56
56
 
57
57
  @staticmethod
@@ -64,5 +64,5 @@ class Env(IEnv):
64
64
  dict
65
65
  A dictionary of all environment variables and their values.
66
66
  """
67
- _env_service : EnvironmentService = app(EnvironmentService)
67
+ _env_service : IEnvironmentService = app(IEnvironmentService)
68
68
  return _env_service.all()
@@ -1,5 +1,6 @@
1
1
  import os
2
2
  from orionis.luminate.contracts.facades.files.path_facade import IPath
3
+ from orionis.luminate.contracts.services.files.path_resolver_service import IPathResolverService
3
4
  from orionis.luminate.services.files.path_resolver_service import PathResolverService
4
5
 
5
6
  class Path(IPath):
@@ -65,7 +66,7 @@ class Path(IPath):
65
66
  route = os.path.normpath(route)
66
67
 
67
68
  # Resolve path (Note: The service container is not used here)
68
- path_resolver_service = PathResolverService()
69
+ path_resolver_service : IPathResolverService = PathResolverService()
69
70
  return path_resolver_service.resolve(route)
70
71
 
71
72
  @staticmethod
@@ -1,6 +1,6 @@
1
1
  from orionis.luminate.contracts.facades.log.log_facade import ILog
2
+ from orionis.luminate.contracts.services.log.log_service import ILogguerService
2
3
  from orionis.luminate.facades.app_facade import app
3
- from orionis.luminate.services.log.log_service import LogguerService
4
4
 
5
5
  class Log(ILog):
6
6
  """
@@ -34,7 +34,7 @@ class Log(ILog):
34
34
  message : str
35
35
  The message to log.
36
36
  """
37
- _log_service : LogguerService = app(LogguerService)
37
+ _log_service : ILogguerService = app(ILogguerService)
38
38
  return _log_service.info(message)
39
39
 
40
40
  @staticmethod
@@ -47,7 +47,7 @@ class Log(ILog):
47
47
  message : str
48
48
  The message to log.
49
49
  """
50
- _log_service : LogguerService = app(LogguerService)
50
+ _log_service : ILogguerService = app(ILogguerService)
51
51
  return _log_service.error(message)
52
52
 
53
53
  @staticmethod
@@ -60,7 +60,7 @@ class Log(ILog):
60
60
  message : str
61
61
  The message to log.
62
62
  """
63
- _log_service : LogguerService = app(LogguerService)
63
+ _log_service : ILogguerService = app(ILogguerService)
64
64
  return _log_service.success(message)
65
65
 
66
66
  @staticmethod
@@ -73,7 +73,7 @@ class Log(ILog):
73
73
  message : str
74
74
  The message to log.
75
75
  """
76
- _log_service : LogguerService = app(LogguerService)
76
+ _log_service : ILogguerService = app(ILogguerService)
77
77
  return _log_service.warning(message)
78
78
 
79
79
  @staticmethod
@@ -86,5 +86,5 @@ class Log(ILog):
86
86
  message : str
87
87
  The message to log.
88
88
  """
89
- _log_service : LogguerService = app(LogguerService)
89
+ _log_service : ILogguerService = app(ILogguerService)
90
90
  return _log_service.debug(message)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: orionis
3
- Version: 0.166.0
3
+ Version: 0.170.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,6 +1,6 @@
1
1
  orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  orionis/cli_manager.py,sha256=oXY5UYvtalP996h7z5iaEc7z5b1hyFWXrLPrvtoxWcU,1368
3
- orionis/framework.py,sha256=06OigxwKWIPkuNDMQwbCEiGFuk90g4BgCjmyoneUShU,1387
3
+ orionis/framework.py,sha256=n-kFu7oWvavrsx_Lpbv2K_GMPM27QxZHH_ilZYRxGTQ,1387
4
4
  orionis/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  orionis/installer/manager.py,sha256=SiypGJ2YiFeWyK_4drkheHUd42oS2CH63PNuxiw6Cps,3139
6
6
  orionis/installer/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -12,7 +12,7 @@ orionis/installer/output/output.py,sha256=0ZawkGxSHEYFSElbolQD5V0VjzmQHqRQ6_H7RB
12
12
  orionis/installer/setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  orionis/installer/setup/setup.py,sha256=zAZDelFwieZ9HbR_mSgvW9-gI--Zzu__6SZWWw4VEE8,6967
14
14
  orionis/luminate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- orionis/luminate/application.py,sha256=cDfTYKnicORxxnJrdkd9YyurRcb4Uw2Q9S-rS3YJvZg,8132
15
+ orionis/luminate/application.py,sha256=Swr1FJuOSvHKqkUspm7wpOGOg_YtpS6knBIfIqCsv9k,7302
16
16
  orionis/luminate/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  orionis/luminate/config/app.py,sha256=7teuVPuaV2ao0M5Bv-jhSgjEwb9DtVwde2saTRmYru4,1737
18
18
  orionis/luminate/config/auth.py,sha256=CG8F0pfVjKz4DY3d1Wi7gscdhnp4TT-Q8SJ2sdsHh18,523
@@ -32,7 +32,7 @@ orionis/luminate/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
32
32
  orionis/luminate/console/base/command.py,sha256=K-Jv3OTVenyrpTI2Jov-WQ435CA4tgqMy6sztxYKDFA,12674
33
33
  orionis/luminate/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  orionis/luminate/console/commands/cache_clear.py,sha256=UV2VFFK-LsUNDrqKb_Q8HWnwlwvIuTWTsbQ5x5rWHGk,2859
35
- orionis/luminate/console/commands/help.py,sha256=kbE4WiTE1ypGKZl5lGnz_HxRA5moKxOSYvo92IjiuCQ,2288
35
+ orionis/luminate/console/commands/help.py,sha256=Op8YJ-fV-NUljN8OETS-1yiNAJ_svEIDl_LbCtFlSCc,2331
36
36
  orionis/luminate/console/commands/schedule_work.py,sha256=_MY_dsPQtH--YaEg6S9yhUaGHE76kVFESu2eeMu5pZw,2172
37
37
  orionis/luminate/console/commands/tests.py,sha256=Z7e6aM5Vu8C7R8iC8sJgUYVN9aJgtVMkqjUEFxPq91o,1281
38
38
  orionis/luminate/console/commands/version.py,sha256=llVPK6ELtf8dIdPvLbybrtipWwZkzV0EXc9ShL-C-GY,1140
@@ -48,7 +48,7 @@ orionis/luminate/container/container.py,sha256=SL8QP2upb5fNm5XCCcWTSLpnDTiQgy3Cg
48
48
  orionis/luminate/container/container_integrity.py,sha256=lFQ41IN_3Z0SbtJzZ_9jewoaUI4xlsBEFXPfn-p82uI,7976
49
49
  orionis/luminate/container/exception.py,sha256=ap1SqYEjQEEHXJJTNmL7V1jrmRjgT5_7geZ95MYkhMA,1691
50
50
  orionis/luminate/container/lifetimes.py,sha256=2lbdiV7R2WlJf1cLD6eBxLnJud_lZvX1IhQH2Djy3Ww,375
51
- orionis/luminate/container/resolve.py,sha256=aPkv2EAommw8cRZiKNLrC5gHbi5QWAB54KOqxGqO5p0,2746
51
+ orionis/luminate/container/resolve.py,sha256=eHicHJD7q49ERqBJ4kTdCutaN_yE2D9GzWrgzFVooww,2795
52
52
  orionis/luminate/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  orionis/luminate/contracts/application.py,sha256=FIR6WMY0y-Hkjp0jWfjJV9kwIqBb-RB1-Jl0GWCk9eI,1077
54
54
  orionis/luminate/contracts/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -108,18 +108,18 @@ orionis/luminate/contracts/support/exception_to_dict.py,sha256=LZpbCNDYQJs3j2mIM
108
108
  orionis/luminate/contracts/support/reflection.py,sha256=Ht5_FsFbCb-APRXX3HdsfKl3cDZU8DyXGXPWKTn05uQ,8429
109
109
  orionis/luminate/contracts/support/std.py,sha256=IihREHnJ_D2LqsrwtnGsIRYr0UsJsQezYPSPO6UaBQ4,992
110
110
  orionis/luminate/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
- orionis/luminate/facades/app_facade.py,sha256=I5Ux_cdrNudDAkLxStxbmuH7g_cfh7osPwmP7bn96oY,1710
111
+ orionis/luminate/facades/app_facade.py,sha256=UzZ4n7N_Gz5MgYJvLethVUTp4gmYlubriYGtPXUxQxQ,893
112
112
  orionis/luminate/facades/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
- orionis/luminate/facades/commands/commands_facade.py,sha256=BdnLt2QKNyAPLuGJ7kzFomyGomDNwEZ-voAzh4tyR3k,1575
114
- orionis/luminate/facades/commands/scheduler_facade.py,sha256=LFC0Bw6r_MIvCQrWQyIGbE_FHE1GpaP-XPMPMAEH9Ok,1446
113
+ orionis/luminate/facades/commands/commands_facade.py,sha256=W1j3QRD0FssZPlXoqzplkxPjLA4VqES5Vr_CunUraBg,1588
114
+ orionis/luminate/facades/commands/scheduler_facade.py,sha256=4K2hx0j8cjkQXfZ59weG9DMC9aTHeNZ3fMzy5cKUrlY,1461
115
115
  orionis/luminate/facades/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
- orionis/luminate/facades/config/config_facade.py,sha256=p83yGpw2kphzcchQblWyeElhwV-8cp2hBlqep-UwmLI,1367
116
+ orionis/luminate/facades/config/config_facade.py,sha256=z1cbpcss-pdD-V2PTOY4VA2umkxuStBDD1KG77z7x4k,1382
117
117
  orionis/luminate/facades/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
- orionis/luminate/facades/environment/environment_facade.py,sha256=lDFSxbUjJ-a-O2aIyO0NcesLcqPvLnlBDTWdPKecxaQ,2101
118
+ orionis/luminate/facades/environment/environment_facade.py,sha256=byjVQWCQuqjgc2sbwzjGaMO-sP2N1YwxZ70FjsPf8G8,2120
119
119
  orionis/luminate/facades/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
- orionis/luminate/facades/files/path_facade.py,sha256=v-iXGzayIEkeO8Qv8QBuCH1h0Rdh1DBWxGgSvP2O3rQ,9098
120
+ orionis/luminate/facades/files/path_facade.py,sha256=z6DLW7IiBc6nonEwcIbylgpbrM9hgVzZ2Cptdxjr93I,9219
121
121
  orionis/luminate/facades/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
- orionis/luminate/facades/log/log_facade.py,sha256=Snz2sbhv3HCJeWLRgFHpfNAFDmqc6v01MTh9rFBo8y4,2496
122
+ orionis/luminate/facades/log/log_facade.py,sha256=h21YefGkmEpumE_rz_d7uMp-rBftLhxR6Eu7Yg_epls,2517
123
123
  orionis/luminate/facades/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
124
  orionis/luminate/facades/tests/tests_facade.py,sha256=hvNMU8idxxfvz4x-1_jeloff2Gee0k61VfUhxDrR6eg,1667
125
125
  orionis/luminate/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -181,9 +181,9 @@ tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
181
  tests/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
182
  tests/tools/class_example.py,sha256=dIPD997Y15n6WmKhWoOFSwEldRm9MdOHTZZ49eF1p3c,1056
183
183
  tests/tools/test_reflection.py,sha256=bhLQ7VGVod4B8sv-rW9AjnOumvaBVsoxieA3sdoM2yM,5244
184
- orionis-0.166.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
185
- orionis-0.166.0.dist-info/METADATA,sha256=_6mNrphy0b4jtdGmzu8xeBk8W1mfSb5mq4rAEejgY9M,2970
186
- orionis-0.166.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
187
- orionis-0.166.0.dist-info/entry_points.txt,sha256=eef1_CVewfokKjrGBynXa06KabSJYo7LlDKKIKvs1cM,53
188
- orionis-0.166.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
189
- orionis-0.166.0.dist-info/RECORD,,
184
+ orionis-0.170.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
185
+ orionis-0.170.0.dist-info/METADATA,sha256=WRfegLl5bX2Y8NfgYMNTyCpV_Rgaf3xHr7VQRRUqh5Y,2970
186
+ orionis-0.170.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
187
+ orionis-0.170.0.dist-info/entry_points.txt,sha256=eef1_CVewfokKjrGBynXa06KabSJYo7LlDKKIKvs1cM,53
188
+ orionis-0.170.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
189
+ orionis-0.170.0.dist-info/RECORD,,