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.
- orionis/console/args/argument.py +174 -43
- orionis/console/args/parser.py +37 -3
- orionis/console/base/command.py +103 -48
- orionis/console/base/contracts/command.py +97 -40
- orionis/console/core/reactor.py +408 -14
- orionis/console/output/contracts/executor.py +93 -0
- orionis/console/output/executor.py +153 -0
- orionis/container/container.py +46 -22
- orionis/container/context/scope.py +1 -1
- orionis/foundation/application.py +6 -2
- orionis/foundation/providers/console_provider.py +35 -10
- orionis/foundation/providers/dumper_provider.py +42 -14
- orionis/foundation/providers/executor_provider.py +80 -0
- orionis/foundation/providers/inspirational_provider.py +43 -23
- orionis/foundation/providers/logger_provider.py +47 -8
- orionis/foundation/providers/progress_bar_provider.py +55 -10
- orionis/foundation/providers/testing_provider.py +75 -31
- orionis/foundation/providers/workers_provider.py +69 -11
- orionis/metadata/framework.py +1 -1
- orionis/support/facades/console.py +11 -3
- orionis/support/facades/dumper.py +10 -3
- orionis/support/facades/executor.py +24 -0
- orionis/support/facades/inspire.py +9 -6
- orionis/support/facades/logger.py +11 -4
- orionis/support/facades/progress_bar.py +9 -3
- orionis/support/facades/testing.py +10 -4
- orionis/support/facades/workers.py +8 -4
- orionis/test/kernel.py +2 -2
- {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/METADATA +1 -1
- {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/RECORD +34 -30
- {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/WHEEL +0 -0
- {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.448.0.dist-info → orionis-0.450.0.dist-info}/top_level.txt +0 -0
- {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
|
-
|
|
8
|
+
Get the registered name of the component.
|
|
9
9
|
|
|
10
|
-
This method
|
|
11
|
-
|
|
12
|
-
|
|
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
|
|
18
|
+
The service container binding key 'x-orionis.services.inspirational.inspire'
|
|
19
|
+
used to resolve the inspirational service instance.
|
|
18
20
|
"""
|
|
19
21
|
|
|
20
|
-
|
|
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
|
-
|
|
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
|
|
14
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
17
|
+
The service container binding key 'x-orionis.console.dynamic.progress_bar'
|
|
18
|
+
used to retrieve the progress bar service instance.
|
|
14
19
|
"""
|
|
15
|
-
|
|
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
|
-
|
|
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
|
|
14
|
-
|
|
18
|
+
The service container binding key "x-orionis.test.core.unit_test"
|
|
19
|
+
used to resolve the testing component implementation.
|
|
15
20
|
"""
|
|
16
|
-
|
|
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
|
-
|
|
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
|
|
14
|
-
|
|
17
|
+
The service container binding key 'x-orionis.services.system.workers'
|
|
18
|
+
that identifies the workers service implementation.
|
|
15
19
|
"""
|
|
16
20
|
|
|
17
|
-
return "
|
|
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.
|
|
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('
|
|
45
|
+
self.__console: IConsole = app.make('x-orionis.console.output.console')
|
|
46
46
|
|
|
47
47
|
def handle(self) -> IUnitTest:
|
|
48
48
|
"""
|
|
@@ -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=
|
|
7
|
-
orionis/console/args/parser.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
174
|
-
orionis/foundation/providers/dumper_provider.py,sha256=
|
|
175
|
-
orionis/foundation/providers/
|
|
176
|
-
orionis/foundation/providers/
|
|
177
|
-
orionis/foundation/providers/
|
|
178
|
-
orionis/foundation/providers/
|
|
179
|
-
orionis/foundation/providers/
|
|
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=
|
|
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=
|
|
275
|
-
orionis/support/facades/dumper.py,sha256=
|
|
276
|
-
orionis/support/facades/
|
|
277
|
-
orionis/support/facades/
|
|
278
|
-
orionis/support/facades/
|
|
279
|
-
orionis/support/facades/
|
|
280
|
-
orionis/support/facades/
|
|
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=
|
|
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.
|
|
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.
|
|
491
|
-
orionis-0.
|
|
492
|
-
orionis-0.
|
|
493
|
-
orionis-0.
|
|
494
|
-
orionis-0.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|