orionis 0.483.0__py3-none-any.whl → 0.485.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/base/scheduler.py +56 -0
- orionis/console/commands/scheduler_list.py +30 -51
- orionis/console/commands/scheduler_work.py +13 -38
- orionis/console/commands/test.py +0 -1
- orionis/console/contracts/event_listener.py +27 -0
- orionis/console/core/reactor.py +3 -4
- orionis/console/entities/__init__.py +0 -0
- orionis/console/entities/listeners.py +241 -0
- orionis/console/tasks/event.py +7 -0
- orionis/console/tasks/listener.py +0 -0
- orionis/console/tasks/schedule.py +23 -2
- orionis/foundation/application.py +157 -100
- orionis/foundation/config/roots/paths.py +40 -45
- orionis/foundation/contracts/application.py +60 -0
- orionis/metadata/framework.py +1 -1
- orionis/services/file/__init__.py +0 -0
- orionis/services/file/directory.py +312 -0
- orionis/services/file/storage.py +7 -0
- {orionis-0.483.0.dist-info → orionis-0.485.0.dist-info}/METADATA +1 -1
- {orionis-0.483.0.dist-info → orionis-0.485.0.dist-info}/RECORD +25 -17
- tests/foundation/config/root/test_foundation_config_root_paths.py +1 -1
- {orionis-0.483.0.dist-info → orionis-0.485.0.dist-info}/WHEEL +0 -0
- {orionis-0.483.0.dist-info → orionis-0.485.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.483.0.dist-info → orionis-0.485.0.dist-info}/top_level.txt +0 -0
- {orionis-0.483.0.dist-info → orionis-0.485.0.dist-info}/zip-safe +0 -0
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
from orionis.foundation.contracts.application import IApplication
|
|
3
|
+
|
|
4
|
+
class Directory:
|
|
5
|
+
"""
|
|
6
|
+
Provides convenient access to various application directories.
|
|
7
|
+
|
|
8
|
+
This class uses the application instance to resolve and return
|
|
9
|
+
paths to different directories within the application's structure.
|
|
10
|
+
|
|
11
|
+
Parameters
|
|
12
|
+
----------
|
|
13
|
+
app : IApplication
|
|
14
|
+
The application instance used to resolve directory paths.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
def __init__(self, app: IApplication) -> None:
|
|
18
|
+
"""
|
|
19
|
+
Initialize the Directory with an application instance.
|
|
20
|
+
|
|
21
|
+
Parameters
|
|
22
|
+
----------
|
|
23
|
+
app : IApplication
|
|
24
|
+
The application instance used to resolve directory paths.
|
|
25
|
+
"""
|
|
26
|
+
self.__app = app
|
|
27
|
+
|
|
28
|
+
def root(self) -> Path:
|
|
29
|
+
"""
|
|
30
|
+
Get the root directory path of the application.
|
|
31
|
+
|
|
32
|
+
Returns
|
|
33
|
+
-------
|
|
34
|
+
Path
|
|
35
|
+
The path to the application's root directory.
|
|
36
|
+
"""
|
|
37
|
+
return Path(self.__app.path('root'))
|
|
38
|
+
|
|
39
|
+
def commands(self) -> Path:
|
|
40
|
+
"""
|
|
41
|
+
Get the commands directory path.
|
|
42
|
+
|
|
43
|
+
Returns
|
|
44
|
+
-------
|
|
45
|
+
Path
|
|
46
|
+
The path to the commands directory.
|
|
47
|
+
"""
|
|
48
|
+
return Path(self.__app.path('commands'))
|
|
49
|
+
|
|
50
|
+
def controllers(self) -> Path:
|
|
51
|
+
"""
|
|
52
|
+
Get the controllers directory path.
|
|
53
|
+
|
|
54
|
+
Returns
|
|
55
|
+
-------
|
|
56
|
+
Path
|
|
57
|
+
The path to the controllers directory.
|
|
58
|
+
"""
|
|
59
|
+
return Path(self.__app.path('controllers'))
|
|
60
|
+
|
|
61
|
+
def middleware(self) -> Path:
|
|
62
|
+
"""
|
|
63
|
+
Get the middleware directory path.
|
|
64
|
+
|
|
65
|
+
Returns
|
|
66
|
+
-------
|
|
67
|
+
Path
|
|
68
|
+
The path to the middleware directory.
|
|
69
|
+
"""
|
|
70
|
+
return Path(self.__app.path('middleware'))
|
|
71
|
+
|
|
72
|
+
def requests(self) -> Path:
|
|
73
|
+
"""
|
|
74
|
+
Get the requests directory path.
|
|
75
|
+
|
|
76
|
+
Returns
|
|
77
|
+
-------
|
|
78
|
+
Path
|
|
79
|
+
The path to the requests directory.
|
|
80
|
+
"""
|
|
81
|
+
return Path(self.__app.path('requests'))
|
|
82
|
+
|
|
83
|
+
def models(self) -> Path:
|
|
84
|
+
"""
|
|
85
|
+
Get the models directory path.
|
|
86
|
+
|
|
87
|
+
Returns
|
|
88
|
+
-------
|
|
89
|
+
Path
|
|
90
|
+
The path to the models directory.
|
|
91
|
+
"""
|
|
92
|
+
return Path(self.__app.path('models'))
|
|
93
|
+
|
|
94
|
+
def providers(self) -> Path:
|
|
95
|
+
"""
|
|
96
|
+
Get the providers directory path.
|
|
97
|
+
|
|
98
|
+
Returns
|
|
99
|
+
-------
|
|
100
|
+
Path
|
|
101
|
+
The path to the providers directory.
|
|
102
|
+
"""
|
|
103
|
+
return Path(self.__app.path('providers'))
|
|
104
|
+
|
|
105
|
+
def events(self) -> Path:
|
|
106
|
+
"""
|
|
107
|
+
Get the events directory path.
|
|
108
|
+
|
|
109
|
+
Returns
|
|
110
|
+
-------
|
|
111
|
+
Path
|
|
112
|
+
The path to the events directory.
|
|
113
|
+
"""
|
|
114
|
+
return Path(self.__app.path('events'))
|
|
115
|
+
|
|
116
|
+
def listeners(self) -> Path:
|
|
117
|
+
"""
|
|
118
|
+
Get the listeners directory path.
|
|
119
|
+
|
|
120
|
+
Returns
|
|
121
|
+
-------
|
|
122
|
+
Path
|
|
123
|
+
The path to the listeners directory.
|
|
124
|
+
"""
|
|
125
|
+
return Path(self.__app.path('listeners'))
|
|
126
|
+
|
|
127
|
+
def notifications(self) -> Path:
|
|
128
|
+
"""
|
|
129
|
+
Get the notifications directory path.
|
|
130
|
+
|
|
131
|
+
Returns
|
|
132
|
+
-------
|
|
133
|
+
Path
|
|
134
|
+
The path to the notifications directory.
|
|
135
|
+
"""
|
|
136
|
+
return Path(self.__app.path('notifications'))
|
|
137
|
+
|
|
138
|
+
def jobs(self) -> Path:
|
|
139
|
+
"""
|
|
140
|
+
Get the jobs directory path.
|
|
141
|
+
|
|
142
|
+
Returns
|
|
143
|
+
-------
|
|
144
|
+
Path
|
|
145
|
+
The path to the jobs directory.
|
|
146
|
+
"""
|
|
147
|
+
return Path(self.__app.path('jobs'))
|
|
148
|
+
|
|
149
|
+
def policies(self) -> Path:
|
|
150
|
+
"""
|
|
151
|
+
Get the policies directory path.
|
|
152
|
+
|
|
153
|
+
Returns
|
|
154
|
+
-------
|
|
155
|
+
Path
|
|
156
|
+
The path to the policies directory.
|
|
157
|
+
"""
|
|
158
|
+
return Path(self.__app.path('policies'))
|
|
159
|
+
|
|
160
|
+
def exceptions(self) -> Path:
|
|
161
|
+
"""
|
|
162
|
+
Get the exceptions directory path.
|
|
163
|
+
|
|
164
|
+
Returns
|
|
165
|
+
-------
|
|
166
|
+
Path
|
|
167
|
+
The path to the exceptions directory.
|
|
168
|
+
"""
|
|
169
|
+
return Path(self.__app.path('exceptions'))
|
|
170
|
+
|
|
171
|
+
def services(self) -> Path:
|
|
172
|
+
"""
|
|
173
|
+
Get the services directory path.
|
|
174
|
+
|
|
175
|
+
Returns
|
|
176
|
+
-------
|
|
177
|
+
Path
|
|
178
|
+
The path to the services directory.
|
|
179
|
+
"""
|
|
180
|
+
return Path(self.__app.path('services'))
|
|
181
|
+
|
|
182
|
+
def views(self) -> Path:
|
|
183
|
+
"""
|
|
184
|
+
Get the views directory path.
|
|
185
|
+
|
|
186
|
+
Returns
|
|
187
|
+
-------
|
|
188
|
+
Path
|
|
189
|
+
The path to the views directory.
|
|
190
|
+
"""
|
|
191
|
+
return Path(self.__app.path('views'))
|
|
192
|
+
|
|
193
|
+
def lang(self) -> Path:
|
|
194
|
+
"""
|
|
195
|
+
Get the language files directory path.
|
|
196
|
+
|
|
197
|
+
Returns
|
|
198
|
+
-------
|
|
199
|
+
Path
|
|
200
|
+
The path to the language files directory.
|
|
201
|
+
"""
|
|
202
|
+
return Path(self.__app.path('lang'))
|
|
203
|
+
|
|
204
|
+
def assets(self) -> Path:
|
|
205
|
+
"""
|
|
206
|
+
Get the assets directory path.
|
|
207
|
+
|
|
208
|
+
Returns
|
|
209
|
+
-------
|
|
210
|
+
Path
|
|
211
|
+
The path to the assets directory.
|
|
212
|
+
"""
|
|
213
|
+
return Path(self.__app.path('assets'))
|
|
214
|
+
|
|
215
|
+
def routes(self) -> Path:
|
|
216
|
+
"""
|
|
217
|
+
Get the routes directory path.
|
|
218
|
+
|
|
219
|
+
Returns
|
|
220
|
+
-------
|
|
221
|
+
Path
|
|
222
|
+
The path to the routes directory.
|
|
223
|
+
"""
|
|
224
|
+
return Path(self.__app.path('routes'))
|
|
225
|
+
|
|
226
|
+
def config(self) -> Path:
|
|
227
|
+
"""
|
|
228
|
+
Get the configuration directory path.
|
|
229
|
+
|
|
230
|
+
Returns
|
|
231
|
+
-------
|
|
232
|
+
Path
|
|
233
|
+
The path to the configuration directory.
|
|
234
|
+
"""
|
|
235
|
+
return Path(self.__app.path('config'))
|
|
236
|
+
|
|
237
|
+
def migrations(self) -> Path:
|
|
238
|
+
"""
|
|
239
|
+
Get the migrations directory path.
|
|
240
|
+
|
|
241
|
+
Returns
|
|
242
|
+
-------
|
|
243
|
+
Path
|
|
244
|
+
The path to the migrations directory.
|
|
245
|
+
"""
|
|
246
|
+
return Path(self.__app.path('migrations'))
|
|
247
|
+
|
|
248
|
+
def seeders(self) -> Path:
|
|
249
|
+
"""
|
|
250
|
+
Get the seeders directory path.
|
|
251
|
+
|
|
252
|
+
Returns
|
|
253
|
+
-------
|
|
254
|
+
Path
|
|
255
|
+
The path to the seeders directory.
|
|
256
|
+
"""
|
|
257
|
+
return Path(self.__app.path('seeders'))
|
|
258
|
+
|
|
259
|
+
def factories(self) -> Path:
|
|
260
|
+
"""
|
|
261
|
+
Get the factories directory path.
|
|
262
|
+
|
|
263
|
+
Returns
|
|
264
|
+
-------
|
|
265
|
+
Path
|
|
266
|
+
The path to the factories directory.
|
|
267
|
+
"""
|
|
268
|
+
return Path(self.__app.path('factories'))
|
|
269
|
+
|
|
270
|
+
def logs(self) -> Path:
|
|
271
|
+
"""
|
|
272
|
+
Get the logs directory path.
|
|
273
|
+
|
|
274
|
+
Returns
|
|
275
|
+
-------
|
|
276
|
+
Path
|
|
277
|
+
The path to the logs directory.
|
|
278
|
+
"""
|
|
279
|
+
return Path(self.__app.path('logs'))
|
|
280
|
+
|
|
281
|
+
def sessions(self) -> Path:
|
|
282
|
+
"""
|
|
283
|
+
Get the sessions directory path.
|
|
284
|
+
|
|
285
|
+
Returns
|
|
286
|
+
-------
|
|
287
|
+
Path
|
|
288
|
+
The path to the sessions directory.
|
|
289
|
+
"""
|
|
290
|
+
return Path(self.__app.path('sessions'))
|
|
291
|
+
|
|
292
|
+
def cache(self) -> Path:
|
|
293
|
+
"""
|
|
294
|
+
Get the cache directory path.
|
|
295
|
+
|
|
296
|
+
Returns
|
|
297
|
+
-------
|
|
298
|
+
Path
|
|
299
|
+
The path to the cache directory.
|
|
300
|
+
"""
|
|
301
|
+
return Path(self.__app.path('cache'))
|
|
302
|
+
|
|
303
|
+
def testing(self) -> Path:
|
|
304
|
+
"""
|
|
305
|
+
Get the testing directory path.
|
|
306
|
+
|
|
307
|
+
Returns
|
|
308
|
+
-------
|
|
309
|
+
Path
|
|
310
|
+
The path to the testing directory.
|
|
311
|
+
"""
|
|
312
|
+
return Path(self.__app.path('testing'))
|
|
@@ -8,24 +8,26 @@ 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=nasVPyKEvuv8sDFEWXhHyBCWAmSLfPPm2XlKaYYt_pM,6642
|
|
11
|
+
orionis/console/base/scheduler.py,sha256=_wFjQ6xo2lBgIiydm-g2SXe0sBAuIRMu5ZvKmokunDU,1601
|
|
11
12
|
orionis/console/base/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
13
|
orionis/console/base/contracts/command.py,sha256=vmAJD0yMQ5-AD_s9_xCFEAl64sKk65z7U2E196dALQM,5760
|
|
13
14
|
orionis/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
15
|
orionis/console/commands/cache.py,sha256=8DsYoRzSBLn0P9qkGVItRbo0R6snWBDBg0_Xa7tmVhs,2322
|
|
15
16
|
orionis/console/commands/help.py,sha256=ooPoenP08ArMAWiL89_oUGD9l1Faen2QjLTG90i4zCQ,3187
|
|
16
17
|
orionis/console/commands/publisher.py,sha256=FUg-EUzK7LLXsla10ZUZro8V0Z5S-KjmsaSdRHSSGbA,21381
|
|
17
|
-
orionis/console/commands/scheduler_list.py,sha256
|
|
18
|
-
orionis/console/commands/scheduler_work.py,sha256=
|
|
19
|
-
orionis/console/commands/test.py,sha256
|
|
18
|
+
orionis/console/commands/scheduler_list.py,sha256=-SSxLG7In0gfCpTjaFG1_j-GkcHChXlC6jFQyX2EKW4,4851
|
|
19
|
+
orionis/console/commands/scheduler_work.py,sha256=BV9Fev13S479j6nz6XA3Uh2z3At-Y3277Pn4pSBC6Nc,4315
|
|
20
|
+
orionis/console/commands/test.py,sha256=-EmQwFwMBuby3OI9HwqMIwuJzd2CGbWbOqmwrR25sOE,2402
|
|
20
21
|
orionis/console/commands/version.py,sha256=SUuNDJ40f2uq69OQUmPQXJKaa9Bm_iVRDPmBd7zc1Yc,3658
|
|
21
22
|
orionis/console/commands/workflow.py,sha256=NYOmjTSvm2o6AE4h9LSTZMFSYPQreNmEJtronyOxaYk,2451
|
|
22
23
|
orionis/console/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
24
|
orionis/console/contracts/event.py,sha256=pxoxNjk31bt6yGvUFRTo_TI_SaZZar6iSIJARWR6KbM,5170
|
|
25
|
+
orionis/console/contracts/event_listener.py,sha256=88UKH20bcwHlJh61O_qXKqUD9qe0jMQVXXZdlwMkc2s,482
|
|
24
26
|
orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01IIHI5Y,826
|
|
25
27
|
orionis/console/contracts/reactor.py,sha256=Xeq7Zrw6WE5MV_XOQfiQEchAFbb6-0TjLpjWOxYW--g,4554
|
|
26
28
|
orionis/console/contracts/schedule.py,sha256=eGjcOH7kgdf0fWDZRfOFUQsIx4E8G38ayX5JwpkpN8E,4977
|
|
27
29
|
orionis/console/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
orionis/console/core/reactor.py,sha256=
|
|
30
|
+
orionis/console/core/reactor.py,sha256=wT0osBlPRMqseRG0UGqwt2t1nezPR8tnUhU4sXvYUzY,30342
|
|
29
31
|
orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
32
|
orionis/console/dumper/dump.py,sha256=CATERiQ6XuIrKQsDaWcVxzTtlAJI9qLJX44fQxEX8ws,22443
|
|
31
33
|
orionis/console/dumper/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -34,6 +36,8 @@ orionis/console/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
34
36
|
orionis/console/dynamic/progress_bar.py,sha256=iK1kAf9vJIgk6BbdlGvlJkGc1m7Ck4euNqQpg5aarW8,2880
|
|
35
37
|
orionis/console/dynamic/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
38
|
orionis/console/dynamic/contracts/progress_bar.py,sha256=NYebL2h-vg2t2H6IhJjuC37gglRkpT-MW71wbJtpLNg,1784
|
|
39
|
+
orionis/console/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
orionis/console/entities/listeners.py,sha256=I5JbbnwKz-ZQhQgS2r1wqfUTwagg8Os6qzfEY8FzVzg,5345
|
|
37
41
|
orionis/console/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
42
|
orionis/console/enums/command.py,sha256=lCfVp2vnDojJN2gjdVxE_XU3mRjZZgOIxPfBVQYo9w4,1278
|
|
39
43
|
orionis/console/enums/event.py,sha256=XRV7N14N5HHt-c0HqYhrbKv4n2P7ZOCcBT_3OAQzenU,1929
|
|
@@ -51,9 +55,10 @@ orionis/console/output/contracts/executor.py,sha256=7l3kwnvv6GlH9EYk0v94YE1olex_
|
|
|
51
55
|
orionis/console/output/enums/__init__.py,sha256=LAaAxg-DpArCjf_jqZ0_9s3p8899gntDYkSU_ppTdC8,66
|
|
52
56
|
orionis/console/output/enums/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
|
|
53
57
|
orionis/console/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
-
orionis/console/tasks/event.py,sha256=
|
|
58
|
+
orionis/console/tasks/event.py,sha256=6XHUKm5N-vXoj9m0zKl_PlpbA_6jkxq3ILJY4Ys8eUM,12210
|
|
55
59
|
orionis/console/tasks/exception_report.py,sha256=IN1PCQ08ZHs1sivUpzi2f9U9eW8ydZyb8GO6KiT56LY,3643
|
|
56
|
-
orionis/console/tasks/
|
|
60
|
+
orionis/console/tasks/listener.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
+
orionis/console/tasks/schedule.py,sha256=YsS4mdPToAsjQ90iGB1nCku0Et3AN_-eT1zXA482sBo,20356
|
|
57
62
|
orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
63
|
orionis/container/container.py,sha256=aF_b6lTUpG4YCo9yFJEzsntTdIzgMMXFW5LyWqAJVBQ,87987
|
|
59
64
|
orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -86,7 +91,7 @@ orionis/container/validators/is_subclass.py,sha256=4sBaGLoRs8nUhuWjlP0VJqyTwVHYq
|
|
|
86
91
|
orionis/container/validators/is_valid_alias.py,sha256=4uAYcq8xov7jZbXnpKpjNkxcZtlTNnL5RRctVPMwJes,1424
|
|
87
92
|
orionis/container/validators/lifetime.py,sha256=IQ43fDNrxYHMlZH2zlYDJnlkLO_eS4U7Fs3UJgQBidI,1844
|
|
88
93
|
orionis/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
-
orionis/foundation/application.py,sha256=
|
|
94
|
+
orionis/foundation/application.py,sha256=VhafZWfd1IHi7KpaCcG62lKAxJAYwUoKWwCZO_-doPY,78480
|
|
90
95
|
orionis/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
96
|
orionis/foundation/config/startup.py,sha256=vbzduprRCNyYeR2nnMaqc1uKXw6PTzAY2jVfXNQKN8I,9691
|
|
92
97
|
orionis/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -164,7 +169,7 @@ orionis/foundation/config/queue/entities/queue.py,sha256=YiWPeEg5e0fd_DJM2ogska6
|
|
|
164
169
|
orionis/foundation/config/queue/enums/__init__.py,sha256=oWY8GWwr5mex7szs_bLVqAS1jbyuIAvKl7XFGSlU9A0,64
|
|
165
170
|
orionis/foundation/config/queue/enums/strategy.py,sha256=S_kw7KZtoCk5FTOkbuXepdy_fOl9Eav4uT2K0OyzBa0,602
|
|
166
171
|
orionis/foundation/config/roots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
|
-
orionis/foundation/config/roots/paths.py,sha256=
|
|
172
|
+
orionis/foundation/config/roots/paths.py,sha256=etI-rnXARmH_75BqLQGnmjFVpdHZQfEDz2-Qfx6BbsY,10284
|
|
168
173
|
orionis/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
174
|
orionis/foundation/config/session/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
170
175
|
orionis/foundation/config/session/entities/session.py,sha256=sJoD-_CiwUR88tva-rO22bagG3RTcHXrQGWbq4B5joM,5998
|
|
@@ -180,7 +185,7 @@ orionis/foundation/config/testing/enums/drivers.py,sha256=mwv47FcKDXEOxydQXAGtkd
|
|
|
180
185
|
orionis/foundation/config/testing/enums/mode.py,sha256=IbFpauu7J-iSAfmC8jDbmTEYl8eZr-AexL-lyOh8_74,337
|
|
181
186
|
orionis/foundation/config/testing/enums/verbosity.py,sha256=Z-FQ6C3rxbRwP8HoVibbgRMGcsen2SwTuEy3wnjdIhc,486
|
|
182
187
|
orionis/foundation/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
|
-
orionis/foundation/contracts/application.py,sha256=
|
|
188
|
+
orionis/foundation/contracts/application.py,sha256=Pr1-fl3SMuaq9WYQko9N8DhYtRXcuZG3tMNgBMUdsEs,28972
|
|
184
189
|
orionis/foundation/contracts/config.py,sha256=mCyA43f0n_e-CEL0f-sWWgE-M7GicS_aEtC_TNbn_yc,802
|
|
185
190
|
orionis/foundation/exceptions/__init__.py,sha256=q6we1N8kcd6j6GjUJY30WQhhHnqF9RXA0c6-ksEztlc,294
|
|
186
191
|
orionis/foundation/exceptions/integrity.py,sha256=mc4pL1UMoYRHEmphnpW2oGk5URhu7DJRREyzHaV-cs8,472
|
|
@@ -200,7 +205,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=72SoixFog9IOE9Ve9Xcfw6
|
|
|
200
205
|
orionis/foundation/providers/testing_provider.py,sha256=SrJRpdvcblx9WvX7x9Y3zc7OQfiTf7la0HAJrm2ESlE,3725
|
|
201
206
|
orionis/foundation/providers/workers_provider.py,sha256=oa_2NIDH6UxZrtuGkkoo_zEoNIMGgJ46vg5CCgAm7wI,3926
|
|
202
207
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
-
orionis/metadata/framework.py,sha256=
|
|
208
|
+
orionis/metadata/framework.py,sha256=RCvtTiMT3HlMt4o45Tl7o4JPASKtuvjg0BpAL7WU7g4,4109
|
|
204
209
|
orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
|
|
205
210
|
orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
206
211
|
orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -230,6 +235,9 @@ orionis/services/environment/key/key_generator.py,sha256=q39GD-VgRhH0uYB0ZdfUnq9
|
|
|
230
235
|
orionis/services/environment/validators/__init__.py,sha256=S0Us4_BtKPuOMQZf4uFFqUINB8l6Eb9vJbbxUCzIhfc,135
|
|
231
236
|
orionis/services/environment/validators/key_name.py,sha256=TSwVhQCbBYPZ_4zZ-o16yT_2pOe3WRWl9d8KzfDzWyg,1660
|
|
232
237
|
orionis/services/environment/validators/types.py,sha256=hiTszo7hS_1zQLclUIDOFUTGy2Kg2n3dZe7jU8Pmf1I,2839
|
|
238
|
+
orionis/services/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
+
orionis/services/file/directory.py,sha256=MdIc3hQXAcUaMFYujexScJ6-UIFgHCRN-TbGNr651Hg,7326
|
|
240
|
+
orionis/services/file/storage.py,sha256=d3wdG3991fNbyGw9S9xAQ6PI28bA1wXHjzCtnLAK5Ls,202
|
|
233
241
|
orionis/services/inspirational/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
234
242
|
orionis/services/inspirational/inspire.py,sha256=dUxwkNLjKC4jdi06cVB1gfyB2zHjfgdhYhwKtsOTf0Q,4090
|
|
235
243
|
orionis/services/inspirational/quotes.py,sha256=9hCIEFE0DdfXLaGq_SzFpXlC2AbGSnuFLzyec4Rd1H0,53455
|
|
@@ -372,7 +380,7 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
|
|
|
372
380
|
orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnIfJYgc,1206
|
|
373
381
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
374
382
|
orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
|
|
375
|
-
orionis-0.
|
|
383
|
+
orionis-0.485.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
|
|
376
384
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
377
385
|
tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
378
386
|
tests/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -454,7 +462,7 @@ tests/foundation/config/queue/test_foundation_config_queue.py,sha256=1qeov00ibVD
|
|
|
454
462
|
tests/foundation/config/queue/test_foundation_config_queue_brokers.py,sha256=pgdOtasyAkKOBscdb8T4GP5JeYRSBtGfpQIB4li0It8,2594
|
|
455
463
|
tests/foundation/config/queue/test_foundation_config_queue_database.py,sha256=qLYXjG8YVIp_NWYcZA9A2GmOdjFyt3snq9X1cdIok8M,4830
|
|
456
464
|
tests/foundation/config/root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
457
|
-
tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=
|
|
465
|
+
tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=cdXhXDa6BzfrgaUFjLTsBDeiAQQStdcvxZpflBiej2o,3935
|
|
458
466
|
tests/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
459
467
|
tests/foundation/config/session/test_foundation_config_session.py,sha256=itTV_OxTsUUsS4AVvcrNntkuEmMPmEO6YZLjVLRwP50,7380
|
|
460
468
|
tests/foundation/config/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -519,8 +527,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
519
527
|
tests/testing/validators/test_testing_validators.py,sha256=WPo5GxTP6xE-Dw3X1vZoqOMpb6HhokjNSbgDsDRDvy4,16588
|
|
520
528
|
tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
521
529
|
tests/testing/view/test_render.py,sha256=tnnMBwS0iKUIbogLvu-7Rii50G6Koddp3XT4wgdFEYM,1050
|
|
522
|
-
orionis-0.
|
|
523
|
-
orionis-0.
|
|
524
|
-
orionis-0.
|
|
525
|
-
orionis-0.
|
|
526
|
-
orionis-0.
|
|
530
|
+
orionis-0.485.0.dist-info/METADATA,sha256=sAUSO3l6yPg80tLGa_g-alhNK3f1fHgwb7Bxp00R2eE,4801
|
|
531
|
+
orionis-0.485.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
532
|
+
orionis-0.485.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
|
533
|
+
orionis-0.485.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
534
|
+
orionis-0.485.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|