orionis 0.337.0__py3-none-any.whl → 0.338.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.
@@ -5,7 +5,7 @@
5
5
  NAME = "orionis"
6
6
 
7
7
  # Current version of the framework
8
- VERSION = "0.337.0"
8
+ VERSION = "0.338.0"
9
9
 
10
10
  # Full name of the author or maintainer of the project
11
11
  AUTHOR = "Raul Mauricio Uñate Castro"
@@ -0,0 +1,9 @@
1
+ from .std import StdClass
2
+ from .contracts import IStdClass
3
+ from .exceptions import OrionisStdValueException
4
+
5
+ __all__ = [
6
+ "StdClass",
7
+ "IStdClass",
8
+ "OrionisStdValueException"
9
+ ]
@@ -0,0 +1,5 @@
1
+ from .std import IStdClass
2
+
3
+ __all__ = [
4
+ "IStdClass"
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .std_value_exception import OrionisStdValueException
2
+
3
+ __all__ = [
4
+ "OrionisStdValueException"
5
+ ]
@@ -1,5 +1,5 @@
1
- from orionis.support.standard.contracts.std import IStdClass
2
- from orionis.support.standard.exceptions.std_value_exception import OrionisStdValueException
1
+ from orionis.support.standard.contracts import IStdClass
2
+ from orionis.support.standard.exceptions import OrionisStdValueException
3
3
 
4
4
  class StdClass(IStdClass):
5
5
  """
@@ -0,0 +1,5 @@
1
+ from .dicts import DotDict
2
+
3
+ __all__ = [
4
+ "DotDict"
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .dot_dict import DotDict
2
+
3
+ __all__ = [
4
+ "DotDict"
5
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.337.0
3
+ Version: 0.338.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
@@ -220,7 +220,7 @@ orionis/foundation/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
220
220
  orionis/foundation/exceptions/integrity.py,sha256=mc4pL1UMoYRHEmphnpW2oGk5URhu7DJRREyzHaV-cs8,472
221
221
  orionis/foundation/exceptions/value_error.py,sha256=hQhXybXEnaa59ba7JxG65jceHt3mnql9MyekF-TChpM,465
222
222
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
- orionis/metadata/framework.py,sha256=NdMLuAs1RFzSSbSNerau6PNvp1HPXwNbAtR9Yjele3k,4960
223
+ orionis/metadata/framework.py,sha256=KFBwlNLjhFUUVPo4KL8dJHy13uChflNR8cqsvS7rpG4,4960
224
224
  orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
225
225
  orionis/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
226
  orionis/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -295,14 +295,14 @@ orionis/services/system/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
295
295
  orionis/services/system/contracts/imports.py,sha256=nE2fDS2bDbwltHCmzOsEMhUymYy092zoGX-NOXLE4J4,1167
296
296
  orionis/services/system/contracts/workers.py,sha256=aZfQlij6mkPM2TcodDai7JYpTFNKL4YFAEj8Bd9Y4nw,707
297
297
  orionis/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
- orionis/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
- orionis/support/standard/std.py,sha256=_EtIoAxKImQto6Le7RYzuEI6wh2PuoF5C50Rrhrv5Zw,3699
300
- orionis/support/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
+ orionis/support/standard/__init__.py,sha256=I37QioNIEIUXry90zmH0HraiHvWYWgHNWNRgXJYKp_w,194
299
+ orionis/support/standard/std.py,sha256=Tblxmx8VywMdGAb0kMN0k03NDHDG2QVmHyCM3vHkmkY,3675
300
+ orionis/support/standard/contracts/__init__.py,sha256=0qP-Gchl05v8OBIxU89KQSM-lsoJivXiVcjVBpsM2-8,61
301
301
  orionis/support/standard/contracts/std.py,sha256=w4F0fIHIOhCPPiBgTLIIWR9EFdjeTjLsDktiLaUgmj8,3108
302
- orionis/support/standard/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
302
+ orionis/support/standard/exceptions/__init__.py,sha256=kAoxcvfNashn7vEU_1zhiNmmqwNpDfs75Bh0XyI5aX0,107
303
303
  orionis/support/standard/exceptions/std_value_exception.py,sha256=7xry_TZz3k-BLAZTR_uDiQ0RfXOkSBOnBzp9kKUl5xE,471
304
- orionis/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- orionis/support/wrapper/dicts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
304
+ orionis/support/wrapper/__init__.py,sha256=W27HloRpv8lJVHFCHiCRhikn8Qr6gKAh3c1TmzA220k,59
305
+ orionis/support/wrapper/dicts/__init__.py,sha256=jGoWoIGYuRYqMYQKlrX7Dpcbg-AGkHoB_aM2xhu73yc,62
306
306
  orionis/support/wrapper/dicts/dot_dict.py,sha256=VdAUH-DO6y86pl_9N6v-vU9mdLraWh5HjVzI5iC1dMs,5295
307
307
  orionis/test/__init__.py,sha256=A1h_bZ_M2ZtCiPLEiMqAX4zcVg6reSnM7AWRCuMEvGY,1604
308
308
  orionis/test/test_suite.py,sha256=gTe0t-e00URScUGREovUYGH42U0VkxNTIChG3ibKHFs,5969
@@ -335,7 +335,7 @@ orionis/test/suite/__init__.py,sha256=5jgkmkeLwF26x3UxGXHZ7WZzlLMpuAQu9Fo1Rng0iE
335
335
  orionis/test/suite/unit_test.py,sha256=u0T6cgLW4eQF8UwgsW7GgmANdp6O_n1CcV7g3F-2ufI,52248
336
336
  orionis/test/view/__init__.py,sha256=2LWCbH_jT9Dc5a-wV3uxddDxgb6ZLayFQ84w_Cwae6o,84
337
337
  orionis/test/view/render.py,sha256=jXZkbITBknbUwm_mD8bcTiwLDvsFkrO9qrf0ZgPwqxc,4903
338
- orionis-0.337.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
338
+ orionis-0.338.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
339
339
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
340
340
  tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
341
  tests/example/test_example.py,sha256=4ebBTg7vjtA8INm1lhi0NFPpZBLr8TfI5qqU-73g4vc,585
@@ -430,14 +430,14 @@ tests/services/system/test_services_system_imports.py,sha256=LHIo7q6SGDrhNLazZnL
430
430
  tests/services/system/test_services_system_workers.py,sha256=zIJdzQTzt8oe35AkLPTGCIUENKOYTF6elu4CBCRlFQA,2995
431
431
  tests/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
432
432
  tests/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
433
- tests/support/standard/test_services_std.py,sha256=f_cJP6wBoQJH4kDaiw_NGuu1OL8tISKLMKcdaNe25Ww,5508
433
+ tests/support/standard/test_services_std.py,sha256=K9JPufOmj8lStGL9a66Uba81XJZqJuBG9dvz4y49dIo,5504
434
434
  tests/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
435
- tests/support/wrapper/test_services_wrapper_docdict.py,sha256=19-TvfALLen7tM4l141V_a9UVgLthGNW8EVyrjPqOGw,4977
435
+ tests/support/wrapper/test_services_wrapper_docdict.py,sha256=5cnxPqMWLAqKQck7whPd1nuvkivCVR-gwGr_-AqIli4,4968
436
436
  tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
437
  tests/testing/test_testing_result.py,sha256=ypIHgSoWCy2GGJQU-RVYJ3adhPqlCSr0OrTlemQ6Wzc,4308
438
438
  tests/testing/test_testing_unit.py,sha256=2mPUcogIM6hOuWXDQhStVrUyBzwkVl1ucqOT2WD7kN8,7390
439
- orionis-0.337.0.dist-info/METADATA,sha256=IOLTL5RyXKMcxTTRq5DUdo6zgmd_rHg4ph77euq7Vso,4772
440
- orionis-0.337.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
441
- orionis-0.337.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
442
- orionis-0.337.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
443
- orionis-0.337.0.dist-info/RECORD,,
439
+ orionis-0.338.0.dist-info/METADATA,sha256=BEed54OVcR-j_QwUg7H4LFz3CDyymDFHRhjSK1vRQ3Y,4772
440
+ orionis-0.338.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
441
+ orionis-0.338.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
442
+ orionis-0.338.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
443
+ orionis-0.338.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  from orionis.support.standard.exceptions.std_value_exception import OrionisStdValueException
2
- from orionis.support.standard.std import StdClass
2
+ from orionis.support.standard import StdClass
3
3
  from orionis.test import TestCase
4
4
 
5
5
  class TestSupportStd(TestCase):
@@ -1,4 +1,4 @@
1
- from orionis.support.wrapper.dicts.dot_dict import DotDict
1
+ from orionis.support.wrapper.dicts import DotDict
2
2
  from orionis.test import TestCase
3
3
 
4
4
  class TestSupportWrapperDocDict(TestCase):