orionis 0.553.0__py3-none-any.whl → 0.555.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.
@@ -46,7 +46,7 @@ class CacheClearCommand(BaseCommand):
46
46
  raise CLIOrionisRuntimeError(f"Cache clearing failed: {error_message}")
47
47
 
48
48
  # If the command was successful, print the output
49
- self.textSuccess(f"Cache cleared successfully.")
49
+ self.textSuccess("Cache cleared successfully.")
50
50
 
51
51
  # If the command was successful, return True
52
52
  return True # Cache cleared successfully
@@ -1,8 +1,5 @@
1
1
  from orionis.console.base.command import BaseCommand
2
- from orionis.console.contracts.reactor import IReactor
3
2
  from orionis.console.exceptions import CLIOrionisRuntimeError
4
- from rich.console import Console
5
- from rich.panel import Panel
6
3
 
7
4
  class MakeListenerCommand(BaseCommand):
8
5
  """
@@ -451,7 +451,7 @@ class PublisherCommand(BaseCommand):
451
451
  # Notify user that the publishing process is complete
452
452
  self.__console.print(
453
453
  Panel(
454
- f"[bold green]✅ Publishing process completed successfully![/]",
454
+ "[bold green]✅ Publishing process completed successfully![/]",
455
455
  border_style="green",
456
456
  width=self.__with_console
457
457
  )
@@ -1,5 +1,4 @@
1
1
  from abc import ABC, abstractmethod
2
- from orionis.console.entities.command import Command as CommandEntity
3
2
 
4
3
  class ICommand(ABC):
5
4
 
@@ -1,7 +1,6 @@
1
1
  from abc import ABC, abstractmethod
2
2
  from datetime import datetime
3
3
  from orionis.console.contracts.schedule_event_listener import IScheduleEventListener
4
- from orionis.console.entities.event import Event as EventEntity
5
4
 
6
5
  class IEvent(ABC):
7
6
 
@@ -2,7 +2,7 @@ import argparse
2
2
  import os
3
3
  from pathlib import Path
4
4
  import re
5
- from typing import Any, List, Optional, Type
5
+ from typing import Any, List, Optional
6
6
  from orionis.console.args.argument import CLIArgument
7
7
  from orionis.console.base.command import BaseCommand
8
8
  from orionis.console.contracts.base_command import IBaseCommand
@@ -222,7 +222,7 @@ class Debug(IDebug):
222
222
  border_style="green",
223
223
  )
224
224
 
225
- except TypeError as e:
225
+ except TypeError:
226
226
 
227
227
  # If serialization fails, print a dump of the data instead
228
228
  self.__printDump((data,))
@@ -304,7 +304,7 @@ class Debug(IDebug):
304
304
  border_style="blue",
305
305
  )
306
306
 
307
- except Exception as e:
307
+ except Exception:
308
308
 
309
309
  # If an error occurs while creating the table, print a dump of the data
310
310
  self.__printDump((data,))
@@ -1,6 +1,6 @@
1
1
  from dataclasses import dataclass
2
2
  from datetime import datetime
3
- from typing import Any, Callable, Dict, Optional, Tuple
3
+ from typing import Any, Callable, Optional, Tuple
4
4
 
5
5
  @dataclass(kw_only=True)
6
6
  class EventJob:
@@ -1,5 +1,4 @@
1
1
  from dataclasses import dataclass
2
- from typing import Optional
3
2
 
4
3
  @dataclass(kw_only=True)
5
4
  class SchedulerEventData:
@@ -4076,7 +4076,8 @@ class Event(IEvent):
4076
4076
 
4077
4077
  # Build human-readable description
4078
4078
  parts = []
4079
- if day_of_week: parts.append(f"on {day_of_week}")
4079
+ if day_of_week:
4080
+ parts.append(f"on {day_of_week}")
4080
4081
  if hour is not None and minute is not None:
4081
4082
  parts.append(f"at {hour}:{minute.zfill(2)}")
4082
4083
  elif hour is not None:
@@ -1229,7 +1229,7 @@ class Schedule(ISchedule):
1229
1229
  self.__scheduler.remove_job("scheduler_pause_at")
1230
1230
 
1231
1231
  # If the job doesn't exist, it's fine to proceed
1232
- except:
1232
+ finally:
1233
1233
  pass
1234
1234
 
1235
1235
  # Add a job to the scheduler to pause it at the specified datetime
@@ -1340,7 +1340,7 @@ class Schedule(ISchedule):
1340
1340
  self.__scheduler.remove_job("scheduler_resume_at")
1341
1341
 
1342
1342
  # If the job doesn't exist, it's fine to proceed
1343
- except:
1343
+ finally:
1344
1344
  pass
1345
1345
 
1346
1346
  # Add a job to the scheduler to resume it at the specified datetime
@@ -1431,7 +1431,7 @@ class Schedule(ISchedule):
1431
1431
  self.__scheduler.remove_job("scheduler_shutdown_at")
1432
1432
 
1433
1433
  # If the job doesn't exist, it's fine to proceed
1434
- except:
1434
+ finally:
1435
1435
  pass
1436
1436
 
1437
1437
  # Add a job to the scheduler to shut it down at the specified datetime
@@ -1474,7 +1474,7 @@ class Schedule(ISchedule):
1474
1474
  try:
1475
1475
 
1476
1476
  # Ensure the method is called within an asyncio event loop
1477
- loop = asyncio.get_running_loop()
1477
+ asyncio.get_running_loop()
1478
1478
 
1479
1479
  # Create an asyncio event to manage clean shutdowns
1480
1480
  self._stop_event = asyncio.Event()
@@ -1814,7 +1814,8 @@ class Schedule(ISchedule):
1814
1814
  # Return True to indicate the pause job was successfully cancelled
1815
1815
  return True
1816
1816
 
1817
- except:
1817
+ finally:
1818
+
1818
1819
  # Return False if the pause job does not exist or an error occurred
1819
1820
  return False
1820
1821
 
@@ -1852,7 +1853,7 @@ class Schedule(ISchedule):
1852
1853
  # Return True to indicate the resume job was successfully cancelled
1853
1854
  return True
1854
1855
 
1855
- except:
1856
+ finally:
1856
1857
 
1857
1858
  # Return False if the resume job does not exist or an error occurred
1858
1859
  return False
@@ -1891,7 +1892,7 @@ class Schedule(ISchedule):
1891
1892
  # Return True to indicate the shutdown job was successfully cancelled
1892
1893
  return True
1893
1894
 
1894
- except:
1895
+ finally:
1895
1896
 
1896
1897
  # Return False if the shutdown job does not exist or an error occurred
1897
1898
  return False
@@ -2,7 +2,7 @@ from typing import Any
2
2
  from orionis.app import Orionis
3
3
  from orionis.container.exceptions import OrionisContainerAttributeError, OrionisContainerException
4
4
  from orionis.foundation.application import IApplication
5
- from typing import TypeVar, Any
5
+ from typing import TypeVar
6
6
 
7
7
  T = TypeVar('T')
8
8
 
@@ -58,7 +58,7 @@ class __ImplementsAbstractMethods:
58
58
  not_implemented = []
59
59
  for method in abstract_methods:
60
60
  expected_method = str(method).replace(f"_{abstract_name}", f"_{target_name}")
61
- if not expected_method in target_class.__dict__:
61
+ if expected_method not in target_class.__dict__:
62
62
  not_implemented.append(method)
63
63
 
64
64
  # If any abstract methods are not implemented, raise an exception
@@ -252,7 +252,7 @@ class MySQL(BaseEntity):
252
252
 
253
253
  # Check if engine is a string or MySQLEngine enum
254
254
  if not isinstance(self.engine, (str, MySQLEngine)):
255
- raise OrionisIntegrityException(f"Engine must be a string or MySQLEngine enum.")
255
+ raise OrionisIntegrityException("Engine must be a string or MySQLEngine enum.")
256
256
 
257
257
  # Convert engine to MySQLEngine enum if it's a string
258
258
  options_engines = MySQLEngine._member_names_
@@ -126,7 +126,7 @@ class SQLite(BaseEntity):
126
126
 
127
127
  # Validate database
128
128
  if not isinstance(self.database, str) or not self.database.strip():
129
- raise OrionisIntegrityException(f"Invalid 'database': must be a non-empty string representing the database file path.")
129
+ raise OrionisIntegrityException("Invalid 'database': must be a non-empty string representing the database file path.")
130
130
 
131
131
  # Validate prefix
132
132
  if not isinstance(self.prefix, str):
@@ -5,7 +5,7 @@
5
5
  NAME = "orionis"
6
6
 
7
7
  # Current version of the framework
8
- VERSION = "0.553.0"
8
+ VERSION = "0.555.0"
9
9
 
10
10
  # Full name of the author or maintainer of the project
11
11
  AUTHOR = "Raul Mauricio Uñate Castro"
@@ -1,6 +1,5 @@
1
1
  from abc import ABC, abstractmethod
2
2
  from pathlib import Path
3
- from orionis.foundation.contracts.application import IApplication
4
3
 
5
4
  class IDirectory(ABC):
6
5
 
@@ -1276,7 +1276,7 @@ class ReflectionAbstract(IReflectionAbstract):
1276
1276
  cls_name = self.getClassName()
1277
1277
  for name, prop in self.__abstract.__dict__.items():
1278
1278
  if isinstance(prop, property):
1279
- if not name.startswith(f"_") and not name.startswith(f"_{cls_name}"):
1279
+ if not name.startswith("_") and not name.startswith(f"_{cls_name}"):
1280
1280
  properties.append(name.replace(f"_{cls_name}", ""))
1281
1281
  return properties
1282
1282
 
@@ -1293,7 +1293,7 @@ class ReflectionAbstract(IReflectionAbstract):
1293
1293
  properties = []
1294
1294
  for name, prop in self.__abstract.__dict__.items():
1295
1295
  if isinstance(prop, property):
1296
- if name.startswith(f"_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
1296
+ if name.startswith("_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
1297
1297
  properties.append(name)
1298
1298
  return properties
1299
1299
 
@@ -1382,7 +1382,7 @@ class ReflectionConcrete(IReflectionConcrete):
1382
1382
  cls_name = self.getClassName()
1383
1383
  for name, prop in self._concrete.__dict__.items():
1384
1384
  if isinstance(prop, property):
1385
- if not name.startswith(f"_") and not name.startswith(f"_{cls_name}"):
1385
+ if not name.startswith("_") and not name.startswith(f"_{cls_name}"):
1386
1386
  properties.append(name.replace(f"_{cls_name}", ""))
1387
1387
  return properties
1388
1388
 
@@ -1401,7 +1401,7 @@ class ReflectionConcrete(IReflectionConcrete):
1401
1401
  properties = []
1402
1402
  for name, prop in self._concrete.__dict__.items():
1403
1403
  if isinstance(prop, property):
1404
- if name.startswith(f"_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
1404
+ if name.startswith("_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
1405
1405
  properties.append(name)
1406
1406
  return properties
1407
1407
 
@@ -858,7 +858,7 @@ class ReflectionInstance(IReflectionInstance):
858
858
  if isinstance(attr, classmethod):
859
859
 
860
860
  # Check not private or protected methods
861
- if not name.startswith(f"_"):
861
+ if not name.startswith("_"):
862
862
  class_methods.append(name)
863
863
 
864
864
  # Return the list of public class method
@@ -890,7 +890,7 @@ class ReflectionInstance(IReflectionInstance):
890
890
  func = attr.__func__
891
891
 
892
892
  # Check if it's NOT a coroutine function (i.e., synchronous)
893
- if not inspect.iscoroutinefunction(func) and not name.startswith(f"_"):
893
+ if not inspect.iscoroutinefunction(func) and not name.startswith("_"):
894
894
  public_class_sync_methods.append(str(name).replace(f"_{class_name}", ""))
895
895
 
896
896
  # Return the list of public synchronous class method names
@@ -922,7 +922,7 @@ class ReflectionInstance(IReflectionInstance):
922
922
  func = attr.__func__
923
923
 
924
924
  # Check if it's a coroutine function (i.e., asynchronous)
925
- if inspect.iscoroutinefunction(func) and not name.startswith(f"_"):
925
+ if inspect.iscoroutinefunction(func) and not name.startswith("_"):
926
926
  public_class_async_methods.append(str(name).replace(f"_{class_name}", ""))
927
927
 
928
928
  # Return the list of public asynchronous class method names
@@ -950,7 +950,7 @@ class ReflectionInstance(IReflectionInstance):
950
950
  if isinstance(attr, classmethod):
951
951
 
952
952
  # Check is a protected class method
953
- if name.startswith(f"_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
953
+ if name.startswith("_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
954
954
  class_methods.append(name)
955
955
 
956
956
  # Return the list of public class method
@@ -982,7 +982,7 @@ class ReflectionInstance(IReflectionInstance):
982
982
  func = attr.__func__
983
983
 
984
984
  # Check if it's NOT a coroutine function (i.e., synchronous)
985
- if not inspect.iscoroutinefunction(func) and name.startswith(f"_") and not name.startswith(f"_{class_name}"):
985
+ if not inspect.iscoroutinefunction(func) and name.startswith("_") and not name.startswith(f"_{class_name}"):
986
986
  protected_class_sync_methods.append(str(name).replace(f"_{class_name}", ""))
987
987
 
988
988
  # Return the list of protected class method names
@@ -1014,7 +1014,7 @@ class ReflectionInstance(IReflectionInstance):
1014
1014
  func = attr.__func__
1015
1015
 
1016
1016
  # Check if it's a coroutine function (i.e., asynchronous)
1017
- if inspect.iscoroutinefunction(func) and name.startswith(f"_") and not name.startswith(f"_{class_name}"):
1017
+ if inspect.iscoroutinefunction(func) and name.startswith("_") and not name.startswith(f"_{class_name}"):
1018
1018
  protected_class_async_methods.append(str(name).replace(f"_{class_name}", ""))
1019
1019
 
1020
1020
  # Return the list of protected asynchronous class method names
@@ -1129,7 +1129,7 @@ class ReflectionInstance(IReflectionInstance):
1129
1129
  static_methods = []
1130
1130
  for name in dir(cls):
1131
1131
  attr = inspect.getattr_static(cls, name)
1132
- if isinstance(attr, staticmethod) and not name.startswith(f"_"):
1132
+ if isinstance(attr, staticmethod) and not name.startswith("_"):
1133
1133
  static_methods.append(name)
1134
1134
  return static_methods
1135
1135
 
@@ -1159,7 +1159,7 @@ class ReflectionInstance(IReflectionInstance):
1159
1159
  func = attr.__func__
1160
1160
 
1161
1161
  # Check if it's NOT a coroutine function (i.e., synchronous)
1162
- if not inspect.iscoroutinefunction(func) and not name.startswith(f"_"):
1162
+ if not inspect.iscoroutinefunction(func) and not name.startswith("_"):
1163
1163
  public_static_sync_methods.append(str(name).replace(f"_{class_name}", ""))
1164
1164
 
1165
1165
  # Return the list of public synchronous static method names
@@ -1191,7 +1191,7 @@ class ReflectionInstance(IReflectionInstance):
1191
1191
  func = attr.__func__
1192
1192
 
1193
1193
  # Check if it's a coroutine function (i.e., asynchronous)
1194
- if inspect.iscoroutinefunction(func) and not name.startswith(f"_"):
1194
+ if inspect.iscoroutinefunction(func) and not name.startswith("_"):
1195
1195
  public_static_async_methods.append(str(name).replace(f"_{class_name}", ""))
1196
1196
 
1197
1197
  # Return the list of public asynchronous static method names
@@ -1216,7 +1216,7 @@ class ReflectionInstance(IReflectionInstance):
1216
1216
  attr = inspect.getattr_static(cls, name)
1217
1217
 
1218
1218
  # Check if the attribute is a static method
1219
- if isinstance(attr, staticmethod) and name.startswith(f"_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
1219
+ if isinstance(attr, staticmethod) and name.startswith("_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
1220
1220
  protected_static_methods.append(name)
1221
1221
 
1222
1222
  return protected_static_methods
@@ -1247,7 +1247,7 @@ class ReflectionInstance(IReflectionInstance):
1247
1247
  func = attr.__func__
1248
1248
 
1249
1249
  # Check if it's NOT a coroutine function (i.e., synchronous)
1250
- if not inspect.iscoroutinefunction(func) and name.startswith(f"_") and not name.startswith(f"_{class_name}"):
1250
+ if not inspect.iscoroutinefunction(func) and name.startswith("_") and not name.startswith(f"_{class_name}"):
1251
1251
  protected_static_sync_methods.append(str(name).replace(f"_{class_name}", ""))
1252
1252
 
1253
1253
  return protected_static_sync_methods
@@ -1278,7 +1278,7 @@ class ReflectionInstance(IReflectionInstance):
1278
1278
  func = attr.__func__
1279
1279
 
1280
1280
  # Check if it's a coroutine function (i.e., asynchronous)
1281
- if inspect.iscoroutinefunction(func) and name.startswith(f"_") and not name.startswith(f"_{class_name}"):
1281
+ if inspect.iscoroutinefunction(func) and name.startswith("_") and not name.startswith(f"_{class_name}"):
1282
1282
  protected_static_async_methods.append(str(name).replace(f"_{class_name}", ""))
1283
1283
 
1284
1284
  return protected_static_async_methods
@@ -1435,7 +1435,7 @@ class ReflectionInstance(IReflectionInstance):
1435
1435
  cls_name = self.getClassName()
1436
1436
  for name, prop in self._instance.__class__.__dict__.items():
1437
1437
  if isinstance(prop, property):
1438
- if not name.startswith(f"_") and not name.startswith(f"_{cls_name}"):
1438
+ if not name.startswith("_") and not name.startswith(f"_{cls_name}"):
1439
1439
  properties.append(name.replace(f"_{cls_name}", ""))
1440
1440
  return properties
1441
1441
 
@@ -1451,7 +1451,7 @@ class ReflectionInstance(IReflectionInstance):
1451
1451
  properties = []
1452
1452
  for name, prop in self._instance.__class__.__dict__.items():
1453
1453
  if isinstance(prop, property):
1454
- if name.startswith(f"_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
1454
+ if name.startswith("_") and not name.startswith("__") and not name.startswith(f"_{self.getClassName()}"):
1455
1455
  properties.append(name)
1456
1456
  return properties
1457
1457
 
@@ -811,7 +811,7 @@ class UnitTest(IUnitTest):
811
811
  setattr(test_case, getattr(test_case, "_testMethodName"), bound_method)
812
812
  flattened_suite.addTest(test_case)
813
813
 
814
- except Exception as e:
814
+ except Exception:
815
815
 
816
816
  # If dependency resolution fails, add the original test case
817
817
  flattened_suite.addTest(test_case)
orionis/test/kernel.py CHANGED
@@ -1,10 +1,9 @@
1
- from orionis.console.contracts.console import IConsole
2
1
  from orionis.foundation.contracts.application import IApplication
3
2
  from orionis.services.log.contracts.log_service import ILogger
4
3
  from orionis.test.contracts.kernel import ITestKernel
5
4
  from orionis.test.contracts.unit_test import IUnitTest
6
5
  from orionis.foundation.config.testing.entities.testing import Testing
7
- from orionis.test.exceptions import OrionisTestConfigException, OrionisTestFailureException
6
+ from orionis.test.exceptions import OrionisTestConfigException
8
7
 
9
8
  class TestKernel(ITestKernel):
10
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.553.0
3
+ Version: 0.555.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
@@ -9,10 +9,10 @@ orionis/console/base/command.py,sha256=jdUPc7MoJs9QWo_WEPV0Mb_7f6G563OWFTh7DJeUf
9
9
  orionis/console/base/scheduler.py,sha256=03_nwYbdRXLSoDwVIJ9-ba-fSBwqNaCXvAk9pv3VdFI,8035
10
10
  orionis/console/base/scheduler_event_listener.py,sha256=X2mZBAYLBCtLOH7QSrCEaLeJ5m8Hq5UtGxaWRRvWbfo,4421
11
11
  orionis/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- orionis/console/commands/cache.py,sha256=8DsYoRzSBLn0P9qkGVItRbo0R6snWBDBg0_Xa7tmVhs,2322
12
+ orionis/console/commands/cache.py,sha256=d-J6Qu5Xpp9z0BU4OOb--gp9zWfUZOWm_LEBKIO8k-o,2321
13
13
  orionis/console/commands/help.py,sha256=0VQLw_8ghyMIbWH9L6S2I5umwa_rniK1lzDdX0qYS_U,3118
14
- orionis/console/commands/make_listener.py,sha256=iPOMCc41njwUKurxSwatZUTjpp-bBLdO9nN-w2FJ4mI,1921
15
- orionis/console/commands/publisher.py,sha256=FUg-EUzK7LLXsla10ZUZro8V0Z5S-KjmsaSdRHSSGbA,21381
14
+ orionis/console/commands/make_listener.py,sha256=vuXKOPIw_7MbiGwHGiDjLyd5-OqyBov1LKozsv2itEc,1801
15
+ orionis/console/commands/publisher.py,sha256=m-4RGDI3gc3-ED7Pl0rASLcoZP694q9jNKq0vRMM9uA,21380
16
16
  orionis/console/commands/scheduler_list.py,sha256=OU9qOjZNZRRElxwpg-E8nVefJToeiWu2E2l8P17NZtI,4759
17
17
  orionis/console/commands/scheduler_work.py,sha256=mzSFes8Wl1gCf253tNYClij0abT5HlpW1QZVFrU5EXo,6445
18
18
  orionis/console/commands/test.py,sha256=-EmQwFwMBuby3OI9HwqMIwuJzd2CGbWbOqmwrR25sOE,2402
@@ -22,10 +22,10 @@ orionis/console/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
22
22
  orionis/console/contracts/base_command.py,sha256=vmAJD0yMQ5-AD_s9_xCFEAl64sKk65z7U2E196dALQM,5760
23
23
  orionis/console/contracts/base_scheduler.py,sha256=OW-a_YDDNPrenYT9z8Tv71VjyZ1aSzqzqhTBhTCZhGM,7698
24
24
  orionis/console/contracts/cli_request.py,sha256=qIV8ig8PG39LYp1acnUD8GYsNRSHncxIxGjO3B3YsUo,6755
25
- orionis/console/contracts/command.py,sha256=RMvI9u1lQvx7uxTqMQRNI3tVZUvHSiCSzmZmuMVYhpQ,2982
25
+ orionis/console/contracts/command.py,sha256=BOfRGpLRMsRS_a58584uO-MPK1UZGkmefLbFDtbk8ME,2911
26
26
  orionis/console/contracts/console.py,sha256=phaQhCLWa81MLzB5ydOSaUfEIdDq7fOjvym8Rmi-arc,11908
27
27
  orionis/console/contracts/debug.py,sha256=tEdF3_HJwDAgccXVEk_LGf43Am2ylbcx9i0Qvj3MFyU,1011
28
- orionis/console/contracts/event.py,sha256=DH_FydRNLYsfP9bYD_KzyRO5YQ3GFPNy8-AD0YGV3JQ,120043
28
+ orionis/console/contracts/event.py,sha256=Iu03z04ujkiYl6DksYT8QVXSJGabd5T_5dT67UozeCw,119978
29
29
  orionis/console/contracts/executor.py,sha256=7l3kwnvv6GlH9EYk0v94YE1olex_-mvgyRDAqZvvYrQ,4254
30
30
  orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01IIHI5Y,826
31
31
  orionis/console/contracts/progress_bar.py,sha256=NYebL2h-vg2t2H6IhJjuC37gglRkpT-MW71wbJtpLNg,1784
@@ -33,16 +33,16 @@ orionis/console/contracts/reactor.py,sha256=iT6ShoCutAWEeJzOf_PK7CGXi9TgrOD5tewH
33
33
  orionis/console/contracts/schedule.py,sha256=N-AYUa1CJY7a4CV9L1EX_EUDtGlDJMg4y0aV9EDby1Q,16090
34
34
  orionis/console/contracts/schedule_event_listener.py,sha256=7dqYq7934S64B5Fq6aboVtVlQU8fC9EUjlDSC0f-464,3921
35
35
  orionis/console/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- orionis/console/core/reactor.py,sha256=zjBVj1Zgg0hFGKeG5Uk0x7OZOKpq8nj4RyMxS-K1ZfY,41804
36
+ orionis/console/core/reactor.py,sha256=57EFQAA4lFY2yrYAzQIiQSRBTV2rLYXLEFsB0C8dxj4,41798
37
37
  orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- orionis/console/dumper/dump.py,sha256=5HrN42NEUDAP1gacNLIGaAM3cSzqyV-0KV5baB2QALE,22437
38
+ orionis/console/dumper/dump.py,sha256=p8uflSXeDJDrVM9mZY4JMYEus73Z6TsLnQQtgP0QUak,22427
39
39
  orionis/console/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
40
  orionis/console/dynamic/progress_bar.py,sha256=58wne7E_QZb_uN9jjqQ_V28Ci19SVNhCQQ4zzXCiOu0,2872
41
41
  orionis/console/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
42
  orionis/console/entities/all_jobs_removed.py,sha256=4_Foo_CW2mP7iazBJX90I_QJ-Qd_wYGpaJGHXzYDREw,728
43
43
  orionis/console/entities/command.py,sha256=OXoiE533U1JDbK6Mh-d6jlRmc4CCAPHeNNgBmmJFvpU,1360
44
44
  orionis/console/entities/event.py,sha256=teDa54mivEZvaRPfF9tP3Wd81jl9znObYhLyQn9yZ0s,3003
45
- orionis/console/entities/event_job.py,sha256=vweIHfjCnjs8wo8O9rJ092ERHlF_O5hhDSt7Mlaf6rQ,2129
45
+ orionis/console/entities/event_job.py,sha256=IBpD_FlCgj0WVeUROCzDdL4KUw1PGWQinahBP5MvqPo,2123
46
46
  orionis/console/entities/executor_added.py,sha256=qtV8dQKYxI_NcpDdOObuCemQy0eAihr0yBIkXewGCv0,702
47
47
  orionis/console/entities/executor_removed.py,sha256=B_Z_toclI46N5Wjo-ZUgFemxL_5UJcjkDod3kHWR1AQ,738
48
48
  orionis/console/entities/job_added.py,sha256=pYxXxhU3bEitUV1m_Np6ypzDPcvfTaFBcKwi67hHt_c,813
@@ -59,7 +59,7 @@ orionis/console/entities/job_store_added.py,sha256=NoocJD3zSm7E8ZsUob8BdvKxveu9W
59
59
  orionis/console/entities/job_store_removed.py,sha256=wh53sf3Rkezo5hMQkWo-NToeCYwMOmp7BLa1ACVUnqo,740
60
60
  orionis/console/entities/job_submitted.py,sha256=8ftGEOsDQxHYK2tunGA9_b-u581hPcvNnZ5NmmaMua0,731
61
61
  orionis/console/entities/scheduler_error.py,sha256=4nedVmkx69IeZzmilCcH5AeghkS2zblwNpsK12bcxHQ,717
62
- orionis/console/entities/scheduler_event_data.py,sha256=2BvWGhk48B3PsivaFuF10yl4UpG70k2gTn6ghhlHBN8,840
62
+ orionis/console/entities/scheduler_event_data.py,sha256=w8JF83axusNhCoY2hJ8PpZR3rQRu1l5g7wqT1GBqW08,811
63
63
  orionis/console/entities/scheduler_paused.py,sha256=YwiVM2lDWOEdFHP4m-BLHFMiwQmZ6Cvknhl5FGDwf9M,557
64
64
  orionis/console/entities/scheduler_resumed.py,sha256=GT-QvvP38Qhr9ZnrHTCuDKFubRdAi3yVh58_W0YXqlk,735
65
65
  orionis/console/entities/scheduler_shutdown.py,sha256=vRFXUt3hxKueaT6M4335HFL3NO3pe8QB9CSMvW_4PB0,900
@@ -75,14 +75,14 @@ orionis/console/exceptions/cli_runtime_error.py,sha256=DaCDGu6mXBk1LIzc7cwRROw1m
75
75
  orionis/console/exceptions/cli_schedule_exception.py,sha256=IBbXb_5zi02pyo1laHdjGn6FYZK7WWRp4j2fkZOCT6I,1161
76
76
  orionis/console/fluent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
77
  orionis/console/fluent/command.py,sha256=ayEh2fH83pCITyYUXHvt2jEgjMU63zdgRRYVdvUgFvk,8195
78
- orionis/console/fluent/event.py,sha256=mqp55Dz3LPFHi9MmzZkLMPXhuLyxOCGICZhCU8-gHig,166482
78
+ orionis/console/fluent/event.py,sha256=kEynb0mQDyEiTiEnctoJoPizFfe0TkySOsMaECob3UY,166495
79
79
  orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
80
  orionis/console/output/console.py,sha256=EtSDWRBW8wk0iJdPfB1mzU49krLJBaSAUdVdVOzzhQ4,17888
81
81
  orionis/console/output/executor.py,sha256=uQjFPOlyZLFj9pcyYPugCqxwJog0AJgK1OcmQH2ELbw,7314
82
82
  orionis/console/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
83
  orionis/console/request/cli_request.py,sha256=zFuoFzLVDCcSNcJZAuLAlsc9jfhck5o23qaKc2C0QAg,13231
84
84
  orionis/console/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
- orionis/console/tasks/schedule.py,sha256=FgZWJtfXRcZ_-FfJaxP1LzHmDtm5QD9QRRCJ--QMqK8,83385
85
+ orionis/console/tasks/schedule.py,sha256=qFnzoLyK69iaKEWMfEVxLs3S9aWVRzD4G6emTFhJMaY,83386
86
86
  orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
87
  orionis/container/container.py,sha256=9beW1IQzgZkgVIMo0ePBAkTz7bnNz3GNZZDRogMp8AI,96902
88
88
  orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -101,11 +101,11 @@ orionis/container/exceptions/exception.py,sha256=goTDEwC70xTMD2qppN8KV-xyR0Nps21
101
101
  orionis/container/exceptions/type.py,sha256=cYuvoXVOgRYj3tZPfK341aUERkf33-buOiI2eXxcrAw,470
102
102
  orionis/container/exceptions/value.py,sha256=hjY0YEusoL3DurME1ornxvIv1wyGaf6tBggLFlGHblo,472
103
103
  orionis/container/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
- orionis/container/facades/facade.py,sha256=_qoidPjtN5rPHTt9K9KpVLMVIliHlROeO0Xr_ySyzz0,3695
104
+ orionis/container/facades/facade.py,sha256=_ZdKZsndL0euf0SVZ0BCUM2tleAYlNN1tLxqRduoN5s,3690
105
105
  orionis/container/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
106
  orionis/container/providers/service_provider.py,sha256=RqXpn8krFA3tt_m9CEG7-na7szp-zqfirO4DzpCHpF4,1685
107
107
  orionis/container/validators/__init__.py,sha256=iJ_cY8U0EkpnZOU4_LANGKHFkvHeV0vH5bjbYr1fdSg,609
108
- orionis/container/validators/implements.py,sha256=xDXK7yhG5GGGRT9Mj1UbbVrcVTgifmjFZdaAJG4Ke8o,3110
108
+ orionis/container/validators/implements.py,sha256=6q6abRSXxpByIGGb_C5P3qGkvyX5zogOceFt9DPzUdI,3110
109
109
  orionis/container/validators/is_abstract_class.py,sha256=vJqUPn610YZS0sEkV8c_gPZskIgWmFHjg3D3MF2OTs8,1141
110
110
  orionis/container/validators/is_callable.py,sha256=ZW-e3ljJGXbD9GUEfPNqVcyBbpVHFlfYaTf9rSmJmBk,824
111
111
  orionis/container/validators/is_concrete_class.py,sha256=CLStCMuf40amVLvg1x0utlUz64xJnp9guc8j50J95d8,1187
@@ -150,10 +150,10 @@ orionis/foundation/config/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
150
150
  orionis/foundation/config/database/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
151
  orionis/foundation/config/database/entities/connections.py,sha256=jouNerG3hueYsmyhtY3wsoZYA5MSgooXS-aHHsn0bac,3797
152
152
  orionis/foundation/config/database/entities/database.py,sha256=S3BkRaNsnH-_AlOwtPayT2OO0JPO0BNXoDFG-xfHdKM,2668
153
- orionis/foundation/config/database/entities/mysql.py,sha256=VjCgZF5f3TLs5vjB5akFJyuXJ_u5x-n1sLjhTqP9120,10044
153
+ orionis/foundation/config/database/entities/mysql.py,sha256=pGw7cEDEZWyVcUPjEnYi9tn0DeBjFkdzvRt-veymPAs,10043
154
154
  orionis/foundation/config/database/entities/oracle.py,sha256=M4ljgz0ZtXxNhtymr4nRoJWtuFvd-IDnlMxSG2Rwk7Y,9119
155
155
  orionis/foundation/config/database/entities/pgsql.py,sha256=Q_PdzTel1Ryl6d5m-kaETEdn-Gixy_xG011652lXUqs,8007
156
- orionis/foundation/config/database/entities/sqlite.py,sha256=I59GwCainSJfeeZAUBQds4nDFJGj8ILCjX2U-j2ycwU,7445
156
+ orionis/foundation/config/database/entities/sqlite.py,sha256=lQmy5gty-znFtCftD8p5eQEOJhMbb3Hryfzab5mKOOA,7444
157
157
  orionis/foundation/config/database/enums/__init__.py,sha256=wmlUMR0hNRBGZfrPGbPCDO_rpa7OF-2pEXkRnL5iMbM,992
158
158
  orionis/foundation/config/database/enums/mysql_charsets.py,sha256=bK-pYPccYi9OKZ7a7SIyShtSwWlkCX2BwVaGBOp7oSo,2770
159
159
  orionis/foundation/config/database/enums/mysql_collations.py,sha256=x908jTm68viR7FIa6tNjlmxP5xRI71pzVB60ZT-qqI0,2908
@@ -241,7 +241,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=1do4B09bU_6xbFHHVYYTGM
241
241
  orionis/foundation/providers/testing_provider.py,sha256=SrJRpdvcblx9WvX7x9Y3zc7OQfiTf7la0HAJrm2ESlE,3725
242
242
  orionis/foundation/providers/workers_provider.py,sha256=oa_2NIDH6UxZrtuGkkoo_zEoNIMGgJ46vg5CCgAm7wI,3926
243
243
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
244
- orionis/metadata/framework.py,sha256=4_iSFWFUaK4D9oCm59e1oGvA6vtAyMjugOp_Fsg1P9g,4109
244
+ orionis/metadata/framework.py,sha256=C4MWYlBClVCqfhqB8_2--ptx8_-bXOm1ytGeCMzjRa4,4109
245
245
  orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
246
246
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
247
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -275,7 +275,7 @@ orionis/services/environment/validators/types.py,sha256=hiTszo7hS_1zQLclUIDOFUTG
275
275
  orionis/services/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
276
276
  orionis/services/file/directory.py,sha256=UTLFmwzjl09Nbe8gUTmQ9dQ9FV2aUZLyzYrXHHjVnws,8226
277
277
  orionis/services/file/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
- orionis/services/file/contracts/directory.py,sha256=TB1GOKYOBmcOwzT0wZTtP6KOP_RySMU3kL1yFiLvE14,7086
278
+ orionis/services/file/contracts/directory.py,sha256=sh73-wPSMYghYw6NymLDfi8_GhTsRDLFhkVvVEkJgVs,7019
279
279
  orionis/services/inspirational/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
280
280
  orionis/services/inspirational/inspire.py,sha256=dUxwkNLjKC4jdi06cVB1gfyB2zHjfgdhYhwKtsOTf0Q,4090
281
281
  orionis/services/inspirational/quotes.py,sha256=9hCIEFE0DdfXLaGq_SzFpXlC2AbGSnuFLzyec4Rd1H0,53455
@@ -284,7 +284,7 @@ orionis/services/inspirational/contracts/inspire.py,sha256=--GGHAIxeEjQS0Ra3bilZ
284
284
  orionis/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
285
  orionis/services/introspection/reflection.py,sha256=_Wdy8Wtt3RKXAqg9o5rvYa_Hyu-Z4674LKnNVg7u7pU,11467
286
286
  orionis/services/introspection/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
287
- orionis/services/introspection/abstract/reflection.py,sha256=utltfup1o-ttpdR7m4TkyRhbWcieNTZk8oMItvCziIc,50286
287
+ orionis/services/introspection/abstract/reflection.py,sha256=61u_xNf8-O0QOI7cIa5ZUrH8Gyf-3r3poCSEB9hxY4c,50284
288
288
  orionis/services/introspection/abstract/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
289
  orionis/services/introspection/abstract/contracts/reflection.py,sha256=UbRcqXahQ75RaLguH5qqMHHD_6Mr1Y0SH61K6VLfbc4,23562
290
290
  orionis/services/introspection/callables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -292,7 +292,7 @@ orionis/services/introspection/callables/reflection.py,sha256=zzxrjExc2iIlfs3xfo
292
292
  orionis/services/introspection/callables/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
293
293
  orionis/services/introspection/callables/contracts/reflection.py,sha256=EZi9VfTf5GJBnMd47j_oJ8dENQ5-HzDbQ-4zSffrvpM,5523
294
294
  orionis/services/introspection/concretes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
- orionis/services/introspection/concretes/reflection.py,sha256=5DkNr6gUYdccSo7htzILoV38OAJCwLz-jLXViqZg6eY,55916
295
+ orionis/services/introspection/concretes/reflection.py,sha256=BMMcAsgnXW0-FCzMXDaZ9LcDhMtGPmjw5ahZmbuWXtk,55914
296
296
  orionis/services/introspection/concretes/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
297
  orionis/services/introspection/concretes/contracts/reflection.py,sha256=LwEAgdN_WLCfS9b8pnFRVfN0PTRK4Br9qngu5km5aIk,24955
298
298
  orionis/services/introspection/dataclass/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -309,7 +309,7 @@ orionis/services/introspection/exceptions/attribute.py,sha256=_JerTjfhikYwC2FKJV
309
309
  orionis/services/introspection/exceptions/type.py,sha256=73DB8JoTbxd7LNMnZKXf4jJ8OzLyC0HPXgDo5pffkYY,466
310
310
  orionis/services/introspection/exceptions/value.py,sha256=ywO_cwawEmB22uP3i4ofsZytO9QTbvy7axm9NzEfHr4,467
311
311
  orionis/services/introspection/instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
- orionis/services/introspection/instances/reflection.py,sha256=3PzyFwQkDzQaKrEh8ICZp6iSskaBvcV5A6Sn4jgBqcQ,55038
312
+ orionis/services/introspection/instances/reflection.py,sha256=mh3LRadeBaO14niwXx8TWma0SBuutKZY2Csg4kvwgiQ,55024
313
313
  orionis/services/introspection/instances/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
314
  orionis/services/introspection/instances/contracts/reflection.py,sha256=OBZ7vI6KsII76oqIF63v1I-msh94_xGfhPZQvqAVLgY,20834
315
315
  orionis/services/introspection/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -386,7 +386,7 @@ orionis/support/standard/exceptions/value.py,sha256=rsyWFQweImaJGTJa7Id7RhPlwWJ4
386
386
  orionis/support/wrapper/__init__.py,sha256=jGoWoIGYuRYqMYQKlrX7Dpcbg-AGkHoB_aM2xhu73yc,62
387
387
  orionis/support/wrapper/dot_dict.py,sha256=T8xWwwOhBZHNeXRwE_CxvOwG9UFxsLqNmOJjV2CNIrc,7284
388
388
  orionis/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
- orionis/test/kernel.py,sha256=QtnS3iPl5sMgTezrUd1Cxrhdgkcq11HYh4rJqIczcjc,5293
389
+ orionis/test/kernel.py,sha256=YzyjmeJn32XFisyNejGNsHwYosUQHuCF_Sy4LAiw-wM,5208
390
390
  orionis/test/cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
391
391
  orionis/test/cases/asynchronous.py,sha256=3e1Y3qzIxVU7i7lbLFEVyJ89IA74JsB7famx71W-p2E,1974
392
392
  orionis/test/cases/synchronous.py,sha256=S5jhuDEZ5I9wosrTFaCtowkD5r5HzJH6mKPOdEJcDJE,1734
@@ -399,7 +399,7 @@ orionis/test/contracts/render.py,sha256=wpDQzUtT0r8KFZ7zPcxWHXQ1EVNKxzA_rZ6ZKUcZ
399
399
  orionis/test/contracts/test_result.py,sha256=SNXJ2UerkweYn7uCT0i0HmMGP0XBrL_9KJs-0ZvIYU4,4002
400
400
  orionis/test/contracts/unit_test.py,sha256=getqaBoadQT_wh_V6aTQvm0yx9IgbVrE9EEOD8b031g,8031
401
401
  orionis/test/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
402
- orionis/test/core/unit_test.py,sha256=vXSMRRGARAseNX9ong79AI-l8zefu03anoFinXeuhzA,64753
402
+ orionis/test/core/unit_test.py,sha256=nOb5UIeMHu16K3vaB0GF9-QtdEKE6F8OghvXd9tP80s,64748
403
403
  orionis/test/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
404
404
  orionis/test/entities/result.py,sha256=IMAd1AiwOf2z8krTDBFMpQe_1PG4YJ5Z0qpbr9xZwjg,4507
405
405
  orionis/test/enums/__init__.py,sha256=M3imAgMvKFTKg55FbtVoY3zxj7QRY9AfaUWxiSZVvn4,66
@@ -433,8 +433,8 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
433
433
  orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnIfJYgc,1206
434
434
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
435
435
  orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
436
- orionis-0.553.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
437
- orionis-0.553.0.dist-info/METADATA,sha256=L10AedW7Tx0tIC8ihqSX7oFQxeGY2ErwCZytYmeEHks,4801
438
- orionis-0.553.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
439
- orionis-0.553.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
440
- orionis-0.553.0.dist-info/RECORD,,
436
+ orionis-0.555.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
437
+ orionis-0.555.0.dist-info/METADATA,sha256=lbvNcA2N212u3ZOKFdJA_RIt1XxW7iQiAPLHKx1AjsE,4801
438
+ orionis-0.555.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
439
+ orionis-0.555.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
440
+ orionis-0.555.0.dist-info/RECORD,,