orionis 0.365.0__py3-none-any.whl → 0.367.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 (79) hide show
  1. orionis/{console → _console}/base/command.py +2 -2
  2. orionis/{console → _console}/commands/cache_clear.py +2 -2
  3. orionis/{console → _console}/commands/help.py +2 -2
  4. orionis/{console → _console}/commands/schedule_work.py +2 -2
  5. orionis/{console → _console}/commands/version.py +2 -2
  6. orionis/_console/output/console.py +587 -0
  7. orionis/{console → _console}/output/executor.py +1 -1
  8. orionis/{console → _console}/output/progress_bar.py +1 -1
  9. orionis/_contracts/console/base/command.py +1 -1
  10. orionis/_foundation/console/command_bootstrapper.py +1 -1
  11. orionis/_services/commands/reactor_commands_service.py +6 -6
  12. orionis/_services/commands/scheduler_service.py +1 -1
  13. orionis/console/dumper/contracts/dump.py +35 -0
  14. orionis/console/dumper/dump.py +627 -0
  15. orionis/console/dynamic/progress_bar.py +100 -0
  16. orionis/console/output/console.py +55 -89
  17. orionis/console/output/contracts/console.py +453 -0
  18. orionis/console/output/enums/__init__.py +5 -0
  19. orionis/foundation/application.py +2 -1
  20. orionis/foundation/providers/console_provider.py +21 -0
  21. orionis/foundation/providers/dumper_provider.py +21 -0
  22. orionis/foundation/providers/path_resolver_provider.py +21 -0
  23. orionis/foundation/providers/progress_bar_provider.py +21 -0
  24. orionis/foundation/providers/workers_provider.py +21 -0
  25. orionis/metadata/framework.py +1 -1
  26. orionis/services/environment/core/dot_env.py +1 -1
  27. orionis/services/paths/contracts/resolver.py +4 -4
  28. orionis/services/paths/resolver.py +11 -0
  29. orionis/services/system/contracts/workers.py +12 -0
  30. orionis/services/system/workers.py +11 -0
  31. orionis/support/facades/console.py +15 -0
  32. orionis/support/facades/dumper.py +15 -0
  33. orionis/support/facades/path_resolver.py +15 -0
  34. orionis/support/facades/progress_bar.py +15 -0
  35. orionis/support/facades/workers.py +15 -0
  36. orionis/support/formatter/exceptions/__init__.py +0 -0
  37. orionis/support/formatter/exceptions/contracts/__init__.py +0 -0
  38. orionis/{services → support}/formatter/exceptions/parser.py +1 -1
  39. orionis/{services → support}/formatter/serializer.py +1 -1
  40. orionis/support/patterns/__init__.py +0 -0
  41. orionis/support/patterns/singleton/__init__.py +5 -0
  42. orionis/test/output/dumper.py +2 -2
  43. {orionis-0.365.0.dist-info → orionis-0.367.0.dist-info}/METADATA +1 -1
  44. {orionis-0.365.0.dist-info → orionis-0.367.0.dist-info}/RECORD +79 -55
  45. tests/support/parsers/__init__.py +0 -0
  46. tests/support/parsers/mocks/__init__.py +0 -0
  47. tests/{services → support}/parsers/test_services_parser_exceptions.py +2 -2
  48. tests/support/patterns/__init__.py +0 -0
  49. tests/support/patterns/singleton/__init__.py +0 -0
  50. tests/{patterns → support/patterns}/singleton/test_patterns_singleton.py +1 -1
  51. /orionis/{console/base → _console}/__init__.py +0 -0
  52. /orionis/{console/commands → _console/base}/__init__.py +0 -0
  53. /orionis/{console → _console}/command_filter.py +0 -0
  54. /orionis/{console/exceptions → _console/commands}/__init__.py +0 -0
  55. /orionis/{patterns → _console/dumper}/__init__.py +0 -0
  56. /orionis/{console → _console}/dumper/dump_die.py +0 -0
  57. /orionis/{patterns/singleton → _console/exceptions}/__init__.py +0 -0
  58. /orionis/{console → _console}/exceptions/cli-orionis-value-error.py +0 -0
  59. /orionis/{console → _console}/exceptions/cli_exception.py +0 -0
  60. /orionis/{console → _console}/exceptions/cli_runtime_error.py +0 -0
  61. /orionis/{console → _console}/exceptions/cli_schedule_exception.py +0 -0
  62. /orionis/{console → _console}/kernel.py +0 -0
  63. /orionis/{services/formatter → _console/output}/__init__.py +0 -0
  64. /orionis/{console → _console}/parser.py +0 -0
  65. /orionis/{services/formatter/exceptions → console/dumper/contracts}/__init__.py +0 -0
  66. /orionis/{services/formatter/exceptions/contracts → console/dynamic}/__init__.py +0 -0
  67. {tests/patterns → orionis/console/dynamic/contracts}/__init__.py +0 -0
  68. /orionis/{_contracts/console/output → console/dynamic/contracts}/progress_bar.py +0 -0
  69. {tests/patterns/singleton → orionis/console/output/contracts}/__init__.py +0 -0
  70. /orionis/console/output/{styles.py → enums/styles.py} +0 -0
  71. {tests/services/parsers → orionis/support/facades}/__init__.py +0 -0
  72. {tests/services/parsers/mocks → orionis/support/formatter}/__init__.py +0 -0
  73. /orionis/{services → support}/formatter/exceptions/contracts/parser.py +0 -0
  74. /orionis/{patterns → support/patterns}/singleton/meta.py +0 -0
  75. {orionis-0.365.0.dist-info → orionis-0.367.0.dist-info}/WHEEL +0 -0
  76. {orionis-0.365.0.dist-info → orionis-0.367.0.dist-info}/licenses/LICENCE +0 -0
  77. {orionis-0.365.0.dist-info → orionis-0.367.0.dist-info}/top_level.txt +0 -0
  78. {orionis-0.365.0.dist-info → orionis-0.367.0.dist-info}/zip-safe +0 -0
  79. /tests/{services → support}/parsers/mocks/mock_custom_error.py +0 -0
@@ -0,0 +1,15 @@
1
+ from orionis.container.facades.facade import Facade
2
+
3
+ class Dumper(Facade):
4
+
5
+ @classmethod
6
+ def getFacadeAccessor(cls) -> str:
7
+ """
8
+ Get the service container binding key for the dumper component.
9
+
10
+ Returns
11
+ -------
12
+ str
13
+ The service container binding key.
14
+ """
15
+ return "core.orionis.dumper"
@@ -0,0 +1,15 @@
1
+ from orionis.container.facades.facade import Facade
2
+
3
+ class PathResolver(Facade):
4
+
5
+ @classmethod
6
+ def getFacadeAccessor(cls):
7
+ """
8
+ Get the service container binding key for the dumper component.
9
+
10
+ Returns
11
+ -------
12
+ str
13
+ The service container binding key.
14
+ """
15
+ return "core.orionis.path_resolver"
@@ -0,0 +1,15 @@
1
+ from orionis.container.facades.facade import Facade
2
+
3
+ class ProgressBar(Facade):
4
+
5
+ @classmethod
6
+ def getFacadeAccessor(cls):
7
+ """
8
+ Get the service container binding key for the dumper component.
9
+
10
+ Returns
11
+ -------
12
+ str
13
+ The service container binding key.
14
+ """
15
+ return "core.orionis.progress_bar"
@@ -0,0 +1,15 @@
1
+ from orionis.container.facades.facade import Facade
2
+
3
+ class ProgressBar(Facade):
4
+
5
+ @classmethod
6
+ def getFacadeAccessor(cls):
7
+ """
8
+ Get the service container binding key for the dumper component.
9
+
10
+ Returns
11
+ -------
12
+ str
13
+ The service container binding key.
14
+ """
15
+ return "core.orionis.workers"
File without changes
@@ -1,6 +1,6 @@
1
1
  import traceback
2
2
  from typing import Any, Dict, List, Optional, Union
3
- from orionis.services.formatter.exceptions.contracts.parser import IExceptionParser
3
+ from orionis.support.formatter.exceptions.contracts.parser import IExceptionParser
4
4
 
5
5
  class ExceptionParser(IExceptionParser):
6
6
  """
@@ -1,4 +1,4 @@
1
- from orionis.services.formatter.exceptions.parser import ExceptionParser
1
+ from orionis.support.formatter.exceptions.parser import ExceptionParser
2
2
 
3
3
  class Parser:
4
4
 
File without changes
@@ -0,0 +1,5 @@
1
+ from .meta import Singleton
2
+
3
+ __all__ = [
4
+ "Singleton"
5
+ ]
@@ -71,7 +71,7 @@ class TestDumper(ITestDumper):
71
71
  original_stderr = sys.stderr
72
72
 
73
73
  try:
74
- from orionis.console.dumper.dump_die import Debug
74
+ from orionis._console.dumper.dump_die import Debug
75
75
 
76
76
  sys.stdout = sys.__stdout__
77
77
  sys.stderr = sys.__stderr__
@@ -110,7 +110,7 @@ class TestDumper(ITestDumper):
110
110
  original_stderr = sys.stderr
111
111
 
112
112
  try:
113
- from orionis.console.dumper.dump_die import Debug
113
+ from orionis._console.dumper.dump_die import Debug
114
114
 
115
115
  sys.stdout = sys.__stdout__
116
116
  sys.stderr = sys.__stderr__
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.365.0
3
+ Version: 0.367.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,5 +1,27 @@
1
1
  orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  orionis/unittesting.py,sha256=_ukXPOOQTaaBxmWScsCO0FdlEC0uYFIxlytBXQpl1Bk,2030
3
+ orionis/_console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ orionis/_console/command_filter.py,sha256=bn0fcWfQg13DrQBaV4NopNxdP-6up0G54Qmhg7r_BKA,1211
5
+ orionis/_console/kernel.py,sha256=M4Zc9x-1hrQP7Dq6Ons5UnGoq73XV1Fwa9cwY7zqWbw,883
6
+ orionis/_console/parser.py,sha256=s-e7I4vr2rwg2g8eesvrOnp1jcEiLlBJN4wLh3JyKUE,5578
7
+ orionis/_console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ orionis/_console/base/command.py,sha256=J1BluZaVOeWwwm7NkvFcQqPjzZe_aYXW3icUJA38mZU,12320
9
+ orionis/_console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ orionis/_console/commands/cache_clear.py,sha256=TNrAyB84QZQv_etn7srt_TPE9j6fLNkqymC-1jZ9XEI,2892
11
+ orionis/_console/commands/help.py,sha256=KWHemD2j8YZdX-J6GYL3CNcoByb3XAgxGFzZRZsTKrk,2538
12
+ orionis/_console/commands/schedule_work.py,sha256=IcraCM_jvEXGyQpMUz6qWA2uW4ILhEKqOs5UXLBNXGY,2042
13
+ orionis/_console/commands/version.py,sha256=r7I782jVS_1kbxAVfViGGj1m4GoDJtrb_V_L4MKYGfU,1051
14
+ orionis/_console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ orionis/_console/dumper/dump_die.py,sha256=AsKrcuPwVgTT3UA8DxqFCzuZsGkaGm7bwkm-pr9XlaE,17089
16
+ orionis/_console/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ orionis/_console/exceptions/cli-orionis-value-error.py,sha256=RQP0HRwxDG8hxFOT1kUoZ1Ab1CZ1KLoSIl5yqlmgG4M,1147
18
+ orionis/_console/exceptions/cli_exception.py,sha256=HsZ_vSeNiJWQ0gznVFNcIdhM0Bj_vkSRVBJs0wMjEKY,1141
19
+ orionis/_console/exceptions/cli_runtime_error.py,sha256=DaCDGu6mXBk1LIzc7cwRROw1mePAigPNASjNZHhUSBE,1154
20
+ orionis/_console/exceptions/cli_schedule_exception.py,sha256=IBbXb_5zi02pyo1laHdjGn6FYZK7WWRp4j2fkZOCT6I,1161
21
+ orionis/_console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ orionis/_console/output/console.py,sha256=6KlvtE4ys6jJU9yLjAVYIHWDmHfWcOHIn_QGcHiJgq0,18894
23
+ orionis/_console/output/executor.py,sha256=sk1l_SmTDE9ZDCUQ95XCwfx7HfBNJFOVs7Kjez9wBSc,3358
24
+ orionis/_console/output/progress_bar.py,sha256=EX1d_sw9JRlE2gWu24bBBRpP2mWfgO_P9S6ztvWuZ2Q,3088
3
25
  orionis/_contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
26
  orionis/_contracts/application.py,sha256=ltuDA1mN5P73l89jJto_A96ePJWE02OZ_B2NOPpfeWs,1061
5
27
  orionis/_contracts/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -10,11 +32,10 @@ orionis/_contracts/console/kernel.py,sha256=GtiGlWe7EQ9aeChHpQ-GlIJlJ5tEqpZYYkjN
10
32
  orionis/_contracts/console/parser.py,sha256=2iu8mHscZmb2BcX6-6Fy_NVvqN5Zj1YEk2fWOf30XT8,2080
11
33
  orionis/_contracts/console/task_manager.py,sha256=iL5EphyFAJ6zNywCF3tkblQsoieZtW_7E9ETZbpEhYs,1199
12
34
  orionis/_contracts/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- orionis/_contracts/console/base/command.py,sha256=cHYHsg3JZ224AwE5NEC86Ml70ErjmNlfSEGyauh9rbc,10851
35
+ orionis/_contracts/console/base/command.py,sha256=sC0YLjmaFOxWpreJ26RydijFyTsJCBi6u3IldowHl5Q,10852
14
36
  orionis/_contracts/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
37
  orionis/_contracts/console/output/console.py,sha256=jISa955ZVOUuJUdm7UCo_r_Ft1j9vG7Tg5j5aDw3Bvc,10552
16
38
  orionis/_contracts/console/output/executor.py,sha256=MGMTTPSwF8dgCjHD3A4CKtYDaCcD-KU28dorC61Q04k,1411
17
- orionis/_contracts/console/output/progress_bar.py,sha256=sOkQzQsliFemqZHMyzs4fWhNJfXDTk5KH3aExReetSE,1760
18
39
  orionis/_contracts/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
40
  orionis/_contracts/facades/facade.py,sha256=FqCnNBP6vKw94rMDr-fRoAyIJp83ZxC1iLsiubrH3ps,1507
20
41
  orionis/_contracts/facades/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -58,7 +79,7 @@ orionis/_contracts/support/exception_parse.py,sha256=P7yh5Q3KIcRPAZeg6190XbOSvu5
58
79
  orionis/_contracts/support/reflection.py,sha256=Ht5_FsFbCb-APRXX3HdsfKl3cDZU8DyXGXPWKTn05uQ,8429
59
80
  orionis/_foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
81
  orionis/_foundation/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
- orionis/_foundation/console/command_bootstrapper.py,sha256=y8gGKzTgbHHzUFFC6jwULx1zmZbNrlOKs8Org6Z1iNY,7039
82
+ orionis/_foundation/console/command_bootstrapper.py,sha256=mBVW_TWnpmmv955uqPzCmcuqzwLlD_bgV4vWfThx0IQ,7040
62
83
  orionis/_foundation/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
84
  orionis/_foundation/environment/environment_bootstrapper.py,sha256=Rms4oF8KpAQp2IBrK6msLma1B3bGY5pyM-7AAOUGL_g,2762
64
85
  orionis/_foundation/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -70,33 +91,25 @@ orionis/_foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
70
91
  orionis/_foundation/providers/service_providers_bootstrapper.py,sha256=V7Yd4_GCVW83jLFMsGUGfHNRsgfEnDywgAUkH50T270,4558
71
92
  orionis/_services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
93
  orionis/_services/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- orionis/_services/commands/reactor_commands_service.py,sha256=cyARBmLVox8v-YHjo7XtbReJ00wJ4Oi3PMR2yX0duTM,6172
74
- orionis/_services/commands/scheduler_service.py,sha256=oUaSbX-CRnTlDWRqRkwQCFY0SGgxM9dYGXpZkEkEPuc,22466
94
+ orionis/_services/commands/reactor_commands_service.py,sha256=hBxX242EsSRKOkNMhiyXzEbFiUXzPakMi8ZfxXBR2kA,6178
95
+ orionis/_services/commands/scheduler_service.py,sha256=71iH4ZArJ2D9dfbQPSNP_S3g41Cc6gIzEVJdvaOUfeY,22467
75
96
  orionis/_services/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
97
  orionis/_services/config/config_service.py,sha256=iS5ftGd7VWCpOt9M5_rNNLHsCZaDcI-F8R2r3CCTM8g,2106
77
98
  orionis/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
- orionis/console/command_filter.py,sha256=bn0fcWfQg13DrQBaV4NopNxdP-6up0G54Qmhg7r_BKA,1211
79
- orionis/console/kernel.py,sha256=M4Zc9x-1hrQP7Dq6Ons5UnGoq73XV1Fwa9cwY7zqWbw,883
80
- orionis/console/parser.py,sha256=s-e7I4vr2rwg2g8eesvrOnp1jcEiLlBJN4wLh3JyKUE,5578
81
- orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
- orionis/console/base/command.py,sha256=ZAP-KdbTqgDU4_3MKb6OllxzoKRLNCh1xqvulk6VfdU,12318
83
- orionis/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
- orionis/console/commands/cache_clear.py,sha256=FBCnJnECdxoWFxd8EXKd7lNEddIzz7NdkPYLnnpELbw,2890
85
- orionis/console/commands/help.py,sha256=EX1ZzKdSlZi95l6WMDB7HpQc7paQaYGNksVbdysLKp8,2536
86
- orionis/console/commands/schedule_work.py,sha256=d6E_G_cgVqDagjZJA7T2Nk5PEjS7-710XTOL2q91mXY,2040
87
- orionis/console/commands/version.py,sha256=A3qvjFl-TMBLDJxsWZhbcojcZa2p6owiVQvmBx0pFXU,1049
88
99
  orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
- orionis/console/dumper/dump_die.py,sha256=AsKrcuPwVgTT3UA8DxqFCzuZsGkaGm7bwkm-pr9XlaE,17089
90
- orionis/console/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
- orionis/console/exceptions/cli-orionis-value-error.py,sha256=RQP0HRwxDG8hxFOT1kUoZ1Ab1CZ1KLoSIl5yqlmgG4M,1147
92
- orionis/console/exceptions/cli_exception.py,sha256=HsZ_vSeNiJWQ0gznVFNcIdhM0Bj_vkSRVBJs0wMjEKY,1141
93
- orionis/console/exceptions/cli_runtime_error.py,sha256=DaCDGu6mXBk1LIzc7cwRROw1mePAigPNASjNZHhUSBE,1154
94
- orionis/console/exceptions/cli_schedule_exception.py,sha256=IBbXb_5zi02pyo1laHdjGn6FYZK7WWRp4j2fkZOCT6I,1161
100
+ orionis/console/dumper/dump.py,sha256=CATERiQ6XuIrKQsDaWcVxzTtlAJI9qLJX44fQxEX8ws,22443
101
+ orionis/console/dumper/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
+ orionis/console/dumper/contracts/dump.py,sha256=QF4_5pTeOuzmb-pFHiR66gj2pG0fL4U4QepZtZGpEuE,1057
103
+ orionis/console/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
+ orionis/console/dynamic/progress_bar.py,sha256=ZoBTpKa-3kef5dD58XF89dq4fjChOWUuJdNUS0SygFA,3086
105
+ orionis/console/dynamic/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
+ orionis/console/dynamic/contracts/progress_bar.py,sha256=sOkQzQsliFemqZHMyzs4fWhNJfXDTk5KH3aExReetSE,1760
95
107
  orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
- orionis/console/output/console.py,sha256=VMmd11WcMuxhMG0NyEw3PpkP7bOPQ3aC9aTYsNbvTyI,18889
97
- orionis/console/output/executor.py,sha256=bdvkzW2-buy0BPpy2r5qUGrRFW2Ay6k-5rSeHb0gQ3o,3352
98
- orionis/console/output/progress_bar.py,sha256=vFy582z6VJS46LV6tuyrmr9qvdVeTEtw3hyNcEHezeg,3088
99
- orionis/console/output/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
108
+ orionis/console/output/console.py,sha256=HO_s-3z0nEglp0euodYJ4-p5FpSHZoMGJnfwwbo-Xhs,18376
109
+ orionis/console/output/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
110
+ orionis/console/output/contracts/console.py,sha256=F2c1jC_O61o7jDiXwAeZAOEodEhuCppMbx_yDJvm6rU,11915
111
+ orionis/console/output/enums/__init__.py,sha256=LAaAxg-DpArCjf_jqZ0_9s3p8899gntDYkSU_ppTdC8,66
112
+ orionis/console/output/enums/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
100
113
  orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
114
  orionis/container/container.py,sha256=1fGOHN_4M4YAA_6ljGHB669hY6egl_Cyb6L9EZtFK9E,23083
102
115
  orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -131,7 +144,7 @@ orionis/container/validators/is_subclass.py,sha256=4sBaGLoRs8nUhuWjlP0VJqyTwVHYq
131
144
  orionis/container/validators/is_valid_alias.py,sha256=4uAYcq8xov7jZbXnpKpjNkxcZtlTNnL5RRctVPMwJes,1424
132
145
  orionis/container/validators/lifetime.py,sha256=IQ43fDNrxYHMlZH2zlYDJnlkLO_eS4U7Fs3UJgQBidI,1844
133
146
  orionis/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
- orionis/foundation/application.py,sha256=LfWJUIrj7K3B_5mFoTMyAbRgkDFBpq5Y0amE1ejbjYY,4225
147
+ orionis/foundation/application.py,sha256=zzSHzzFwbhK0o8f5-7H_6_4vhIgzIXna1_zxXhMC2v8,4306
135
148
  orionis/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
149
  orionis/foundation/config/startup.py,sha256=zutF-34DkW68bpiTxH9xrmIe1iJdXCF9Y6wueXS6qys,8265
137
150
  orionis/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -225,12 +238,14 @@ orionis/foundation/exceptions/__init__.py,sha256=XtG3MJ_MFNY_dU5mmTyz_N_4QG1jYrc
225
238
  orionis/foundation/exceptions/integrity.py,sha256=mc4pL1UMoYRHEmphnpW2oGk5URhu7DJRREyzHaV-cs8,472
226
239
  orionis/foundation/exceptions/value.py,sha256=hQhXybXEnaa59ba7JxG65jceHt3mnql9MyekF-TChpM,465
227
240
  orionis/foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
+ orionis/foundation/providers/console_provider.py,sha256=pAIklY1QKx2HKjTp7YyJT6KbJPlEEyzWSr79RTFkEK0,700
242
+ orionis/foundation/providers/dumper_provider.py,sha256=mLJDpNNNl4PV8oM_GKBvSxBcfXRxgiBlrA9Qg5WKi0A,689
243
+ orionis/foundation/providers/path_resolver_provider.py,sha256=rXvaVc5sSqmDgRzWJoattAW0ikO_SF3H7WBddVxwmhw,717
244
+ orionis/foundation/providers/progress_bar_provider.py,sha256=75Jr4iEgUOUGl8Di1DioeP5_HRQlR-1lVzPmS96sWjA,737
245
+ orionis/foundation/providers/workers_provider.py,sha256=WWlji3C69_-Y0c42aZDbR_bmcE_qZEh2SaA_cNkCivI,702
228
246
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
- orionis/metadata/framework.py,sha256=LDyCVIAY-b4AUd1N_W51mSJ32uVonnBohhMxvjzXDRw,4960
247
+ orionis/metadata/framework.py,sha256=op40ECQ1mdpzRCwRBpTPfxxK748oM4rBeIjH_9TjRVw,4960
230
248
  orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
231
- orionis/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
- orionis/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
- orionis/patterns/singleton/meta.py,sha256=YN5mSSQeIX_Gh_TK5HD-ms6IYBTRsRcuzoUtpX-9kYY,2134
234
249
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
250
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
251
  orionis/services/asynchrony/coroutines.py,sha256=GkTyv-uHo-MOzwo8akwIS2HDSkTaL3CpnaRPG-4iXUY,2365
@@ -244,7 +259,7 @@ orionis/services/environment/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
244
259
  orionis/services/environment/contracts/env.py,sha256=7lezGxABAG63pEEvzAmHXgr9izBI6TCp05Trx_SRvc4,2054
245
260
  orionis/services/environment/contracts/types.py,sha256=n0USxUblz0Ofbo1ef0hnGHGkuGjSiWk-SBWVPXv33mE,1994
246
261
  orionis/services/environment/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
- orionis/services/environment/core/dot_env.py,sha256=Rz0-T-mCOXWmZaqhjQ6hWeHw3hH6RzpmVVNZH6NYCy4,10154
262
+ orionis/services/environment/core/dot_env.py,sha256=EZZTI-SuwCXgEXXmGOKhAARQIWxUSjYVIhWsMbE3TMI,10157
248
263
  orionis/services/environment/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
264
  orionis/services/environment/dynamic/types.py,sha256=nf7HJjm-1S-BH2YnuBQNNWvb3Aqu-QYPUTfJRgVYZ1Y,18336
250
265
  orionis/services/environment/exceptions/__init__.py,sha256=YwLc8GsB0swlwu9T9Qt2vevaCoq5V2vmPUSlEUAqg2Q,199
@@ -252,12 +267,6 @@ orionis/services/environment/exceptions/exception.py,sha256=NnxWmgoSca7LXi7GLDa9
252
267
  orionis/services/environment/exceptions/value.py,sha256=Pe1qNHRrM9T0AzESN284CzA3GQYxzokfXPMOVqOTlyQ,475
253
268
  orionis/services/environment/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
269
  orionis/services/environment/helpers/functions.py,sha256=OtODfKCwiiJEEI55bWvhrMPN3PhwWTMMqVAeljZxbQk,616
255
- orionis/services/formatter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
- orionis/services/formatter/serializer.py,sha256=JZ_aMIDg4-8VRCF2HmzXJ91NXjh-mWqg2EWZxKoiqC4,523
257
- orionis/services/formatter/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
- orionis/services/formatter/exceptions/parser.py,sha256=wyR-OjNf17ZEKFuaw7IzcZqv-PIqPJJNGa0flQKC5Bs,3637
259
- orionis/services/formatter/exceptions/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
- orionis/services/formatter/exceptions/contracts/parser.py,sha256=HcWN7nJrvD7xLREPKEnBhyG30IkkAB7Bx_hGpcfb0ZE,912
261
270
  orionis/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
262
271
  orionis/services/introspection/reflection.py,sha256=_Wdy8Wtt3RKXAqg9o5rvYa_Hyu-Z4674LKnNVg7u7pU,11467
263
272
  orionis/services/introspection/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -298,21 +307,36 @@ orionis/services/introspection/objects/types.py,sha256=vNKWc2b7K-X7B2X8RCimgAWQq
298
307
  orionis/services/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
308
  orionis/services/log/log_service.py,sha256=jnKIeTxy4p16SfKYYLpJ1p1CqAqpF1BIp7IBSOdSuJY,8295
300
309
  orionis/services/paths/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
- orionis/services/paths/resolver.py,sha256=TZC7tp8zIKqJAOnk03jm7sQz_MX9sgJAJBLSjVA4Bo4,2991
310
+ orionis/services/paths/resolver.py,sha256=9PXTawN3QV142Fhe7C2EqXyAlf984Hc05A_M2cqXAps,3217
302
311
  orionis/services/paths/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
- orionis/services/paths/contracts/resolver.py,sha256=v7uTgByE2nQS2ZM_b1rtMzY6HH03MNKfAYQoTswPf9o,1627
312
+ orionis/services/paths/contracts/resolver.py,sha256=9q68gRniffmJlwDmUGcoV3EVLQAgyHQzfcTEfqawNe8,1599
304
313
  orionis/services/paths/exceptions/__init__.py,sha256=r5b4D4XWNK07zLtqaXBk_PNYszScqbp_8kUN37cOk4E,184
305
314
  orionis/services/paths/exceptions/exception.py,sha256=cK-TbUT02X2lvbAP4yFdfHx4S45wBOcYl3_tiWd67UM,472
306
315
  orionis/services/paths/exceptions/file.py,sha256=bsK0QoXwRFyDeHvITxwmgaBuwiO2eoRUhRzNizmX1No,475
307
316
  orionis/services/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
308
317
  orionis/services/system/imports.py,sha256=5j2Rkf6vMLnCQjqcox4-0y0tZoxgPfv7EP8eruG7vnA,4990
309
- orionis/services/system/workers.py,sha256=1HJCLHEJ7VcQZ4dqs0lYLVafEzvowLRdLvKffV1fewA,1877
318
+ orionis/services/system/workers.py,sha256=QO5IXjH8BXWUlHzH1TiRKt3vn4LZklRI02nSL17hWPo,2199
310
319
  orionis/services/system/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
311
320
  orionis/services/system/contracts/imports.py,sha256=nE2fDS2bDbwltHCmzOsEMhUymYy092zoGX-NOXLE4J4,1167
312
- orionis/services/system/contracts/workers.py,sha256=aZfQlij6mkPM2TcodDai7JYpTFNKL4YFAEj8Bd9Y4nw,707
321
+ orionis/services/system/contracts/workers.py,sha256=plst9CcYqwkEcy-LPdfJbdKPKaeq8hmtWk0B5mlH2wo,1017
313
322
  orionis/services/system/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
323
  orionis/services/system/runtime/imports.py,sha256=eWp_MmrvxWHl-lsNO0M5FC9OsCcY1BXsiJTlPk0cfRU,2550
315
324
  orionis/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
325
+ orionis/support/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
326
+ orionis/support/facades/console.py,sha256=Hx_VGZazpdPDkg1LgcCTzgASq7blzazGHXVNp2uN5w8,372
327
+ orionis/support/facades/dumper.py,sha256=JD0xT11ReLlzTH1O5wdIG1-r9sg1nriJnhtqkLsavW8,370
328
+ orionis/support/facades/path_resolver.py,sha256=-ro3-yxmjKHngf6aOy2dzyeNulsiSJuxu__vJWsRuUA,376
329
+ orionis/support/facades/progress_bar.py,sha256=ZmU7hojRP88PM39BX1fN0_2pTCUhOXdIqyKaQwPoQ-A,374
330
+ orionis/support/facades/workers.py,sha256=P-ppMQOzexbkcLDiGPdIPVA41LRlgNZcW-aB890ujk8,369
331
+ orionis/support/formatter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
+ orionis/support/formatter/serializer.py,sha256=g816osgwYzAzCnduDh2IyHvXx-fEhnVmw8EPZkDT5Ak,522
333
+ orionis/support/formatter/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
334
+ orionis/support/formatter/exceptions/parser.py,sha256=h2it9wN24ned1ogSnd4viRUOJlQgsT-60Z6JIp08YC8,3636
335
+ orionis/support/formatter/exceptions/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
+ orionis/support/formatter/exceptions/contracts/parser.py,sha256=HcWN7nJrvD7xLREPKEnBhyG30IkkAB7Bx_hGpcfb0ZE,912
337
+ orionis/support/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
+ orionis/support/patterns/singleton/__init__.py,sha256=BIyMYL5yXpzv_F-jsSEtoKYseGlM8jdJT8hwGuXZZl8,62
339
+ orionis/support/patterns/singleton/meta.py,sha256=YN5mSSQeIX_Gh_TK5HD-ms6IYBTRsRcuzoUtpX-9kYY,2134
316
340
  orionis/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
341
  orionis/support/standard/std.py,sha256=afe3m7XzzzbFa89RhPVN11LKcgkL3afQHNXHhH3GwjQ,3679
318
342
  orionis/support/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -348,11 +372,11 @@ orionis/test/exceptions/value.py,sha256=r3tVWTE3gNp7of2gXk71NN-VYoAlOpB0kulw0LOJ
348
372
  orionis/test/logs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
373
  orionis/test/logs/history.py,sha256=JIH_jiCpYkGblKY439ro7aBTeo4772QxDxOTflmsc-w,13068
350
374
  orionis/test/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
- orionis/test/output/dumper.py,sha256=gAdjs-UWOrQB8PQTCzbPKcmIXRPlA4aEaj1WAG-Xiz4,4269
375
+ orionis/test/output/dumper.py,sha256=3EV-G3KgEV4O0M4yl-4klPKc1etWOPZvPAcYhUQyXnI,4271
352
376
  orionis/test/output/printer.py,sha256=WGjGW2lgu_l5wWJ6Z8qTTV7NAObhoTBcvhM1TcNvwU4,16938
353
377
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
378
  orionis/test/view/render.py,sha256=jXZkbITBknbUwm_mD8bcTiwLDvsFkrO9qrf0ZgPwqxc,4903
355
- orionis-0.365.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
379
+ orionis-0.367.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
356
380
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
357
381
  tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
382
  tests/example/test_example.py,sha256=kvWgiW3ADEZf718dGsMPtDh_rmOSx1ypEInKm7_6ZPQ,601
@@ -412,9 +436,6 @@ tests/foundation/exceptions/test_foundation_config_exceptions.py,sha256=ESxCIIti
412
436
  tests/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
437
  tests/metadata/test_metadata_framework.py,sha256=V-GXnReHepHLGFvY9hQTYWrzVGgC-P7SinKHCmElXDA,3266
414
438
  tests/metadata/test_metadata_package.py,sha256=mLn3G6IlT1lENlONrOLUkmt1j4DD2BymDcGZ7D7t5mw,2822
415
- tests/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
416
- tests/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
417
- tests/patterns/singleton/test_patterns_singleton.py,sha256=nExpNHQyqph5lNMlUEVCzdMky-qQda4yZuVQQGlRiD0,945
418
439
  tests/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
419
440
  tests/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
441
  tests/services/asynchrony/test_services_asynchrony_coroutine.py,sha256=BoEMVoP4aRZQmzbvE4E0ke1tNvONrTlxdVN0r6Inf0U,1637
@@ -436,16 +457,19 @@ tests/services/inspection/reflection/test_reflection_instance.py,sha256=Gnmo-xGI
436
457
  tests/services/inspection/reflection/test_reflection_module.py,sha256=0T7sd9WSmFwf1bWgC51J9Tgl6Z-5zu7Pza5BNY4TYdg,19743
437
458
  tests/services/inspection/reflection/mock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
438
459
  tests/services/inspection/reflection/mock/fake_reflect_instance.py,sha256=iqWoT6tNym3OijK0wcF0iKMp3HTlq5kAoztzC4fdTlM,18595
439
- tests/services/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
440
- tests/services/parsers/test_services_parser_exceptions.py,sha256=A-b4XeQDprvdHB27K3yIc6DMfvxye1sY1kOxfOMSx68,2652
441
- tests/services/parsers/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
- tests/services/parsers/mocks/mock_custom_error.py,sha256=LWgjeog2rpmfw6j7Bgzvfvmeby8uSBuB1B3d_DgRcFQ,752
443
460
  tests/services/path/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
444
461
  tests/services/path/test_services_resolver.py,sha256=_KvfY3GefauHwfbLlfpRf0fdDRKFl1We7Dip7y9xD-4,3881
445
462
  tests/services/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
446
463
  tests/services/system/test_services_system_imports.py,sha256=dqNFspZCVHIupSV9u7mGCUlyJImmExURp-p0PhwpvRI,2945
447
464
  tests/services/system/test_services_system_workers.py,sha256=g9Nq0V-xmrLAl089Nz3t7xEjeSJxNaplAt_KgzMqJ5o,3002
448
465
  tests/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
466
+ tests/support/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
467
+ tests/support/parsers/test_services_parser_exceptions.py,sha256=U3Zd0_FJM-ZqxTHY4sr-YMZx1a876NeqPG0eFfrh0RU,2650
468
+ tests/support/parsers/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
469
+ tests/support/parsers/mocks/mock_custom_error.py,sha256=LWgjeog2rpmfw6j7Bgzvfvmeby8uSBuB1B3d_DgRcFQ,752
470
+ tests/support/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
471
+ tests/support/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
472
+ tests/support/patterns/singleton/test_patterns_singleton.py,sha256=z4g-P52XC_YjFjg_Ule24i-x7e7aT0IsfcjzqXCg8QM,948
449
473
  tests/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
450
474
  tests/support/standard/test_services_std.py,sha256=jR1A_4uAhFYkt0DxC3WX899gWyXHKDf-L7hNjM4CbA8,5495
451
475
  tests/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -453,8 +477,8 @@ tests/support/wrapper/test_services_wrapper_docdict.py,sha256=hIVqGt19vbW22xPjQS
453
477
  tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
454
478
  tests/testing/test_testing_result.py,sha256=1O_8xjsFPnzwZOpLT6ImqjO9HY5_jIgP7DTVBsgHvQA,4335
455
479
  tests/testing/test_testing_unit.py,sha256=S3anwYcF2DBWYh_UfqKcZq2FgNpQjP0SfYVRd5sD5rI,7442
456
- orionis-0.365.0.dist-info/METADATA,sha256=S68L9auUeRIowTNOlS1-f9NaLCyhLhecO-tHdgQgSno,4772
457
- orionis-0.365.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
458
- orionis-0.365.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
459
- orionis-0.365.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
460
- orionis-0.365.0.dist-info/RECORD,,
480
+ orionis-0.367.0.dist-info/METADATA,sha256=yr-g_H-M_u6IHsuT1kRN7I61Y9HyUwoM5-Y5ZVMd6xs,4772
481
+ orionis-0.367.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
482
+ orionis-0.367.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
483
+ orionis-0.367.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
484
+ orionis-0.367.0.dist-info/RECORD,,
File without changes
File without changes
@@ -1,6 +1,6 @@
1
- from orionis.services.formatter.serializer import Parser
1
+ from orionis.support.formatter.serializer import Parser
2
2
  from orionis.unittesting import TestCase
3
- from tests.services.parsers.mocks.mock_custom_error import CustomError
3
+ from tests.support.parsers.mocks.mock_custom_error import CustomError
4
4
 
5
5
  class TestServicesParserExceptions(TestCase):
6
6
 
File without changes
File without changes
@@ -1,4 +1,4 @@
1
- from orionis.patterns.singleton.meta import Singleton
1
+ from orionis.support.patterns.singleton import Singleton
2
2
  from orionis.test.cases.test_case import TestCase
3
3
 
4
4
  class TestPatternsSingleton(TestCase):
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes