orionis 0.720.0__py3-none-any.whl → 0.722.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 +2 -1
- orionis/console/output/console.py +10 -2
- orionis/metadata/framework.py +1 -1
- orionis/support/{collections → structures}/collection.py +1 -1
- {orionis-0.720.0.dist-info → orionis-0.722.0.dist-info}/METADATA +1 -1
- {orionis-0.720.0.dist-info → orionis-0.722.0.dist-info}/RECORD +13 -13
- /orionis/support/{types → strings}/stringable.py +0 -0
- /orionis/support/{collections → structures}/__init__.py +0 -0
- /orionis/support/{collections → structures}/contracts/__init__.py +0 -0
- /orionis/support/{collections → structures}/contracts/collection.py +0 -0
- {orionis-0.720.0.dist-info → orionis-0.722.0.dist-info}/WHEEL +0 -0
- {orionis-0.720.0.dist-info → orionis-0.722.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.720.0.dist-info → orionis-0.722.0.dist-info}/top_level.txt +0 -0
orionis/console/args/argument.py
CHANGED
|
@@ -505,7 +505,7 @@ class Console(IConsole):
|
|
|
505
505
|
|
|
506
506
|
return choices[int(answer) - 1]
|
|
507
507
|
|
|
508
|
-
def exception(self, e) -> None:
|
|
508
|
+
def exception(self, e: Exception) -> None:
|
|
509
509
|
"""
|
|
510
510
|
Prints an exception message with detailed information.
|
|
511
511
|
|
|
@@ -519,7 +519,15 @@ class Console(IConsole):
|
|
|
519
519
|
This method prints the exception type, message, and a detailed stack trace.
|
|
520
520
|
"""
|
|
521
521
|
rc = RichConsole()
|
|
522
|
-
tb = Traceback.from_exception(
|
|
522
|
+
tb = Traceback.from_exception(
|
|
523
|
+
type(e),
|
|
524
|
+
e,
|
|
525
|
+
e.__traceback__,
|
|
526
|
+
max_frames=1,
|
|
527
|
+
suppress=[],
|
|
528
|
+
extra_lines=1,
|
|
529
|
+
show_locals=False
|
|
530
|
+
)
|
|
523
531
|
rc.print(tb)
|
|
524
532
|
|
|
525
533
|
def exitSuccess(self, message: str = None) -> None:
|
orionis/metadata/framework.py
CHANGED
|
@@ -4,7 +4,7 @@ import random
|
|
|
4
4
|
from functools import reduce
|
|
5
5
|
from typing import Any, Callable, Dict, List, Optional, Union
|
|
6
6
|
from dotty_dict import Dotty, dotty
|
|
7
|
-
from orionis.support.
|
|
7
|
+
from orionis.support.structures.contracts.collection import ICollection
|
|
8
8
|
|
|
9
9
|
class Collection(ICollection):
|
|
10
10
|
|
|
@@ -3,7 +3,7 @@ orionis/app.py,sha256=_z5q7BMufLcRn3mIOkWs7iD2Jv307GPOPFilCluKIs0,208
|
|
|
3
3
|
orionis/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
orionis/console/kernel.py,sha256=rBIDB6nm_PJ8JnWGAdq8bon9qjmy9vB4RRFRLmz23gc,3748
|
|
5
5
|
orionis/console/args/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
orionis/console/args/argument.py,sha256=
|
|
6
|
+
orionis/console/args/argument.py,sha256=bavFO1usCSQny1AQ4yACFamU-7K4a30B0sk_tRatymU,20311
|
|
7
7
|
orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
orionis/console/base/command.py,sha256=tAO_EVy1aNWneNSKYYMAf9yDTfbvHAqSJnZZ6pOR4tE,9318
|
|
9
9
|
orionis/console/base/scheduler.py,sha256=JoZdtyrVJiNzBoVEWUovHscqBxqw_fPPwaENIQc4Zp4,7644
|
|
@@ -58,7 +58,7 @@ orionis/console/fluent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
58
58
|
orionis/console/fluent/command.py,sha256=0jyhB45LIjDS7nkjNhkkvEXEzdOBmT49qKIooYY_DbI,8261
|
|
59
59
|
orionis/console/fluent/event.py,sha256=N1MqKdXwmsHx3KES07DVCLVrdwaIMWYAtzUzQmsfsAI,166739
|
|
60
60
|
orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
orionis/console/output/console.py,sha256=
|
|
61
|
+
orionis/console/output/console.py,sha256=xRZXSZiVqlyc1L16MBUV1M3TUHQwrWSFYUtisivm8U8,24423
|
|
62
62
|
orionis/console/output/executor.py,sha256=uQjFPOlyZLFj9pcyYPugCqxwJog0AJgK1OcmQH2ELbw,7314
|
|
63
63
|
orionis/console/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
64
|
orionis/console/request/cli_request.py,sha256=sH7Q2MpMIasiPiEPBeGhExnbfpSic98vQdAKvG9cgew,9071
|
|
@@ -207,7 +207,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=IrPQJwvQVLRm5Qnz0Cxon4
|
|
|
207
207
|
orionis/foundation/providers/testing_provider.py,sha256=eI1p2lUlxl25b5Z487O4nmqLE31CTDb4c3Q21xFadkE,1615
|
|
208
208
|
orionis/foundation/providers/workers_provider.py,sha256=GdHENYV_yGyqmHJHn0DCyWmWId5xWjD48e6Zq2PGCWY,1674
|
|
209
209
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
210
|
-
orionis/metadata/framework.py,sha256=
|
|
210
|
+
orionis/metadata/framework.py,sha256=34HVD1Rw9M2QgqijK_asxd9nIWdEZhIiarQIHuZHBuU,4689
|
|
211
211
|
orionis/metadata/package.py,sha256=s1JeGJPwdVh4jO3IOfmpwMuJ_oX6Vf9NL7jgPEQNf5Y,16050
|
|
212
212
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
213
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -298,10 +298,6 @@ orionis/services/system/contracts/workers.py,sha256=T7P48btql90IaPugMVUmR0Gl2-r9
|
|
|
298
298
|
orionis/services/system/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
299
|
orionis/services/system/runtime/imports.py,sha256=iIwIx8RjBHaiveCdj_WPiMMbWsKGbIs02qpAzL_L3Z0,3158
|
|
300
300
|
orionis/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
|
-
orionis/support/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
|
-
orionis/support/collections/collection.py,sha256=7pQZOaWNOvavKsOl6X-4CMjmuTZo6TI42oW4cOiIsPg,37695
|
|
303
|
-
orionis/support/collections/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
304
|
-
orionis/support/collections/contracts/collection.py,sha256=6hjEE75Yd-042BdnXDjdtG0nFDbm9AzEHjR6-9pXP2g,18399
|
|
305
301
|
orionis/support/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
302
|
orionis/support/entities/base.py,sha256=seuNuESVI7HcB4V_yKiSnMNoBK9fVB3choaKOn1ePFQ,4811
|
|
307
303
|
orionis/support/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -348,7 +344,11 @@ orionis/support/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
348
344
|
orionis/support/standard/contracts/std.py,sha256=SJ44qIFDCp4jHL18k4sji5Mt_MN16lpg-0ku1qudh04,3331
|
|
349
345
|
orionis/support/standard/exceptions/__init__.py,sha256=GovJ24C8fCOlnU5_TrMJKngYNcJ1rvJnF9WFTA8ktyw,96
|
|
350
346
|
orionis/support/standard/exceptions/standard.py,sha256=BM0VHLRYD7SzoMJkaA7BxY5280v81hlj1Xslu0UaFag,788
|
|
351
|
-
orionis/support/
|
|
347
|
+
orionis/support/strings/stringable.py,sha256=6Kx1tXULZX_Mjoha3_-RQfVD35RA7WbWTKjdVDv84ow,93981
|
|
348
|
+
orionis/support/structures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
|
+
orionis/support/structures/collection.py,sha256=1yD-NI5kCh3ve_4V9OE1sdK4OQ__wkBbEhmKQWkHGGA,37694
|
|
350
|
+
orionis/support/structures/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
|
+
orionis/support/structures/contracts/collection.py,sha256=6hjEE75Yd-042BdnXDjdtG0nFDbm9AzEHjR6-9pXP2g,18399
|
|
352
352
|
orionis/support/wrapper/__init__.py,sha256=jGoWoIGYuRYqMYQKlrX7Dpcbg-AGkHoB_aM2xhu73yc,62
|
|
353
353
|
orionis/support/wrapper/dataclass.py,sha256=D2g9vHc6F0T7qLpzDwWUAiohcYz8Gcs2Ph5rLaOhqMo,9432
|
|
354
354
|
orionis/support/wrapper/dot_dict.py,sha256=T8xWwwOhBZHNeXRwE_CxvOwG9UFxsLqNmOJjV2CNIrc,7284
|
|
@@ -401,8 +401,8 @@ orionis/test/validators/workers.py,sha256=HcZ3cnrk6u7cvM1xZpn_lsglHAq69_jx9RcTSv
|
|
|
401
401
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
402
|
orionis/test/view/render.py,sha256=arysoswhkV2vUd2aVMZRPpmH317jaWbgjDpQ_AWQ5AE,5663
|
|
403
403
|
orionis/test/view/report.stub,sha256=QLqqCdRoENr3ECiritRB3DO_MOjRQvgBh5jxZ3Hs1r0,28189
|
|
404
|
-
orionis-0.
|
|
405
|
-
orionis-0.
|
|
406
|
-
orionis-0.
|
|
407
|
-
orionis-0.
|
|
408
|
-
orionis-0.
|
|
404
|
+
orionis-0.722.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
|
|
405
|
+
orionis-0.722.0.dist-info/METADATA,sha256=JNiNgZ0m6qlcIcVUEX-LyHMu-kgenWsepUVZoCWZV30,4931
|
|
406
|
+
orionis-0.722.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
407
|
+
orionis-0.722.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
|
|
408
|
+
orionis-0.722.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|