orionis 0.515.0__py3-none-any.whl → 0.517.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.
@@ -13,7 +13,7 @@ class BaseScheduler(IBaseScheduler):
13
13
  # Finalize Global Scheduler at a specific time
14
14
  FINALIZE_AT: datetime = None
15
15
 
16
- def tasks(self, schedule: ISchedule):
16
+ async def tasks(self, schedule: ISchedule):
17
17
  """
18
18
  Defines and registers scheduled tasks for the application.
19
19
 
@@ -31,7 +31,7 @@ class BaseScheduler(IBaseScheduler):
31
31
  # Placeholder for task registration logic
32
32
  pass
33
33
 
34
- def onStarted(self):
34
+ async def onStarted(self):
35
35
  """
36
36
  Called when the scheduler is started.
37
37
 
@@ -48,7 +48,7 @@ class BaseScheduler(IBaseScheduler):
48
48
  # Placeholder for logic to execute when the scheduler starts
49
49
  pass
50
50
 
51
- def onPaused(self):
51
+ async def onPaused(self):
52
52
  """
53
53
  Called when the scheduler is paused.
54
54
 
@@ -65,7 +65,7 @@ class BaseScheduler(IBaseScheduler):
65
65
  # Placeholder for logic to execute when the scheduler is paused
66
66
  pass
67
67
 
68
- def onResumed(self):
68
+ async def onResumed(self):
69
69
  """
70
70
  Called when the scheduler is resumed from a paused state.
71
71
 
@@ -82,7 +82,7 @@ class BaseScheduler(IBaseScheduler):
82
82
  # Placeholder for logic to execute when the scheduler is resumed
83
83
  pass
84
84
 
85
- def onFinalized(self):
85
+ async def onFinalized(self):
86
86
  """
87
87
  Called when the scheduler has completed its execution and is being finalized.
88
88
 
@@ -98,7 +98,7 @@ class BaseScheduler(IBaseScheduler):
98
98
  # Placeholder for logic to execute when the scheduler is finalized
99
99
  pass
100
100
 
101
- def onError(self, error: Exception):
101
+ async def onError(self, error: Exception):
102
102
  """
103
103
  Handles errors that occur within the scheduler.
104
104
 
@@ -4,9 +4,7 @@ from rich.table import Table
4
4
  from orionis.console.base.command import BaseCommand
5
5
  from orionis.console.contracts.schedule import ISchedule
6
6
  from orionis.console.exceptions import CLIOrionisRuntimeError
7
- from orionis.container.exceptions.exception import OrionisContainerException
8
7
  from orionis.foundation.contracts.application import IApplication
9
- from orionis.foundation.exceptions.runtime import OrionisRuntimeError
10
8
 
11
9
  class ScheduleListCommand(BaseCommand):
12
10
  """
@@ -112,10 +110,6 @@ class ScheduleListCommand(BaseCommand):
112
110
 
113
111
  except Exception as e:
114
112
 
115
- # If the exception is already a CLIOrionisRuntimeError or OrionisContainerException, re-raise it
116
- if isinstance(e, (OrionisRuntimeError, OrionisContainerException)):
117
- raise
118
-
119
113
  # Catch any unexpected exceptions and raise as a CLIOrionisRuntimeError
120
114
  raise CLIOrionisRuntimeError(
121
115
  f"An unexpected error occurred while listing the scheduled jobs: {e}"
@@ -14,7 +14,7 @@ class IBaseScheduler(ABC):
14
14
  FINALIZE_AT: datetime = None
15
15
 
16
16
  @abstractmethod
17
- def tasks(self, schedule: ISchedule):
17
+ async def tasks(self, schedule: ISchedule):
18
18
  """
19
19
  Defines and registers scheduled tasks for the application.
20
20
 
@@ -40,7 +40,7 @@ class IBaseScheduler(ABC):
40
40
  pass
41
41
 
42
42
  @abstractmethod
43
- def onStarted(self):
43
+ async def onStarted(self):
44
44
  """
45
45
  Called when the scheduler is started.
46
46
 
@@ -59,7 +59,7 @@ class IBaseScheduler(ABC):
59
59
  pass
60
60
 
61
61
  @abstractmethod
62
- def onPaused(self):
62
+ async def onPaused(self):
63
63
  """
64
64
  Called when the scheduler is paused.
65
65
 
@@ -78,7 +78,7 @@ class IBaseScheduler(ABC):
78
78
  pass
79
79
 
80
80
  @abstractmethod
81
- def onResumed(self):
81
+ async def onResumed(self):
82
82
  """
83
83
  Called when the scheduler is resumed from a paused state.
84
84
 
@@ -97,7 +97,7 @@ class IBaseScheduler(ABC):
97
97
  pass
98
98
 
99
99
  @abstractmethod
100
- def onFinalized(self):
100
+ async def onFinalized(self):
101
101
  """
102
102
  Called when the scheduler has completed its execution and is being finalized.
103
103
 
@@ -116,7 +116,7 @@ class IBaseScheduler(ABC):
116
116
  pass
117
117
 
118
118
  @abstractmethod
119
- def onError(self, error: Exception):
119
+ async def onError(self, error: Exception):
120
120
  """
121
121
  Handles errors that occur within the scheduler.
122
122
 
@@ -125,7 +125,7 @@ class Event(IEvent):
125
125
  raise CLIOrionisValueError("Details must be a string or None.")
126
126
 
127
127
  # Validate that listener is an IScheduleEventListener instance if it is set
128
- if self.__listener is not None and not isinstance(self.__listener, IScheduleEventListener):
128
+ if self.__listener is not None and not issubclass(self.__listener, IScheduleEventListener):
129
129
  raise CLIOrionisValueError("Listener must implement IScheduleEventListener interface or be None.")
130
130
 
131
131
  # Construct and return an EventEntity with the current event's attributes
@@ -351,7 +351,7 @@ class Event(IEvent):
351
351
  """
352
352
 
353
353
  # Validate that the provided listener is an instance of IScheduleEventListener
354
- if not isinstance(listener, IScheduleEventListener):
354
+ if not issubclass(listener, IScheduleEventListener):
355
355
  raise CLIOrionisValueError("Listener must be an instance of IScheduleEventListener.")
356
356
 
357
357
  # Assign the listener to the event's internal listener attribute
@@ -524,10 +524,6 @@ class Scheduler(ISchedule):
524
524
  # Log an informational message indicating that the scheduler has been paused
525
525
  self.__logger.info(message)
526
526
 
527
- # Display a paused message for the scheduler worker on console
528
- if self.__app.config('app.debug', False):
529
- self.__console.info(message)
530
-
531
527
  # Check if a listener is registered for the scheduler started event
532
528
  self.__globalCallableListener(event, ListeningEvent.SCHEDULER_PAUSED)
533
529
 
@@ -565,10 +561,6 @@ class Scheduler(ISchedule):
565
561
  # Log an informational message indicating that the scheduler has resumed
566
562
  self.__logger.info(message)
567
563
 
568
- # Display a resumed message for the scheduler worker on console
569
- if self.__app.config('app.debug', False):
570
- self.__console.info(message)
571
-
572
564
  # Check if a listener is registered for the scheduler started event
573
565
  self.__globalCallableListener(event, ListeningEvent.SCHEDULER_RESUMED)
574
566
 
@@ -606,10 +598,6 @@ class Scheduler(ISchedule):
606
598
  # Log an informational message indicating that the scheduler has shut down
607
599
  self.__logger.info(message)
608
600
 
609
- # Display a shutdown message for the scheduler worker on console
610
- if self.__app.config('app.debug', False):
611
- self.__console.info(message)
612
-
613
601
  # Check if a listener is registered for the scheduler started event
614
602
  self.__globalCallableListener(event, ListeningEvent.SCHEDULER_SHUTDOWN)
615
603
 
@@ -644,10 +632,6 @@ class Scheduler(ISchedule):
644
632
  # Log an error message indicating that the job raised an exception
645
633
  self.__logger.error(message)
646
634
 
647
- # If the application is in debug mode, display a message on the console
648
- if self.__app.config('app.debug', False):
649
- self.__console.error(message)
650
-
651
635
  # If a listener is registered for this job ID, invoke the listener with the event details
652
636
  self.__taskCallableListener(event, ListeningEvent.JOB_ON_FAILURE)
653
637
 
@@ -685,10 +669,6 @@ class Scheduler(ISchedule):
685
669
  # Log an informational message indicating that the job has been submitted
686
670
  self.__logger.info(message)
687
671
 
688
- # If the application is in debug mode, display a message on the console
689
- if self.__app.config('app.debug', False):
690
- self.__console.info(message)
691
-
692
672
  # If a listener is registered for this job ID, invoke the listener with the event details
693
673
  self.__taskCallableListener(event, ListeningEvent.JOB_BEFORE)
694
674
 
@@ -724,10 +704,6 @@ class Scheduler(ISchedule):
724
704
  # Log an informational message indicating that the job has been executed
725
705
  self.__logger.info(message)
726
706
 
727
- # If the application is in debug mode, display a message on the console
728
- if self.__app.config('app.debug', False):
729
- self.__console.info(message)
730
-
731
707
  # If a listener is registered for this job ID, invoke the listener with the event details
732
708
  self.__taskCallableListener(event, ListeningEvent.JOB_AFTER)
733
709
 
@@ -763,10 +739,6 @@ class Scheduler(ISchedule):
763
739
  # Log a warning indicating that the job was missed
764
740
  self.__logger.warning(message)
765
741
 
766
- # If the application is in debug mode, report the missed job using the error reporter
767
- if self.__app.config('app.debug', False):
768
- self.__console.warning(message)
769
-
770
742
  # If a listener is registered for this job ID, invoke the listener with the event details
771
743
  self.__taskCallableListener(event, ListeningEvent.JOB_ON_MISSED)
772
744
 
@@ -802,10 +774,6 @@ class Scheduler(ISchedule):
802
774
  # Log an error message indicating that the job exceeded maximum instances
803
775
  self.__logger.error(message)
804
776
 
805
- # If the application is in debug mode, display a message on the console
806
- if self.__app.config('app.debug', False):
807
- self.__console.error(message)
808
-
809
777
  # If a listener is registered for this job ID, invoke the listener with the event details
810
778
  self.__taskCallableListener(event, ListeningEvent.JOB_ON_MAXINSTANCES)
811
779
 
@@ -841,10 +809,6 @@ class Scheduler(ISchedule):
841
809
  # Log an informational message indicating that the job has been modified
842
810
  self.__logger.info(message)
843
811
 
844
- # If the application is in debug mode, display a message on the console
845
- if self.__app.config('app.debug', False):
846
- self.__console.info(message)
847
-
848
812
  # If a listener is registered for this job ID, invoke the listener with the event details
849
813
  if event.next_run_time is None:
850
814
  self.__taskCallableListener(event, ListeningEvent.JOB_ON_PAUSED)
@@ -882,10 +846,6 @@ class Scheduler(ISchedule):
882
846
  # Log the removal of the job
883
847
  self.__logger.info(message)
884
848
 
885
- # If the application is in debug mode, display the message on the console
886
- if self.__app.config('app.debug', False):
887
- self.__console.info(message)
888
-
889
849
  # If a listener is registered for this job ID, invoke the listener with the event details
890
850
  self.__taskCallableListener(event, ListeningEvent.JOB_ON_REMOVED)
891
851
 
@@ -931,7 +891,7 @@ class Scheduler(ISchedule):
931
891
 
932
892
  # If a listener is associated with the event, register it
933
893
  if entity.listener:
934
- self._setListener(signature, entity.listener)
894
+ self.setListener(signature, entity.listener)
935
895
 
936
896
  def setListener(
937
897
  self,
@@ -1245,6 +1205,8 @@ class Scheduler(ISchedule):
1245
1205
 
1246
1206
  # Log the successful pausing of the job
1247
1207
  self.__logger.info(f"Job '{signature}' has been paused.")
1208
+
1209
+ # Return True to indicate the job was successfully paused
1248
1210
  return True
1249
1211
 
1250
1212
  except Exception:
@@ -1288,6 +1250,8 @@ class Scheduler(ISchedule):
1288
1250
 
1289
1251
  # Log the successful resumption of the job
1290
1252
  self.__logger.info(f"Job '{signature}' has been resumed.")
1253
+
1254
+ # Return True to indicate the job was successfully resumed
1291
1255
  return True
1292
1256
 
1293
1257
  except Exception:
@@ -1339,6 +1303,8 @@ class Scheduler(ISchedule):
1339
1303
 
1340
1304
  # Log the successful removal of the job
1341
1305
  self.__logger.info(f"Job '{signature}' has been removed from the scheduler.")
1306
+
1307
+ # Return True to indicate the job was successfully removed
1342
1308
  return True
1343
1309
 
1344
1310
  except Exception:
@@ -1378,13 +1344,13 @@ class Scheduler(ISchedule):
1378
1344
  for job in self.__jobs:
1379
1345
  # Append a dictionary with relevant job details to the events list
1380
1346
  events.append({
1381
- 'signature': job['signature'],
1382
- 'args': job['args'],
1383
- 'purpose': job['purpose'],
1384
- 'random_delay': job['random_delay'],
1385
- 'start_date': job['start_date'].strftime('%Y-%m-%d %H:%M:%S') if job['start_date'] else None,
1386
- 'end_date': job['end_date'].strftime('%Y-%m-%d %H:%M:%S') if job['end_date'] else None,
1387
- 'details': job['details']
1347
+ 'signature': job.signature,
1348
+ 'args': job.args,
1349
+ 'purpose': job.purpose,
1350
+ 'random_delay': job.random_delay,
1351
+ 'start_date': job.start_date.strftime('%Y-%m-%d %H:%M:%S') if job.start_date else None,
1352
+ 'end_date': job.end_date.strftime('%Y-%m-%d %H:%M:%S') if job.end_date else None,
1353
+ 'details': job.details
1388
1354
  })
1389
1355
 
1390
1356
  # Return the list of scheduled job details
@@ -5,7 +5,7 @@
5
5
  NAME = "orionis"
6
6
 
7
7
  # Current version of the framework
8
- VERSION = "0.515.0"
8
+ VERSION = "0.517.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,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.515.0
3
+ Version: 0.517.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
@@ -8,13 +8,13 @@ orionis/console/args/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
8
8
  orionis/console/args/enums/actions.py,sha256=S3T-vWS6DJSGtANrq3od3-90iYAjPvJwaOZ2V02y34c,1222
9
9
  orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  orionis/console/base/command.py,sha256=OM4xqVgpv_1RZVyVG8BzOHl1sP9FT5mPUwZjMil8IRg,6637
11
- orionis/console/base/scheduler.py,sha256=5B1msuEwvEdaUIFzaLU8-QtfrbqduIkXfM7pubWhoZg,3375
11
+ orionis/console/base/scheduler.py,sha256=7NPh4hGXMBvHzt8L_ouY6j_dVjdJSNrT3CUegOlD5_g,3411
12
12
  orionis/console/base/scheduler_event_listener.py,sha256=5qWPmf6jmiRwUz6U1ZvpQCG5eovOpeCl0KAb8kKDkfU,3905
13
13
  orionis/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  orionis/console/commands/cache.py,sha256=8DsYoRzSBLn0P9qkGVItRbo0R6snWBDBg0_Xa7tmVhs,2322
15
15
  orionis/console/commands/help.py,sha256=zfSw0pYaOnFN-_Ozdn4veBQDYMgSSDY10nPDCi-7tTY,3199
16
16
  orionis/console/commands/publisher.py,sha256=FUg-EUzK7LLXsla10ZUZro8V0Z5S-KjmsaSdRHSSGbA,21381
17
- orionis/console/commands/scheduler_list.py,sha256=6jVuHwVC33_0gXiXxVefyTvOj94gOZ2P5G-vwDAmF6U,5191
17
+ orionis/console/commands/scheduler_list.py,sha256=iPO-tc5qj-Q17lL_1MRSCaRov_o4GoQcnWTATLKPeLE,4826
18
18
  orionis/console/commands/scheduler_work.py,sha256=yHTbnDH1frAmyvPaUgn0a5q34Eym9QYMXdqYZWwodFs,6336
19
19
  orionis/console/commands/test.py,sha256=-EmQwFwMBuby3OI9HwqMIwuJzd2CGbWbOqmwrR25sOE,2402
20
20
  orionis/console/commands/version.py,sha256=SUuNDJ40f2uq69OQUmPQXJKaa9Bm_iVRDPmBd7zc1Yc,3658
@@ -26,7 +26,7 @@ orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01
26
26
  orionis/console/contracts/reactor.py,sha256=Xeq7Zrw6WE5MV_XOQfiQEchAFbb6-0TjLpjWOxYW--g,4554
27
27
  orionis/console/contracts/schedule.py,sha256=17cfPYtLo-jqF8FxYOhh4epJZnxw5mMPuLGaWoUwxL4,12171
28
28
  orionis/console/contracts/schedule_event_listener.py,sha256=G-Ye9YIzfeXFcJD1jqNOy7Cj_-VQGq0ynXZCTPTp7Mc,11550
29
- orionis/console/contracts/scheduler.py,sha256=90QoeoUGOLgLhzCKbWHpuAdWzmHiV1FQXrhzJajLMBA,4354
29
+ orionis/console/contracts/scheduler.py,sha256=hZ6NnI2iWx7atFkc1ou28nL5HVAya9_E7eIAE21sUBg,4390
30
30
  orionis/console/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
31
  orionis/console/core/reactor.py,sha256=JlxNiqmyzAqiS21hxOMD5ELiDNPzmGHYDNrdlaMvYuI,30409
32
32
  orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -79,9 +79,9 @@ orionis/console/output/enums/__init__.py,sha256=LAaAxg-DpArCjf_jqZ0_9s3p8899gntD
79
79
  orionis/console/output/enums/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
80
80
  orionis/console/request/cli_request.py,sha256=7-sgYmNUCipuHLVAwWLJiHv0cJCDmsM1Lu9s2D8RIII,1498
81
81
  orionis/console/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
- orionis/console/tasks/event.py,sha256=AlOO--HNaUyZ5MXZsKSJJnQnLhZwqg52NvwsdSF8LEk,164395
82
+ orionis/console/tasks/event.py,sha256=l4J-HEPaj1mxB_PYQMgG9dRHUe01wUag8fKLLnR2N2M,164395
83
83
  orionis/console/tasks/listener.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
- orionis/console/tasks/schedule.py,sha256=RUw1NedN4HhX302GA3LL2iYupHrlnBw4oJ3A-75qFKw,58386
84
+ orionis/console/tasks/schedule.py,sha256=dDLmzS-tkEjM335eOEYUam4e4GJbn9Y0-Dkv3QeGXmE,56822
85
85
  orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
86
  orionis/container/container.py,sha256=aF_b6lTUpG4YCo9yFJEzsntTdIzgMMXFW5LyWqAJVBQ,87987
87
87
  orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -239,7 +239,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=72SoixFog9IOE9Ve9Xcfw6
239
239
  orionis/foundation/providers/testing_provider.py,sha256=SrJRpdvcblx9WvX7x9Y3zc7OQfiTf7la0HAJrm2ESlE,3725
240
240
  orionis/foundation/providers/workers_provider.py,sha256=oa_2NIDH6UxZrtuGkkoo_zEoNIMGgJ46vg5CCgAm7wI,3926
241
241
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
242
- orionis/metadata/framework.py,sha256=NX9s158qw4HYWnSebD10NH2K96w6guzjg19E4cNeQvo,4109
242
+ orionis/metadata/framework.py,sha256=T9jJ0NpYlmZoEjJNLXTN6HmuQsJvvZiupVmPZ-nxwJY,4109
243
243
  orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
244
244
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
245
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -415,7 +415,7 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
415
415
  orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnIfJYgc,1206
416
416
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
417
417
  orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
418
- orionis-0.515.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
418
+ orionis-0.517.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
419
419
  tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
420
  tests/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
421
421
  tests/container/context/test_manager.py,sha256=wOwXpl9rHNfTTexa9GBKYMwK0_-KSQPbI-AEyGNkmAE,1356
@@ -561,8 +561,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
561
561
  tests/testing/validators/test_testing_validators.py,sha256=WPo5GxTP6xE-Dw3X1vZoqOMpb6HhokjNSbgDsDRDvy4,16588
562
562
  tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
563
563
  tests/testing/view/test_render.py,sha256=tnnMBwS0iKUIbogLvu-7Rii50G6Koddp3XT4wgdFEYM,1050
564
- orionis-0.515.0.dist-info/METADATA,sha256=-xx0tu52QgewV5qxx1herLongep9WZoVtALqEI6GEpw,4801
565
- orionis-0.515.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
566
- orionis-0.515.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
567
- orionis-0.515.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
568
- orionis-0.515.0.dist-info/RECORD,,
564
+ orionis-0.517.0.dist-info/METADATA,sha256=13OdgPFP1n7EkD1yD_vlDjaI8F6bTOKvzwTQAkuTs7E,4801
565
+ orionis-0.517.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
566
+ orionis-0.517.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
567
+ orionis-0.517.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
568
+ orionis-0.517.0.dist-info/RECORD,,