orionis 0.448.0__py3-none-any.whl → 0.450.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 (34) hide show
  1. orionis/console/args/argument.py +174 -43
  2. orionis/console/args/parser.py +37 -3
  3. orionis/console/base/command.py +103 -48
  4. orionis/console/base/contracts/command.py +97 -40
  5. orionis/console/core/reactor.py +408 -14
  6. orionis/console/output/contracts/executor.py +93 -0
  7. orionis/console/output/executor.py +153 -0
  8. orionis/container/container.py +46 -22
  9. orionis/container/context/scope.py +1 -1
  10. orionis/foundation/application.py +6 -2
  11. orionis/foundation/providers/console_provider.py +35 -10
  12. orionis/foundation/providers/dumper_provider.py +42 -14
  13. orionis/foundation/providers/executor_provider.py +80 -0
  14. orionis/foundation/providers/inspirational_provider.py +43 -23
  15. orionis/foundation/providers/logger_provider.py +47 -8
  16. orionis/foundation/providers/progress_bar_provider.py +55 -10
  17. orionis/foundation/providers/testing_provider.py +75 -31
  18. orionis/foundation/providers/workers_provider.py +69 -11
  19. orionis/metadata/framework.py +1 -1
  20. orionis/support/facades/console.py +11 -3
  21. orionis/support/facades/dumper.py +10 -3
  22. orionis/support/facades/executor.py +24 -0
  23. orionis/support/facades/inspire.py +9 -6
  24. orionis/support/facades/logger.py +11 -4
  25. orionis/support/facades/progress_bar.py +9 -3
  26. orionis/support/facades/testing.py +10 -4
  27. orionis/support/facades/workers.py +8 -4
  28. orionis/test/kernel.py +2 -2
  29. {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/METADATA +1 -1
  30. {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/RECORD +34 -30
  31. {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/WHEEL +0 -0
  32. {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/licenses/LICENCE +0 -0
  33. {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/top_level.txt +0 -0
  34. {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/zip-safe +0 -0
@@ -5,16 +5,19 @@ class Inspire(Facade):
5
5
  @classmethod
6
6
  def getFacadeAccessor(cls):
7
7
  """
8
- Retrieves the binding key used to resolve the 'inspire' service from the service container.
8
+ Get the registered name of the component.
9
9
 
10
- This method provides the unique identifier string that the service container uses to locate
11
- and return the implementation associated with the 'inspire' service. It is typically used
12
- internally by the Facade base class to delegate calls to the appropriate service instance.
10
+ This method returns the service container binding key that identifies the
11
+ inspirational service implementation. The facade system uses this accessor
12
+ to resolve the underlying service instance from the IoC container when
13
+ facade methods are called.
13
14
 
14
15
  Returns
15
16
  -------
16
17
  str
17
- The binding key "core.orionis.inspire" that identifies the 'inspire' service in the container.
18
+ The service container binding key 'x-orionis.services.inspirational.inspire'
19
+ used to resolve the inspirational service instance.
18
20
  """
19
21
 
20
- return "core.orionis.inspire"
22
+ # Return the service container binding key for the inspirational service
23
+ return "x-orionis.services.inspirational.inspire"
@@ -5,12 +5,19 @@ class Log(Facade):
5
5
  @classmethod
6
6
  def getFacadeAccessor(cls) -> str:
7
7
  """
8
- Returns the binding key for the logger service in the service container.
8
+ Get the registered name of the component.
9
+
10
+ This method returns the service container binding key that identifies
11
+ the logger service implementation. It serves as the bridge between the
12
+ facade and the actual service instance registered in the container.
9
13
 
10
14
  Returns
11
15
  -------
12
16
  str
13
- The unique identifier used to resolve the logger service, specifically
14
- "core.orionis.logger".
17
+ The service container binding key "x-orionis.services.log.log_service"
18
+ used to resolve the logger service instance from the dependency
19
+ injection container.
15
20
  """
16
- return "core.orionis.logger"
21
+
22
+ # Return the service container binding key for the logger service
23
+ return "x-orionis.services.log.log_service"
@@ -5,11 +5,17 @@ class ProgressBar(Facade):
5
5
  @classmethod
6
6
  def getFacadeAccessor(cls):
7
7
  """
8
- Returns the binding key for the progress bar service.
8
+ Get the registered name of the component.
9
+
10
+ This method returns the binding key that identifies the progress bar service
11
+ within the service container. The facade uses this key to resolve the actual
12
+ progress bar implementation when static methods are called.
9
13
 
10
14
  Returns
11
15
  -------
12
16
  str
13
- The unique identifier used to retrieve the progress bar service from the service container.
17
+ The service container binding key 'x-orionis.console.dynamic.progress_bar'
18
+ used to retrieve the progress bar service instance.
14
19
  """
15
- return "core.orionis.progress_bar"
20
+
21
+ return "x-orionis.console.dynamic.progress_bar"
@@ -5,12 +5,18 @@ class Test(Facade):
5
5
  @classmethod
6
6
  def getFacadeAccessor(cls) -> str:
7
7
  """
8
- Returns the binding key for the testing component in the service container.
8
+ Get the registered name of the component.
9
+
10
+ This method returns the service container binding key that identifies
11
+ the testing component implementation. The facade uses this key to
12
+ resolve the appropriate testing service from the container when
13
+ static methods are called on the facade.
9
14
 
10
15
  Returns
11
16
  -------
12
17
  str
13
- The unique string identifier for the testing component, used by the service
14
- container to resolve the appropriate implementation.
18
+ The service container binding key "x-orionis.test.core.unit_test"
19
+ used to resolve the testing component implementation.
15
20
  """
16
- return "core.orionis.testing"
21
+
22
+ return "x-orionis.test.core.unit_test"
@@ -5,13 +5,17 @@ class Workers(Facade):
5
5
  @classmethod
6
6
  def getFacadeAccessor(cls):
7
7
  """
8
- Returns the binding key for the workers service in the service container.
8
+ Get the registered name of the component in the service container.
9
+
10
+ This method provides the binding key that the service container uses to
11
+ resolve the workers service implementation. It serves as the bridge between
12
+ the facade and the underlying service registration.
9
13
 
10
14
  Returns
11
15
  -------
12
16
  str
13
- The identifier string for the workers service, used by the service container
14
- to resolve the corresponding implementation.
17
+ The service container binding key 'x-orionis.services.system.workers'
18
+ that identifies the workers service implementation.
15
19
  """
16
20
 
17
- return "core.orionis.workers"
21
+ return "x-orionis.services.system.workers"
orionis/test/kernel.py CHANGED
@@ -39,10 +39,10 @@ class TestKernel(ITestKernel):
39
39
  )
40
40
 
41
41
  # Resolve the unit test service from the application container
42
- self.__unit_test: IUnitTest = app.make('core.orionis.testing')
42
+ self.__unit_test: IUnitTest = app.make('x-orionis.test.core.unit_test')
43
43
 
44
44
  # Resolve the console service from the application container
45
- self.__console: IConsole = app.make('core.orionis.console')
45
+ self.__console: IConsole = app.make('x-orionis.console.output.console')
46
46
 
47
47
  def handle(self) -> IUnitTest:
48
48
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.448.0
3
+ Version: 0.450.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
@@ -3,17 +3,17 @@ orionis/app.py,sha256=b69fOzj2J8Aw5g0IldWZXixUDeeTO9vcHc_Njses9HU,603
3
3
  orionis/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  orionis/console/kernel.py,sha256=1CuBCLR6KItRt0_m50YQXirJUMX6lJf4Z4vvOjBqaUU,856
5
5
  orionis/console/args/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- orionis/console/args/argument.py,sha256=ZbY8Gbxbk6pvORRL1evzXB9qGesepD0zdbMsbqfcFjw,14688
7
- orionis/console/args/parser.py,sha256=WRaeyRjqnwXKBLn56sK2jubS_DAPbfVQ2rtfUGluA8A,101
6
+ orionis/console/args/argument.py,sha256=Is8Z8_kW4DvcK1nK1UU-sa6Pk0BeOdcRczCayW0ZVHc,20360
7
+ orionis/console/args/parser.py,sha256=3eHQnYW-owS2n87T8M-DNKsf5vJTj7MZgar7DNF8DEw,1022
8
8
  orionis/console/args/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  orionis/console/args/enums/actions.py,sha256=S3T-vWS6DJSGtANrq3od3-90iYAjPvJwaOZ2V02y34c,1222
10
10
  orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- orionis/console/base/command.py,sha256=2kKyTaEzI16Up-XCUeNeJmDWPLN-CweQm3EgrN9U8NQ,3027
11
+ orionis/console/base/command.py,sha256=nasVPyKEvuv8sDFEWXhHyBCWAmSLfPPm2XlKaYYt_pM,6642
12
12
  orionis/console/base/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- orionis/console/base/contracts/command.py,sha256=s9yjma-s1URkVm0EbVvSkETAm-N8xX7OnZS43P8pvk8,1957
13
+ orionis/console/base/contracts/command.py,sha256=t15Vq_Ul0ET9jD_nYEM3tC0kSCUjQ4dfmi9oWmPpBrA,5764
14
14
  orionis/console/commands/version.py,sha256=kR8xzyc-Wisk7AXqg3Do7M9xTg_CxJgAtESPGrbRtpI,1673
15
15
  orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01IIHI5Y,826
16
- orionis/console/core/reactor.py,sha256=K3hPCdQpMskSSVDVAwi5caUVWbYJzbQJunuziZ5Hktk,995
16
+ orionis/console/core/reactor.py,sha256=oal0RcDvZgZDqIHDeQ0PT1U9bEKjN6DBopob4yBZ1bc,18073
17
17
  orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  orionis/console/dumper/dump.py,sha256=CATERiQ6XuIrKQsDaWcVxzTtlAJI9qLJX44fQxEX8ws,22443
19
19
  orionis/console/dumper/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -29,15 +29,17 @@ orionis/console/exceptions/cli_runtime_error.py,sha256=DaCDGu6mXBk1LIzc7cwRROw1m
29
29
  orionis/console/exceptions/cli_schedule_exception.py,sha256=IBbXb_5zi02pyo1laHdjGn6FYZK7WWRp4j2fkZOCT6I,1161
30
30
  orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
31
  orionis/console/output/console.py,sha256=AY2J2TT9Wp5JjuGikl8J2A0Zzbj3FF7JZREc9z9nC9c,19162
32
+ orionis/console/output/executor.py,sha256=9A8lCSU9DEVKhMsQLwBhFKW44Mz7KP-ig-o-4Vm-EcU,7328
32
33
  orionis/console/output/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
34
  orionis/console/output/contracts/console.py,sha256=phaQhCLWa81MLzB5ydOSaUfEIdDq7fOjvym8Rmi-arc,11908
35
+ orionis/console/output/contracts/executor.py,sha256=7l3kwnvv6GlH9EYk0v94YE1olex_-mvgyRDAqZvvYrQ,4254
34
36
  orionis/console/output/enums/__init__.py,sha256=LAaAxg-DpArCjf_jqZ0_9s3p8899gntDYkSU_ppTdC8,66
35
37
  orionis/console/output/enums/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
36
38
  orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- orionis/container/container.py,sha256=ICKSeaXA_IL15jV6Ofe1wIb1QyX-F-8oaGuk7hj955I,22773
39
+ orionis/container/container.py,sha256=cF9iu-Q8CMllnDTTL8DnJBcr40GgET6SG2ITnzirWDI,24366
38
40
  orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
41
  orionis/container/context/manager.py,sha256=I08K_jKXSKmrq18Pv33qYyMKIlAovVOwIgmfiVm-J7c,2971
40
- orionis/container/context/scope.py,sha256=_qwGMLV_zPVEvxESY18PCY8FS7AsSg_NlflwWGyOYOw,1143
42
+ orionis/container/context/scope.py,sha256=p_oCzR7dDz-5ZAd16ab4vfLc3gBf34CaN0f4iR9D0bQ,1155
41
43
  orionis/container/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
44
  orionis/container/contracts/container.py,sha256=QV_seo8mKrZJG2Ytr2u0RSiRaTaSPw6zUxgJ_tq6oP4,8301
43
45
  orionis/container/contracts/resolver.py,sha256=cbzzLvUuv5FD8DHnjs8VGCjDnCHXPWezRPHS_qr93xs,3193
@@ -68,7 +70,7 @@ orionis/container/validators/is_subclass.py,sha256=4sBaGLoRs8nUhuWjlP0VJqyTwVHYq
68
70
  orionis/container/validators/is_valid_alias.py,sha256=4uAYcq8xov7jZbXnpKpjNkxcZtlTNnL5RRctVPMwJes,1424
69
71
  orionis/container/validators/lifetime.py,sha256=IQ43fDNrxYHMlZH2zlYDJnlkLO_eS4U7Fs3UJgQBidI,1844
70
72
  orionis/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- orionis/foundation/application.py,sha256=ErkfS6AlC817vBmVDbx_UVYmkaABuEqZCBCrkDGNmzo,76653
73
+ orionis/foundation/application.py,sha256=51pEbB7s99-NxEBqXKT-6Wq7-vrN1Or1QUjEWTWRjgI,76927
72
74
  orionis/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
75
  orionis/foundation/config/startup.py,sha256=vbzduprRCNyYeR2nnMaqc1uKXw6PTzAY2jVfXNQKN8I,9691
74
76
  orionis/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -170,15 +172,16 @@ orionis/foundation/exceptions/runtime.py,sha256=QS9Wjy79UFoM_lA-JR907p4l4Z8ae5E8
170
172
  orionis/foundation/exceptions/type.py,sha256=Ug51YdaUKUlbngR0KeWnJNqIwS9StP4ScVobFY1eI18,463
171
173
  orionis/foundation/exceptions/value.py,sha256=hQhXybXEnaa59ba7JxG65jceHt3mnql9MyekF-TChpM,465
172
174
  orionis/foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
- orionis/foundation/providers/console_provider.py,sha256=wsv0RjoYU9MatC1ZRBAtV9iCVLzLWT2rg7MQFXwqgvo,1341
174
- orionis/foundation/providers/dumper_provider.py,sha256=d0k9yKVfwf40W4If0_rF09odLDXFA1w9jxU1MvZvCbo,1498
175
- orionis/foundation/providers/inspirational_provider.py,sha256=ZIsuEq2Sif7C1b1hYC7_mEBd0kGwd8KWd-fHyyd6Qs4,2298
176
- orionis/foundation/providers/logger_provider.py,sha256=PvwMxP5TKmn9DP8H8nJfyr16XgiJaGHyxPSMOpFgv84,1448
177
- orionis/foundation/providers/progress_bar_provider.py,sha256=P__zpCyC29WCwErYGbh5dgcMRxw3XYmHzaUkzms9vPM,1345
178
- orionis/foundation/providers/testing_provider.py,sha256=TGklBDI4hcCnZ26ZYRQ5n_2xSDfTk4X7YJPv1CHRkN0,2884
179
- orionis/foundation/providers/workers_provider.py,sha256=YMRLdq_YQnR1unnoYvDpYQZbLli04f0CckuR6Q--wKg,1379
175
+ orionis/foundation/providers/console_provider.py,sha256=9oDHOGm79O8OtwTFPCYl4hNQgxAskqGdG1mIYyEg6qQ,2970
176
+ orionis/foundation/providers/dumper_provider.py,sha256=nKHjLDClCo-KnPloh6EYVySjgzf6SYSvoxVD6IwJt8M,3355
177
+ orionis/foundation/providers/executor_provider.py,sha256=kwkH8YWEXoEoP51akJXQJ0U25rhlOLxnfE0s9fALr0I,3478
178
+ orionis/foundation/providers/inspirational_provider.py,sha256=uq2o0uLd5p6PR99uH4cJAcc6NnU6nIOwe0ZIdzZcF4Q,3726
179
+ orionis/foundation/providers/logger_provider.py,sha256=Xs7axVCuoOLl8jTMeLlCRPjqfnssViIHyECh90HnL7M,3670
180
+ orionis/foundation/providers/progress_bar_provider.py,sha256=X4Ke7mPr0MgVp6WDNaQ3bI3Z_LOS8qE-wid0MQErKms,3367
181
+ orionis/foundation/providers/testing_provider.py,sha256=YTubcNnWrG3SPx5NM5HgYefvUYoXdlzXcjljnjavUwM,6462
182
+ orionis/foundation/providers/workers_provider.py,sha256=5CvlUETdIblh7Wx8pT0MswTeTCGhYah-EvFqOrLu8Mo,4113
180
183
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
- orionis/metadata/framework.py,sha256=V6LicbR5Jcc2HsX4LtWkblm3ndhL_OIa9aJlXVZN9-g,4088
184
+ orionis/metadata/framework.py,sha256=SwwdGkSoqfg2mdA0GAeC1WFurIhx9-TS526fHUrN7AU,4088
182
185
  orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
183
186
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
187
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -271,13 +274,14 @@ orionis/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
271
274
  orionis/support/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
275
  orionis/support/entities/base.py,sha256=kVx9YWZjYS6C9MraarU7U12OeT5enBp5XqizrQm4RQs,4801
273
276
  orionis/support/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
- orionis/support/facades/console.py,sha256=OvxQ-r8PsPocJTaIUftmJnnr4SuONHQWYFz2_r1CcR4,412
275
- orionis/support/facades/dumper.py,sha256=XAHJTXrMjPchGQMIAU0hlcUjMZQK_ogrE0voRm2HdI8,434
276
- orionis/support/facades/inspire.py,sha256=m2UbKXyggxASd0HTRT5M-mJ0FvMP_NIJ0lW8HTQMi4M,759
277
- orionis/support/facades/logger.py,sha256=2EbSbJDSyKFUQmZUpoMsc5704Mzj2Skehx_9UpDluhc,450
278
- orionis/support/facades/progress_bar.py,sha256=NOCwAV873GptedgySMZpM_A_DoM-UQrMg2kDHpS6zi8,423
279
- orionis/support/facades/testing.py,sha256=FJy7bnDiNHMe7jutARELHom6umDxlLVMMOj6aLm0Vak,490
280
- orionis/support/facades/workers.py,sha256=DJ_mSnD4budFBrPGf-epVYrSQ1AzDcJ82db0QmNTAyU,479
277
+ orionis/support/facades/console.py,sha256=Yhpgv0FpwyOXP4IMgTtDw0_nkcu-J_9nhZRPwJCetCg,875
278
+ orionis/support/facades/dumper.py,sha256=qQPoMbkXExv6UaByoDCyJA-gt5SA1oQtym2TwpihtoI,794
279
+ orionis/support/facades/executor.py,sha256=fRBQ447WpL2T42Ys02k_DJNqukFFk8-bbNFz4GEbRfI,931
280
+ orionis/support/facades/inspire.py,sha256=n7TFhxneqUtEJYQSrOdmNq9XQzhFMMsIAfdwnBWR1hA,841
281
+ orionis/support/facades/logger.py,sha256=Ncrd_bcggEOnWfLmvGjYTnFgO_Hop2iO9di1oWqH0Ow,824
282
+ orionis/support/facades/progress_bar.py,sha256=eTxfGIAfdkrXkycvdQBddn9E4MIlbCLOU7TDO2-7cgU,717
283
+ orionis/support/facades/testing.py,sha256=5tzFIMSe1gxLcs7dcueUnAdTJ977czd2sNK1RtUjSUM,737
284
+ orionis/support/facades/workers.py,sha256=3kRK7TogGTHpdeHEW13Q1tQIlpXwXAmS93JIsAvYRcw,717
281
285
  orionis/support/formatter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
282
286
  orionis/support/formatter/serializer.py,sha256=SGii2rPei1QR-W1KQTA_IpH4a_46AgaUzSaruwRlcdM,662
283
287
  orionis/support/formatter/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -296,7 +300,7 @@ orionis/support/standard/exceptions/value.py,sha256=rsyWFQweImaJGTJa7Id7RhPlwWJ4
296
300
  orionis/support/wrapper/__init__.py,sha256=jGoWoIGYuRYqMYQKlrX7Dpcbg-AGkHoB_aM2xhu73yc,62
297
301
  orionis/support/wrapper/dot_dict.py,sha256=T8xWwwOhBZHNeXRwE_CxvOwG9UFxsLqNmOJjV2CNIrc,7284
298
302
  orionis/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
- orionis/test/kernel.py,sha256=nJJDN2xusp9VZzezfocIvoenT2BheverjSovYCbRECg,3229
303
+ orionis/test/kernel.py,sha256=iis03o0DH3kc-y2gaLdGxluFi0y4kpWNTBQetQBE24Y,3250
300
304
  orionis/test/cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
305
  orionis/test/cases/asynchronous.py,sha256=3e1Y3qzIxVU7i7lbLFEVyJ89IA74JsB7famx71W-p2E,1974
302
306
  orionis/test/cases/synchronous.py,sha256=S5jhuDEZ5I9wosrTFaCtowkD5r5HzJH6mKPOdEJcDJE,1734
@@ -343,7 +347,7 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
343
347
  orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnIfJYgc,1206
344
348
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
349
  orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
346
- orionis-0.448.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
350
+ orionis-0.450.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
347
351
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
348
352
  tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
353
  tests/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -487,8 +491,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
487
491
  tests/testing/validators/test_testing_validators.py,sha256=WPo5GxTP6xE-Dw3X1vZoqOMpb6HhokjNSbgDsDRDvy4,16588
488
492
  tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
489
493
  tests/testing/view/test_render.py,sha256=tnnMBwS0iKUIbogLvu-7Rii50G6Koddp3XT4wgdFEYM,1050
490
- orionis-0.448.0.dist-info/METADATA,sha256=cIvEnppWITYHQEX4OFtclDYGLRI4fy4F4249r0nJuGg,4772
491
- orionis-0.448.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
492
- orionis-0.448.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
493
- orionis-0.448.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
494
- orionis-0.448.0.dist-info/RECORD,,
494
+ orionis-0.450.0.dist-info/METADATA,sha256=yCYH8b-NPXkXb-GpHWqk9jBq5yC5FGXbxk0pvDUmVqI,4772
495
+ orionis-0.450.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
496
+ orionis-0.450.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
497
+ orionis-0.450.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
498
+ orionis-0.450.0.dist-info/RECORD,,