orionis 0.436.0__py3-none-any.whl → 0.438.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/contracts/kernel.py +16 -3
- orionis/console/dumper/contracts/dump.py +8 -9
- orionis/console/dynamic/progress_bar.py +21 -29
- orionis/console/output/console.py +12 -0
- orionis/container/context/manager.py +27 -17
- orionis/container/context/scope.py +8 -7
- orionis/container/contracts/service_provider.py +12 -8
- orionis/container/providers/service_provider.py +9 -16
- orionis/container/resolver/resolver.py +29 -22
- orionis/foundation/contracts/application.py +437 -47
- orionis/foundation/contracts/config.py +14 -6
- orionis/foundation/providers/console_provider.py +16 -15
- orionis/foundation/providers/dumper_provider.py +20 -8
- orionis/foundation/providers/logger_provider.py +19 -14
- orionis/foundation/providers/path_resolver_provider.py +17 -14
- orionis/foundation/providers/progress_bar_provider.py +15 -14
- orionis/foundation/providers/testing_provider.py +20 -14
- orionis/foundation/providers/workers_provider.py +19 -14
- orionis/metadata/framework.py +1 -1
- orionis/services/asynchrony/contracts/coroutines.py +1 -0
- orionis/services/asynchrony/coroutines.py +2 -0
- orionis/services/asynchrony/exceptions/exception.py +2 -0
- orionis/services/environment/core/dot_env.py +9 -0
- orionis/services/environment/dynamic/caster.py +31 -2
- orionis/services/environment/key/key_generator.py +1 -0
- orionis/services/environment/validators/key_name.py +1 -0
- orionis/services/environment/validators/types.py +5 -1
- orionis/services/introspection/abstract/contracts/reflection.py +188 -221
- orionis/services/introspection/abstract/reflection.py +311 -178
- orionis/services/introspection/callables/contracts/reflection.py +64 -21
- orionis/services/introspection/callables/reflection.py +98 -23
- orionis/services/introspection/concretes/reflection.py +278 -181
- orionis/services/introspection/dependencies/contracts/reflection.py +21 -18
- orionis/services/introspection/dependencies/entities/callable_dependencies.py +15 -16
- orionis/services/introspection/dependencies/entities/class_dependencies.py +24 -16
- orionis/services/introspection/dependencies/entities/known_dependencies.py +19 -13
- orionis/services/introspection/dependencies/entities/method_dependencies.py +22 -16
- orionis/services/introspection/dependencies/reflection.py +0 -3
- orionis/services/introspection/instances/reflection.py +16 -6
- orionis/services/log/contracts/log_service.py +4 -0
- orionis/services/log/handlers/filename.py +2 -0
- orionis/services/paths/contracts/resolver.py +0 -3
- orionis/services/paths/resolver.py +0 -3
- {orionis-0.436.0.dist-info → orionis-0.438.0.dist-info}/METADATA +1 -1
- {orionis-0.436.0.dist-info → orionis-0.438.0.dist-info}/RECORD +68 -67
- tests/container/core/__init__.py +0 -0
- tests/container/mocks/mock_complex_classes.py +502 -192
- tests/container/mocks/mock_simple_classes.py +72 -6
- tests/container/validators/test_is_valid_alias.py +1 -1
- tests/foundation/config/database/test_foundation_config_database.py +54 -28
- tests/foundation/config/filesystems/test_foundation_config_filesystems_aws.py +40 -22
- tests/foundation/config/filesystems/test_foundation_config_filesystems_public.py +75 -48
- tests/foundation/config/logging/test_foundation_config_logging_channels.py +49 -37
- tests/foundation/config/logging/test_foundation_config_logging_monthly.py +80 -42
- tests/foundation/config/logging/test_foundation_config_logging_stack.py +46 -22
- tests/foundation/config/root/test_foundation_config_root_paths.py +37 -44
- tests/foundation/config/session/test_foundation_config_session.py +65 -20
- tests/foundation/config/startup/test_foundation_config_startup.py +37 -33
- tests/services/introspection/dependencies/test_reflect_dependencies.py +77 -25
- tests/services/introspection/reflection/test_reflection_abstract.py +403 -47
- /orionis/services/introspection/concretes/contracts/{concrete.py → reflection.py} +0 -0
- {orionis-0.436.0.dist-info → orionis-0.438.0.dist-info}/WHEEL +0 -0
- {orionis-0.436.0.dist-info → orionis-0.438.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.436.0.dist-info → orionis-0.438.0.dist-info}/top_level.txt +0 -0
- {orionis-0.436.0.dist-info → orionis-0.438.0.dist-info}/zip-safe +0 -0
- /tests/container/{test_container.py → core/test_container.py} +0 -0
- /tests/container/{test_singleton.py → core/test_singleton.py} +0 -0
- /tests/container/{test_thread_safety.py → core/test_thread_safety.py} +0 -0
|
@@ -7,14 +7,14 @@ orionis/console/base/command.py,sha256=2kKyTaEzI16Up-XCUeNeJmDWPLN-CweQm3EgrN9U8
|
|
|
7
7
|
orionis/console/base/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
orionis/console/base/contracts/command.py,sha256=s9yjma-s1URkVm0EbVvSkETAm-N8xX7OnZS43P8pvk8,1957
|
|
9
9
|
orionis/console/commands/version.py,sha256=TfiuMCcESdlNuhnbl_h9qbOb8aYDXcc5X1J5LfD1v7M,1041
|
|
10
|
-
orionis/console/contracts/kernel.py,sha256=
|
|
10
|
+
orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01IIHI5Y,826
|
|
11
11
|
orionis/console/core/reactor.py,sha256=lNfj-L4MKZhBn07l4H5L5dVW2xBRiq6-kyIuqnUNawQ,73
|
|
12
12
|
orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
orionis/console/dumper/dump.py,sha256=CATERiQ6XuIrKQsDaWcVxzTtlAJI9qLJX44fQxEX8ws,22443
|
|
14
14
|
orionis/console/dumper/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
orionis/console/dumper/contracts/dump.py,sha256=
|
|
15
|
+
orionis/console/dumper/contracts/dump.py,sha256=LqT4nAyn37eACNz0c_WqQd8BDXgZ9pugtkiVlHOP6yc,1012
|
|
16
16
|
orionis/console/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
orionis/console/dynamic/progress_bar.py,sha256=
|
|
17
|
+
orionis/console/dynamic/progress_bar.py,sha256=iK1kAf9vJIgk6BbdlGvlJkGc1m7Ck4euNqQpg5aarW8,2880
|
|
18
18
|
orionis/console/dynamic/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
orionis/console/dynamic/contracts/progress_bar.py,sha256=NYebL2h-vg2t2H6IhJjuC37gglRkpT-MW71wbJtpLNg,1784
|
|
20
20
|
orionis/console/exceptions/__init__.py,sha256=0qlHNuHMVZO87M-rP8lThUUyljRM1jSFNikaxSCjSbw,366
|
|
@@ -23,7 +23,7 @@ orionis/console/exceptions/cli_orionis_value_error.py,sha256=RQP0HRwxDG8hxFOT1kU
|
|
|
23
23
|
orionis/console/exceptions/cli_runtime_error.py,sha256=DaCDGu6mXBk1LIzc7cwRROw1mePAigPNASjNZHhUSBE,1154
|
|
24
24
|
orionis/console/exceptions/cli_schedule_exception.py,sha256=IBbXb_5zi02pyo1laHdjGn6FYZK7WWRp4j2fkZOCT6I,1161
|
|
25
25
|
orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
orionis/console/output/console.py,sha256=
|
|
26
|
+
orionis/console/output/console.py,sha256=AY2J2TT9Wp5JjuGikl8J2A0Zzbj3FF7JZREc9z9nC9c,19162
|
|
27
27
|
orionis/console/output/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
orionis/console/output/contracts/console.py,sha256=phaQhCLWa81MLzB5ydOSaUfEIdDq7fOjvym8Rmi-arc,11908
|
|
29
29
|
orionis/console/output/enums/__init__.py,sha256=LAaAxg-DpArCjf_jqZ0_9s3p8899gntDYkSU_ppTdC8,66
|
|
@@ -31,12 +31,12 @@ orionis/console/output/enums/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh
|
|
|
31
31
|
orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
orionis/container/container.py,sha256=ICKSeaXA_IL15jV6Ofe1wIb1QyX-F-8oaGuk7hj955I,22773
|
|
33
33
|
orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
orionis/container/context/manager.py,sha256=
|
|
35
|
-
orionis/container/context/scope.py,sha256=
|
|
34
|
+
orionis/container/context/manager.py,sha256=I08K_jKXSKmrq18Pv33qYyMKIlAovVOwIgmfiVm-J7c,2971
|
|
35
|
+
orionis/container/context/scope.py,sha256=lG3RIYu4fPdw2cl06fMuhqhFPFvWHkkF9Cw-pIzgTEo,1135
|
|
36
36
|
orionis/container/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
37
|
orionis/container/contracts/container.py,sha256=QV_seo8mKrZJG2Ytr2u0RSiRaTaSPw6zUxgJ_tq6oP4,8301
|
|
38
38
|
orionis/container/contracts/resolver.py,sha256=cbzzLvUuv5FD8DHnjs8VGCjDnCHXPWezRPHS_qr93xs,3193
|
|
39
|
-
orionis/container/contracts/service_provider.py,sha256=
|
|
39
|
+
orionis/container/contracts/service_provider.py,sha256=TJtwFoPYvw3hvBSfIEO3-httq8iszaRQh1IjCKfDyVM,1016
|
|
40
40
|
orionis/container/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
orionis/container/entities/binding.py,sha256=sY0ioHbRcjp9TSQjfrFHxkO3vRn_VOrbHK62_QEGe1U,3717
|
|
42
42
|
orionis/container/enums/__init__.py,sha256=BRpTC9sY0dWlGsGfE96uZ8TZqU28kXTP0HEH8DdC9c8,65
|
|
@@ -49,9 +49,9 @@ orionis/container/exceptions/value.py,sha256=hjY0YEusoL3DurME1ornxvIv1wyGaf6tBgg
|
|
|
49
49
|
orionis/container/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
50
|
orionis/container/facades/facade.py,sha256=jzP4dTgDiaxPw-RWTHrE-DYiv8tXa1TQov1jx9Iti3c,3679
|
|
51
51
|
orionis/container/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
-
orionis/container/providers/service_provider.py,sha256=
|
|
52
|
+
orionis/container/providers/service_provider.py,sha256=RqXpn8krFA3tt_m9CEG7-na7szp-zqfirO4DzpCHpF4,1685
|
|
53
53
|
orionis/container/resolver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
-
orionis/container/resolver/resolver.py,sha256=
|
|
54
|
+
orionis/container/resolver/resolver.py,sha256=1hg0SO6PCaHXti7trmomKln2lDzaJGh0vkhwfHkNZLE,23478
|
|
55
55
|
orionis/container/validators/__init__.py,sha256=iJ_cY8U0EkpnZOU4_LANGKHFkvHeV0vH5bjbYr1fdSg,609
|
|
56
56
|
orionis/container/validators/implements.py,sha256=xDXK7yhG5GGGRT9Mj1UbbVrcVTgifmjFZdaAJG4Ke8o,3110
|
|
57
57
|
orionis/container/validators/is_abstract_class.py,sha256=vJqUPn610YZS0sEkV8c_gPZskIgWmFHjg3D3MF2OTs8,1141
|
|
@@ -157,40 +157,40 @@ orionis/foundation/config/testing/enums/drivers.py,sha256=mwv47FcKDXEOxydQXAGtkd
|
|
|
157
157
|
orionis/foundation/config/testing/enums/mode.py,sha256=IbFpauu7J-iSAfmC8jDbmTEYl8eZr-AexL-lyOh8_74,337
|
|
158
158
|
orionis/foundation/config/testing/enums/verbosity.py,sha256=Z-FQ6C3rxbRwP8HoVibbgRMGcsen2SwTuEy3wnjdIhc,486
|
|
159
159
|
orionis/foundation/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
|
-
orionis/foundation/contracts/application.py,sha256=
|
|
161
|
-
orionis/foundation/contracts/config.py,sha256=
|
|
160
|
+
orionis/foundation/contracts/application.py,sha256=fOpR5Wxc0K4gjkxFvy0-kYTRGhnBiWnMlf5-dOe1qE0,27033
|
|
161
|
+
orionis/foundation/contracts/config.py,sha256=mCyA43f0n_e-CEL0f-sWWgE-M7GicS_aEtC_TNbn_yc,802
|
|
162
162
|
orionis/foundation/exceptions/__init__.py,sha256=q6we1N8kcd6j6GjUJY30WQhhHnqF9RXA0c6-ksEztlc,294
|
|
163
163
|
orionis/foundation/exceptions/integrity.py,sha256=mc4pL1UMoYRHEmphnpW2oGk5URhu7DJRREyzHaV-cs8,472
|
|
164
164
|
orionis/foundation/exceptions/runtime.py,sha256=QS9Wjy79UFoM_lA-JR907p4l4Z8ae5E810HAHAnmIq8,469
|
|
165
165
|
orionis/foundation/exceptions/type.py,sha256=Ug51YdaUKUlbngR0KeWnJNqIwS9StP4ScVobFY1eI18,463
|
|
166
166
|
orionis/foundation/exceptions/value.py,sha256=hQhXybXEnaa59ba7JxG65jceHt3mnql9MyekF-TChpM,465
|
|
167
167
|
orionis/foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
|
-
orionis/foundation/providers/console_provider.py,sha256=
|
|
169
|
-
orionis/foundation/providers/dumper_provider.py,sha256=
|
|
170
|
-
orionis/foundation/providers/logger_provider.py,sha256=
|
|
171
|
-
orionis/foundation/providers/path_resolver_provider.py,sha256=
|
|
172
|
-
orionis/foundation/providers/progress_bar_provider.py,sha256=
|
|
173
|
-
orionis/foundation/providers/testing_provider.py,sha256=
|
|
174
|
-
orionis/foundation/providers/workers_provider.py,sha256=
|
|
168
|
+
orionis/foundation/providers/console_provider.py,sha256=wsv0RjoYU9MatC1ZRBAtV9iCVLzLWT2rg7MQFXwqgvo,1341
|
|
169
|
+
orionis/foundation/providers/dumper_provider.py,sha256=d0k9yKVfwf40W4If0_rF09odLDXFA1w9jxU1MvZvCbo,1498
|
|
170
|
+
orionis/foundation/providers/logger_provider.py,sha256=PvwMxP5TKmn9DP8H8nJfyr16XgiJaGHyxPSMOpFgv84,1448
|
|
171
|
+
orionis/foundation/providers/path_resolver_provider.py,sha256=s44Mg68RsUNPlilQlXMBE7onVexa7kyDmVQmci1JL4g,1342
|
|
172
|
+
orionis/foundation/providers/progress_bar_provider.py,sha256=P__zpCyC29WCwErYGbh5dgcMRxw3XYmHzaUkzms9vPM,1345
|
|
173
|
+
orionis/foundation/providers/testing_provider.py,sha256=o47qiK8Xoz4hfsxw4jMnMxEbSseJFIdJT-WqxGurqGc,1426
|
|
174
|
+
orionis/foundation/providers/workers_provider.py,sha256=YMRLdq_YQnR1unnoYvDpYQZbLli04f0CckuR6Q--wKg,1379
|
|
175
175
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
-
orionis/metadata/framework.py,sha256=
|
|
176
|
+
orionis/metadata/framework.py,sha256=9nN4Jr7mOji7k8LgPg6oWwMNVD-gi1_2868kwag_jEE,4088
|
|
177
177
|
orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
|
|
178
178
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
179
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
|
-
orionis/services/asynchrony/coroutines.py,sha256=
|
|
180
|
+
orionis/services/asynchrony/coroutines.py,sha256=8pSSgo-U9ncPLisJqIiu1BKRlWg6p6T6TFrVvh7UMVE,2594
|
|
181
181
|
orionis/services/asynchrony/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
-
orionis/services/asynchrony/contracts/coroutines.py,sha256=
|
|
182
|
+
orionis/services/asynchrony/contracts/coroutines.py,sha256=rVy1HO58RFKliGeaf6GUC7mGtPZXimIhzkFHR1EWRoc,1082
|
|
183
183
|
orionis/services/asynchrony/exceptions/__init__.py,sha256=COm6RhSiuwWqy3YcJ_0gVu6XHjn5P3zVaiUp5Pw_h48,99
|
|
184
|
-
orionis/services/asynchrony/exceptions/exception.py,sha256=
|
|
184
|
+
orionis/services/asynchrony/exceptions/exception.py,sha256=Npze-29hlzjXxOZt3RF1R9yp0O1tMSRt7sCWXKjy3Pc,772
|
|
185
185
|
orionis/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
orionis/services/environment/env.py,sha256=09poYYjI3lOEV3TuHh3JA8M8sfKN-lVIO4SKOmt6d_E,2845
|
|
187
187
|
orionis/services/environment/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
188
|
orionis/services/environment/contracts/caster.py,sha256=OPi82zrvnvVSoOuDfZ89JTYd7cmfW4wSJejTW1azDsc,1180
|
|
189
189
|
orionis/services/environment/contracts/env.py,sha256=ozdYs3TkOsowPUrXSPEvm6mjoxYLWskliraQWh-WW4o,2122
|
|
190
190
|
orionis/services/environment/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
-
orionis/services/environment/core/dot_env.py,sha256=
|
|
191
|
+
orionis/services/environment/core/dot_env.py,sha256=dbs9NhT4MQcYw6Jly0rboSufJtG9eIIyZFoMVnsRZYo,12505
|
|
192
192
|
orionis/services/environment/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
|
-
orionis/services/environment/dynamic/caster.py,sha256=
|
|
193
|
+
orionis/services/environment/dynamic/caster.py,sha256=XUKVehcHMHyxV1Lrd6l9NolQAWL-XxYIZ0cGLsiqARU,34123
|
|
194
194
|
orionis/services/environment/enums/__init__.py,sha256=lV7sRtjZk3pUvqp21A_GZFkKPYSY6UHZzlQarkQOBjA,90
|
|
195
195
|
orionis/services/environment/enums/value_type.py,sha256=s-tTLgJLhI-ISmDNRpmEdj69DSmL3mDO1nrjRWAO7fU,1262
|
|
196
196
|
orionis/services/environment/exceptions/__init__.py,sha256=YwLc8GsB0swlwu9T9Qt2vevaCoq5V2vmPUSlEUAqg2Q,199
|
|
@@ -199,39 +199,39 @@ orionis/services/environment/exceptions/value.py,sha256=F2dzNl3OL6AyPu2QcPkreUgj
|
|
|
199
199
|
orionis/services/environment/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
200
|
orionis/services/environment/helpers/functions.py,sha256=wk2VZJvA4Pel9D945cBdWydutDr2NO9TuLno0VOv5Wg,680
|
|
201
201
|
orionis/services/environment/key/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
|
-
orionis/services/environment/key/key_generator.py,sha256
|
|
202
|
+
orionis/services/environment/key/key_generator.py,sha256=q39GD-VgRhH0uYB0ZdfUnq9BNyLCV3hweX32u39zGTo,848
|
|
203
203
|
orionis/services/environment/validators/__init__.py,sha256=S0Us4_BtKPuOMQZf4uFFqUINB8l6Eb9vJbbxUCzIhfc,135
|
|
204
|
-
orionis/services/environment/validators/key_name.py,sha256=
|
|
205
|
-
orionis/services/environment/validators/types.py,sha256=
|
|
204
|
+
orionis/services/environment/validators/key_name.py,sha256=TSwVhQCbBYPZ_4zZ-o16yT_2pOe3WRWl9d8KzfDzWyg,1660
|
|
205
|
+
orionis/services/environment/validators/types.py,sha256=hiTszo7hS_1zQLclUIDOFUTGy2Kg2n3dZe7jU8Pmf1I,2839
|
|
206
206
|
orionis/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
207
|
orionis/services/introspection/reflection.py,sha256=_Wdy8Wtt3RKXAqg9o5rvYa_Hyu-Z4674LKnNVg7u7pU,11467
|
|
208
208
|
orionis/services/introspection/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
|
-
orionis/services/introspection/abstract/reflection.py,sha256=
|
|
209
|
+
orionis/services/introspection/abstract/reflection.py,sha256=9fWGgtUbtothaE40C9xgt5uGb9tmip8U3f2P_3mui-Y,50388
|
|
210
210
|
orionis/services/introspection/abstract/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
-
orionis/services/introspection/abstract/contracts/reflection.py,sha256
|
|
211
|
+
orionis/services/introspection/abstract/contracts/reflection.py,sha256=JYkwjcewlqC0IOvAjWZ1uoQ3HUme0VHkeUH8kJuvdMA,23664
|
|
212
212
|
orionis/services/introspection/callables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
-
orionis/services/introspection/callables/reflection.py,sha256=
|
|
213
|
+
orionis/services/introspection/callables/reflection.py,sha256=WGnTq8kCVCWFQxnt-t72g8qx6QbBAs4FVblc2p03oXY,8263
|
|
214
214
|
orionis/services/introspection/callables/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
|
-
orionis/services/introspection/callables/contracts/reflection.py,sha256=
|
|
215
|
+
orionis/services/introspection/callables/contracts/reflection.py,sha256=YnnSrLu2ZCabY-mztWfYQm9AcqTWO53MzeqS-21QAxY,5405
|
|
216
216
|
orionis/services/introspection/concretes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
|
-
orionis/services/introspection/concretes/reflection.py,sha256=
|
|
217
|
+
orionis/services/introspection/concretes/reflection.py,sha256=ghOe6G3xOmpJ5thCXrKxzmWFQ0hbhdcgcLeumHpsMkU,56018
|
|
218
218
|
orionis/services/introspection/concretes/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
219
|
-
orionis/services/introspection/concretes/contracts/
|
|
219
|
+
orionis/services/introspection/concretes/contracts/reflection.py,sha256=vsbJqMslYQTUbHkgYqviY3vVIx_BlFznhUCprLq5djo,25057
|
|
220
220
|
orionis/services/introspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
|
-
orionis/services/introspection/dependencies/reflection.py,sha256=
|
|
221
|
+
orionis/services/introspection/dependencies/reflection.py,sha256=mfPEXAvwbNSKhRPgMr3Qg9JcX3PRtNdsB13ZiaIC7GY,9294
|
|
222
222
|
orionis/services/introspection/dependencies/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
|
-
orionis/services/introspection/dependencies/contracts/reflection.py,sha256=
|
|
223
|
+
orionis/services/introspection/dependencies/contracts/reflection.py,sha256=TYJxW6kx5AjA8Sm_a5bJXw2rlWc-p7w5XJ_xcJyC37Y,1999
|
|
224
224
|
orionis/services/introspection/dependencies/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
-
orionis/services/introspection/dependencies/entities/callable_dependencies.py,sha256=
|
|
226
|
-
orionis/services/introspection/dependencies/entities/class_dependencies.py,sha256=
|
|
227
|
-
orionis/services/introspection/dependencies/entities/known_dependencies.py,sha256=
|
|
228
|
-
orionis/services/introspection/dependencies/entities/method_dependencies.py,sha256=
|
|
225
|
+
orionis/services/introspection/dependencies/entities/callable_dependencies.py,sha256=d9lr8FsmAEU3NqgvIBDVAGlVD3dy-esCzk9J5jM9nAE,1983
|
|
226
|
+
orionis/services/introspection/dependencies/entities/class_dependencies.py,sha256=osEoMB0VSdGOnHqLgH921iGbiO85qMSb2DdRRttbvJk,2276
|
|
227
|
+
orionis/services/introspection/dependencies/entities/known_dependencies.py,sha256=ICaFjNG51DY1iKJ0SV4cbmLyg6SFGscnDB3DCO9mCOc,2453
|
|
228
|
+
orionis/services/introspection/dependencies/entities/method_dependencies.py,sha256=aZDtKID3t12zHYLw9Tt6EbV3KQg-q1S0b2h7sHk5fEU,2294
|
|
229
229
|
orionis/services/introspection/exceptions/__init__.py,sha256=oe7uzaGwjeMgz62ZTeNn6ersCApOVv3PXFlUw0vYLQM,234
|
|
230
230
|
orionis/services/introspection/exceptions/attribute.py,sha256=_JerTjfhikYwC2FKJV8XbVZqiZdLcBt7WGtw8r6vkqo,473
|
|
231
231
|
orionis/services/introspection/exceptions/type.py,sha256=73DB8JoTbxd7LNMnZKXf4jJ8OzLyC0HPXgDo5pffkYY,466
|
|
232
232
|
orionis/services/introspection/exceptions/value.py,sha256=ywO_cwawEmB22uP3i4ofsZytO9QTbvy7axm9NzEfHr4,467
|
|
233
233
|
orionis/services/introspection/instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
234
|
-
orionis/services/introspection/instances/reflection.py,sha256=
|
|
234
|
+
orionis/services/introspection/instances/reflection.py,sha256=OKaZbX-19tsycCdy-tGDIg_UwlX0tleFA2UENjxGovc,55140
|
|
235
235
|
orionis/services/introspection/instances/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
236
|
orionis/services/introspection/instances/contracts/reflection.py,sha256=D9sH-uOSZ_E7luAfbjI_ML6kfxuO5MtvLk6037iQJ7o,20936
|
|
237
237
|
orionis/services/introspection/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -243,17 +243,17 @@ orionis/services/introspection/objects/types.py,sha256=vNKWc2b7K-X7B2X8RCimgAWQq
|
|
|
243
243
|
orionis/services/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
244
244
|
orionis/services/log/log_service.py,sha256=DsbU8HVf035HxumFm4Xjo7kYhuXf0D57Xhuz7uzKhGo,11344
|
|
245
245
|
orionis/services/log/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
246
|
-
orionis/services/log/contracts/log_service.py,sha256=
|
|
246
|
+
orionis/services/log/contracts/log_service.py,sha256=M8JLyb0roDfkxkA5y1T3ugs3BTEtalbKV-LbzZ5B5Es,1699
|
|
247
247
|
orionis/services/log/exceptions/__init__.py,sha256=PPn_LBV3U-0Yi69ZLDQmlkbmlL1iLTleLw-s88Ipg9o,84
|
|
248
248
|
orionis/services/log/exceptions/runtime.py,sha256=LnaK0w0WlgxtZ9Zjn9RYIgp6fbQZmXZ_1fy9dkuA2jQ,468
|
|
249
249
|
orionis/services/log/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
250
|
-
orionis/services/log/handlers/filename.py,sha256=
|
|
250
|
+
orionis/services/log/handlers/filename.py,sha256=XKkq4Gq7N2m8F3xtyUIevTQLMaYSLJ3wC04Irs45VcE,2481
|
|
251
251
|
orionis/services/log/handlers/size_rotating.py,sha256=SLg7r-XW1NWyVxN8wJxeI8jhypzdXw_jq2zg5uy3iaQ,1131
|
|
252
252
|
orionis/services/log/handlers/timed_rotating.py,sha256=UJicPwHcIVl2FPRPjuiKwH3-zuiPG1YV7UYLLMPm4To,1128
|
|
253
253
|
orionis/services/paths/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
254
|
-
orionis/services/paths/resolver.py,sha256=
|
|
254
|
+
orionis/services/paths/resolver.py,sha256=6XPQ4D2P-8teg_lJAC4Ju_bAxbkb5rjoR3D-CaNmYAQ,3097
|
|
255
255
|
orionis/services/paths/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
256
|
-
orionis/services/paths/contracts/resolver.py,sha256
|
|
256
|
+
orionis/services/paths/contracts/resolver.py,sha256=3RFi2mlwqSwknYvZCnyKVcTIUEhb7k21oTs9gSP3m3U,1144
|
|
257
257
|
orionis/services/paths/exceptions/__init__.py,sha256=r5b4D4XWNK07zLtqaXBk_PNYszScqbp_8kUN37cOk4E,184
|
|
258
258
|
orionis/services/paths/exceptions/exception.py,sha256=cK-TbUT02X2lvbAP4yFdfHx4S45wBOcYl3_tiWd67UM,472
|
|
259
259
|
orionis/services/paths/exceptions/file.py,sha256=bsK0QoXwRFyDeHvITxwmgaBuwiO2eoRUhRzNizmX1No,475
|
|
@@ -341,15 +341,16 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
|
|
|
341
341
|
orionis/test/validators/workers.py,sha256=HcZ3cnrk6u7cvM1xZpn_lsglHAq69_jx9RcTSvLrdb0,1204
|
|
342
342
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
343
|
orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
|
|
344
|
-
orionis-0.
|
|
344
|
+
orionis-0.438.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
|
345
345
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
346
|
tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
|
-
tests/container/test_container.py,sha256=asv8TkkupVoex6SWod74NBl4dSs7wb9mLmu_glNdNy8,14815
|
|
348
|
-
tests/container/test_singleton.py,sha256=GkwFaLtRvOQCNMpaCXfQiPu6tJWRm3gkDaJ0vzQn1ko,4689
|
|
349
|
-
tests/container/test_thread_safety.py,sha256=CxEMZRDHapJSX73oDrZBu2gxGJhFiBTo56pl0FzQbzA,3722
|
|
350
347
|
tests/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
348
|
tests/container/context/test_manager.py,sha256=QfzhzkK5LFmtI7AEE-dzceBROTo7VNnQfL3EGgYqK64,1354
|
|
352
349
|
tests/container/context/test_scope.py,sha256=2ykGAmey5xu3cXASseIiOHosJ4QwABbQqRU3_WahO8c,1221
|
|
350
|
+
tests/container/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
|
+
tests/container/core/test_container.py,sha256=asv8TkkupVoex6SWod74NBl4dSs7wb9mLmu_glNdNy8,14815
|
|
352
|
+
tests/container/core/test_singleton.py,sha256=GkwFaLtRvOQCNMpaCXfQiPu6tJWRm3gkDaJ0vzQn1ko,4689
|
|
353
|
+
tests/container/core/test_thread_safety.py,sha256=CxEMZRDHapJSX73oDrZBu2gxGJhFiBTo56pl0FzQbzA,3722
|
|
353
354
|
tests/container/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
355
|
tests/container/entities/test_binding.py,sha256=CFiBGlOeQKK4ielkj1JqxOWJSqrsi2VFIE7nE5R6ykU,9709
|
|
355
356
|
tests/container/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -357,8 +358,8 @@ tests/container/enums/test_lifetimes.py,sha256=JFb4q1rgo10C5ibQ6LS-776NevxCMNLSq
|
|
|
357
358
|
tests/container/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
359
|
tests/container/facades/test_facade.py,sha256=aCy0S6YaaiswGoodJEAhNkqJrMaEQL-CcWh2AgXMvvQ,2938
|
|
359
360
|
tests/container/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
|
-
tests/container/mocks/mock_complex_classes.py,sha256=
|
|
361
|
-
tests/container/mocks/mock_simple_classes.py,sha256=
|
|
361
|
+
tests/container/mocks/mock_complex_classes.py,sha256=YkC8tgDHU0YVEkIeUPd39gp3zkGLpFObQKzjuxatqro,20307
|
|
362
|
+
tests/container/mocks/mock_simple_classes.py,sha256=bzKbmwOD-RBTT8GVN_W53ufGEWpjppe4g5mX6CI5Yk0,2317
|
|
362
363
|
tests/container/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
363
364
|
tests/container/providers/test_providers.py,sha256=qGh2vtrLYp_S7u3U64I22Fzr86NsDZw0tXtJioSDdms,2149
|
|
364
365
|
tests/container/resolver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -371,7 +372,7 @@ tests/container/validators/test_is_concrete_class.py,sha256=bD8F_fbeWLf61I-7sCea
|
|
|
371
372
|
tests/container/validators/test_is_instance.py,sha256=skRLexi-31IxJrW0nSYwTW84iqXvi0IVqxHm0X-YfC0,5255
|
|
372
373
|
tests/container/validators/test_is_not_subclass.py,sha256=1OCPtCRuysm7OKL6XhuXJPZQPumtZZqfoiYtC4HzNFA,1983
|
|
373
374
|
tests/container/validators/test_is_subclass.py,sha256=0Uc8uIR69ZX7G5Nrex0LMQXrueTdncdDxfQoila3h3U,5834
|
|
374
|
-
tests/container/validators/test_is_valid_alias.py,sha256=
|
|
375
|
+
tests/container/validators/test_is_valid_alias.py,sha256=NA9QbIEh7n2_0GeVTMCppZG4_3ya4QrcvGI_lw1iJA8,5658
|
|
375
376
|
tests/container/validators/test_lifetime.py,sha256=5PequjXAcIcp0Q4TIki7THSU31XftGpI0u1mVGqHmpU,4692
|
|
376
377
|
tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
377
378
|
tests/example/test_example.py,sha256=XJEcsro3vCO5m4zvMiWUGphvd0C7oIkBtUfQgTDsdUU,25568
|
|
@@ -388,7 +389,7 @@ tests/foundation/config/cache/test_foundation_config_cache_stores.py,sha256=ToDx
|
|
|
388
389
|
tests/foundation/config/cors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
390
|
tests/foundation/config/cors/test_foundation_config_cors.py,sha256=0B19I4g5TRp9vQu79vcteeIsjbBpiIoE6Mxslx5d9os,6721
|
|
390
391
|
tests/foundation/config/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
391
|
-
tests/foundation/config/database/test_foundation_config_database.py,sha256=
|
|
392
|
+
tests/foundation/config/database/test_foundation_config_database.py,sha256=QK4wFR0igx84v8SQ6B4pIMTDqfi7ax0DNYZHPvSQDCA,5391
|
|
392
393
|
tests/foundation/config/database/test_foundation_config_database_connections.py,sha256=sQ5b2rwmhdMk44oZOx4Hb6EGW_3DW3dnDUtTKu0QSWA,6977
|
|
393
394
|
tests/foundation/config/database/test_foundation_config_database_mysql.py,sha256=200U6fL9XysUJ7tynSCKcWdRPEd7Fh4TP-lfSE2wMzY,12432
|
|
394
395
|
tests/foundation/config/database/test_foundation_config_database_oracle.py,sha256=zhWuAFPKW5EQtTmfIunqo8mKjcdqbLy-nnSiy4x6lS4,10413
|
|
@@ -396,18 +397,18 @@ tests/foundation/config/database/test_foundation_config_database_pgsql.py,sha256
|
|
|
396
397
|
tests/foundation/config/database/test_foundation_config_database_sqlite.py,sha256=oxb0kyENsRHNiw5NwqYicB-URM43j0jTlL5leiPBm8Y,7362
|
|
397
398
|
tests/foundation/config/filesystems/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
398
399
|
tests/foundation/config/filesystems/test_foundation_config_filesystems.py,sha256=_XYpbESjUwX-LmLv2Ik4dPc-32KEiaa7_Iz753dXz-E,5278
|
|
399
|
-
tests/foundation/config/filesystems/test_foundation_config_filesystems_aws.py,sha256=
|
|
400
|
+
tests/foundation/config/filesystems/test_foundation_config_filesystems_aws.py,sha256=eYi9cm1-v11nZwtLOf1KuSWg5M4LwuSiJ84ZklT9O_M,6528
|
|
400
401
|
tests/foundation/config/filesystems/test_foundation_config_filesystems_disks.py,sha256=lG4bvb0kAcGQbwwtDzKPnW0jZG7Aniw52A4m-3vaL4Q,6474
|
|
401
402
|
tests/foundation/config/filesystems/test_foundation_config_filesystems_local.py,sha256=X10AQjmlNB2sty34hXOkTDcMcZDraF-x1Kw6X7NxcBc,4296
|
|
402
|
-
tests/foundation/config/filesystems/test_foundation_config_filesystems_public.py,sha256=
|
|
403
|
+
tests/foundation/config/filesystems/test_foundation_config_filesystems_public.py,sha256=9lScPcJUq9P9zMl0h2jvuMF3lCMfhNeW-bTeaW5Suas,5662
|
|
403
404
|
tests/foundation/config/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
404
405
|
tests/foundation/config/logging/test_foundation_config_logging.py,sha256=vCYAp8qe6SOo1VJQcb1_R5JMQe00HCl78D4E-43Dxm8,3183
|
|
405
|
-
tests/foundation/config/logging/test_foundation_config_logging_channels.py,sha256=
|
|
406
|
+
tests/foundation/config/logging/test_foundation_config_logging_channels.py,sha256=rLK7YFNr07ZGNoLgDWEM1trFJw7xUB8z0ezpzshKwm0,9625
|
|
406
407
|
tests/foundation/config/logging/test_foundation_config_logging_chunked.py,sha256=TL-pLde4LAvHTcj01RT_Sa_OkwbQHzKrAH-9UGKVaMY,7021
|
|
407
408
|
tests/foundation/config/logging/test_foundation_config_logging_daily.py,sha256=Sf5vG6WL558N41dukprA5iiT1LoBXi1ak19QGSZpAsI,7076
|
|
408
409
|
tests/foundation/config/logging/test_foundation_config_logging_hourly.py,sha256=zjDDXykck_gH9TLPcoESwgjUd-6qZJDjjFwD_Xz2Yak,6765
|
|
409
|
-
tests/foundation/config/logging/test_foundation_config_logging_monthly.py,sha256=
|
|
410
|
-
tests/foundation/config/logging/test_foundation_config_logging_stack.py,sha256=
|
|
410
|
+
tests/foundation/config/logging/test_foundation_config_logging_monthly.py,sha256=ih7SOufbUwMqhr7XI2PKcBSWF0b6TEGezXQB_1bya4g,7143
|
|
411
|
+
tests/foundation/config/logging/test_foundation_config_logging_stack.py,sha256=lRp-k7MuYiphfRJPDSJW8OXABmeblEufNgObJ_qDhEk,6045
|
|
411
412
|
tests/foundation/config/logging/test_foundation_config_logging_weekly.py,sha256=g-x3VCN_L1jrrSrsW1UkBWYpKeuK5ASAAzhlKQJDkvQ,7697
|
|
412
413
|
tests/foundation/config/mail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
413
414
|
tests/foundation/config/mail/test_foundation_config_mail.py,sha256=xR3HY218J7vecdM1h0TaAfX4DGl90PUgmktlylT_4S8,4209
|
|
@@ -419,11 +420,11 @@ tests/foundation/config/queue/test_foundation_config_queue.py,sha256=1qeov00ibVD
|
|
|
419
420
|
tests/foundation/config/queue/test_foundation_config_queue_brokers.py,sha256=FezIF7aRFNi_bVa45kfbxO2Cf0DomFNuoybM64S88aw,2592
|
|
420
421
|
tests/foundation/config/queue/test_foundation_config_queue_database.py,sha256=qLYXjG8YVIp_NWYcZA9A2GmOdjFyt3snq9X1cdIok8M,4830
|
|
421
422
|
tests/foundation/config/root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
422
|
-
tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=
|
|
423
|
+
tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=_0jH-vuDH_4IEvGK1WSlZFTRpA6TIGbeofXjl9Kjz5U,3944
|
|
423
424
|
tests/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
|
-
tests/foundation/config/session/test_foundation_config_session.py,sha256=
|
|
425
|
+
tests/foundation/config/session/test_foundation_config_session.py,sha256=itTV_OxTsUUsS4AVvcrNntkuEmMPmEO6YZLjVLRwP50,7380
|
|
425
426
|
tests/foundation/config/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
426
|
-
tests/foundation/config/startup/test_foundation_config_startup.py,sha256=
|
|
427
|
+
tests/foundation/config/startup/test_foundation_config_startup.py,sha256=aXbwLHWxZ592gflr9LDs145AJbNAe7DQ80a8egJCZ6g,8054
|
|
427
428
|
tests/foundation/config/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
429
|
tests/foundation/config/testing/test_foundation_config_testing.py,sha256=YsXTVxq-S1KVlLK5fe2qL0CpQrulaLmy6sMSm3oPhbA,8237
|
|
429
430
|
tests/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -437,13 +438,13 @@ tests/services/environment/test_services_environment.py,sha256=20lKZF1hON5hUPiTd
|
|
|
437
438
|
tests/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
438
439
|
tests/services/introspection/test_reflection.py,sha256=AaBi0zi7GphOqnagV8N48GZHUuoT7743Pw3oc6_As6I,13700
|
|
439
440
|
tests/services/introspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
440
|
-
tests/services/introspection/dependencies/test_reflect_dependencies.py,sha256=
|
|
441
|
+
tests/services/introspection/dependencies/test_reflect_dependencies.py,sha256=xqkIdghxplDN8_XWlUsAiGtFNYaMDTLHn_N_HUygHDw,8408
|
|
441
442
|
tests/services/introspection/dependencies/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
442
443
|
tests/services/introspection/dependencies/mocks/mock_user.py,sha256=RxATxe0-Vm4HfX5jKz9Tny42E2fmrdtEN6ZEntbqRL8,912
|
|
443
444
|
tests/services/introspection/dependencies/mocks/mock_user_controller.py,sha256=Hu4Xys5HENpKaLqsEAjtp_C-M9y6ozmJ_-qmj3ZvK6c,1214
|
|
444
445
|
tests/services/introspection/dependencies/mocks/mock_users_permissions.py,sha256=oENXbS2qmQUudYSmnhB8fgHBqXZdbplplB-Y2nbx4hw,1388
|
|
445
446
|
tests/services/introspection/reflection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
446
|
-
tests/services/introspection/reflection/test_reflection_abstract.py,sha256=
|
|
447
|
+
tests/services/introspection/reflection/test_reflection_abstract.py,sha256=x-ifzldSX-1fpBHKQ8qiYLiRMrKHINEsUGhQRrXXCMc,40763
|
|
447
448
|
tests/services/introspection/reflection/test_reflection_callable.py,sha256=lc0tnFMkBqyF5BtaGEtsMzSB3K0rfX4jDSc-rzmtN7o,6846
|
|
448
449
|
tests/services/introspection/reflection/test_reflection_concrete.py,sha256=nG9FBwvd7_E6skZBPRT19lifjKfBSCRx-Sc16ZtZnOI,44650
|
|
449
450
|
tests/services/introspection/reflection/test_reflection_instance.py,sha256=k4V190KLob-rBILK7S6zU5VktqW1IOTNSYZNXNxF4p4,46306
|
|
@@ -486,8 +487,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
486
487
|
tests/testing/validators/test_testing_validators.py,sha256=WPo5GxTP6xE-Dw3X1vZoqOMpb6HhokjNSbgDsDRDvy4,16588
|
|
487
488
|
tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
488
489
|
tests/testing/view/test_render.py,sha256=tnnMBwS0iKUIbogLvu-7Rii50G6Koddp3XT4wgdFEYM,1050
|
|
489
|
-
orionis-0.
|
|
490
|
-
orionis-0.
|
|
491
|
-
orionis-0.
|
|
492
|
-
orionis-0.
|
|
493
|
-
orionis-0.
|
|
490
|
+
orionis-0.438.0.dist-info/METADATA,sha256=9e7lBF63ZukLLghQnkME2B-Qz6ZJMdtME1GKNEHfr0w,4772
|
|
491
|
+
orionis-0.438.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
492
|
+
orionis-0.438.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
|
493
|
+
orionis-0.438.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
494
|
+
orionis-0.438.0.dist-info/RECORD,,
|
|
File without changes
|