sibi-dst 2025.1.6__py3-none-any.whl → 2025.1.7__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.
- sibi_dst/df_helper/__init__.py +2 -1
- sibi_dst/df_helper/_artifact_updater_multi_wrapper.py +233 -244
- sibi_dst/df_helper/_parquet_reader.py +4 -18
- {sibi_dst-2025.1.6.dist-info → sibi_dst-2025.1.7.dist-info}/METADATA +1 -1
- {sibi_dst-2025.1.6.dist-info → sibi_dst-2025.1.7.dist-info}/RECORD +6 -6
- {sibi_dst-2025.1.6.dist-info → sibi_dst-2025.1.7.dist-info}/WHEEL +0 -0
sibi_dst/df_helper/__init__.py
CHANGED
@@ -3,11 +3,12 @@ from __future__ import annotations
|
|
3
3
|
from ._df_helper import DfHelper
|
4
4
|
from ._parquet_artifact import ParquetArtifact
|
5
5
|
from ._parquet_reader import ParquetReader
|
6
|
-
from ._artifact_updater_multi_wrapper import ArtifactUpdaterMultiWrapperThreaded
|
6
|
+
from ._artifact_updater_multi_wrapper import ArtifactUpdaterMultiWrapperThreaded, ArtifactUpdaterMultiWrapperAsync
|
7
7
|
|
8
8
|
__all__ = [
|
9
9
|
'DfHelper',
|
10
10
|
'ParquetArtifact',
|
11
11
|
'ParquetReader',
|
12
12
|
'ArtifactUpdaterMultiWrapperThreaded',
|
13
|
+
'ArtifactUpdaterMultiWrapperAsync',
|
13
14
|
]
|
@@ -1,11 +1,8 @@
|
|
1
|
-
import datetime
|
2
1
|
import time
|
3
|
-
import random
|
4
2
|
from concurrent.futures import ThreadPoolExecutor, as_completed
|
5
|
-
from typing import Any, Callable, Dict, List, Optional, Type
|
6
|
-
|
7
|
-
from sibi_dst.utils import ManagedResource
|
3
|
+
from typing import Any, Callable, Dict, List, Optional, Type
|
8
4
|
|
5
|
+
from sibi_dst.utils import ManagedResource
|
9
6
|
|
10
7
|
class ArtifactUpdaterMultiWrapperThreaded(ManagedResource):
|
11
8
|
"""
|
@@ -190,242 +187,234 @@ class ArtifactUpdaterMultiWrapperThreaded(ManagedResource):
|
|
190
187
|
return "\n".join(lines)
|
191
188
|
|
192
189
|
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
#
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
#
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
#
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
#
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
#
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
# f"Failed: {len(status['failed'])} {status['failed']}",
|
425
|
-
# f"Pending: {len(status['pending'])} {status['pending']}",
|
426
|
-
# "",
|
427
|
-
# "Per-artifact timings:"
|
428
|
-
# ]
|
429
|
-
# for name, dur in status['completion_times'].items():
|
430
|
-
# lines.append(f" {name}: {dur:.2f}s")
|
431
|
-
# return "\n".join(lines)
|
190
|
+
import asyncio
|
191
|
+
import datetime
|
192
|
+
import random
|
193
|
+
from typing import Any, Callable, Dict, List, Optional, Type
|
194
|
+
|
195
|
+
class ArtifactUpdaterMultiWrapperAsync(ManagedResource):
|
196
|
+
"""
|
197
|
+
Simplified wrapper that updates artifacts concurrently using an asyncio.Semaphore.
|
198
|
+
|
199
|
+
Features:
|
200
|
+
- Caps concurrency at max_workers via semaphore
|
201
|
+
- Optionally prioritises tasks via a priority function or static method on artifact classes
|
202
|
+
- Tracks per-artifact completion times
|
203
|
+
- Configurable retry/backoff strategy
|
204
|
+
- Optional metrics integration
|
205
|
+
- Thread-safe within a single asyncio loop
|
206
|
+
|
207
|
+
Usage:
|
208
|
+
wrapper = ArtifactUpdaterMultiWrapper(
|
209
|
+
wrapped_classes={
|
210
|
+
'mydata': [DataArtifactA, DataArtifactB],
|
211
|
+
},
|
212
|
+
max_workers=4,
|
213
|
+
retry_attempts=3,
|
214
|
+
update_timeout_seconds=600,
|
215
|
+
backoff_base=2,
|
216
|
+
backoff_max=60,
|
217
|
+
backoff_jitter=0.1,
|
218
|
+
priority_fn=None, # or custom
|
219
|
+
metrics_client=None,
|
220
|
+
debug=True,
|
221
|
+
logger=None,
|
222
|
+
artifact_class_kwargs={
|
223
|
+
'fs': my_fs,
|
224
|
+
'parquet_storage_path': 's3://bucket/data',
|
225
|
+
'logger': my_logger,
|
226
|
+
'debug': True,
|
227
|
+
}
|
228
|
+
)
|
229
|
+
await wrapper.update_data('mydata', period='ytd', overwrite=True)
|
230
|
+
"""
|
231
|
+
def __init__(
|
232
|
+
self,
|
233
|
+
wrapped_classes: Dict[str, List[Type]],
|
234
|
+
*,
|
235
|
+
max_workers: int = 3,
|
236
|
+
retry_attempts: int = 3,
|
237
|
+
update_timeout_seconds: int = 600,
|
238
|
+
backoff_base: int = 2,
|
239
|
+
backoff_max: Optional[int] = 60,
|
240
|
+
backoff_jitter: float = 0.1,
|
241
|
+
priority_fn: Optional[Callable[[Type], int]] = None,
|
242
|
+
metrics_client: Any = None,
|
243
|
+
artifact_class_kwargs: Optional[Dict[str, Any]] = None,
|
244
|
+
**kwargs: Dict[str, Any]
|
245
|
+
) -> None:
|
246
|
+
super().__init__(**kwargs)
|
247
|
+
self.wrapped_classes = wrapped_classes
|
248
|
+
self.max_workers = max_workers
|
249
|
+
self.retry_attempts = retry_attempts
|
250
|
+
self.update_timeout_seconds = update_timeout_seconds
|
251
|
+
self.backoff_base = backoff_base
|
252
|
+
self.backoff_max = backoff_max
|
253
|
+
self.backoff_jitter = backoff_jitter
|
254
|
+
self.priority_fn = priority_fn
|
255
|
+
self.metrics_client = metrics_client
|
256
|
+
|
257
|
+
# Default artifact init kwargs
|
258
|
+
today = datetime.datetime.today() + datetime.timedelta(days=1)
|
259
|
+
default_kwargs = {
|
260
|
+
'parquet_start_date': today.strftime('%Y-%m-%d'),
|
261
|
+
'parquet_end_date': today.strftime('%Y-%m-%d'),
|
262
|
+
'logger': self.logger,
|
263
|
+
'debug': self.debug,
|
264
|
+
'fs': self.fs,
|
265
|
+
'verbose': self.verbose,
|
266
|
+
}
|
267
|
+
self.artifact_class_kwargs = artifact_class_kwargs or default_kwargs.copy()
|
268
|
+
|
269
|
+
# State
|
270
|
+
self.completion_times: Dict[str, float] = {}
|
271
|
+
self.failed: List[str] = []
|
272
|
+
self.original_classes: List[Type] = []
|
273
|
+
|
274
|
+
def get_artifact_classes(self, data_type: str) -> List[Type]:
|
275
|
+
"""
|
276
|
+
Retrieve artifact classes by data type.
|
277
|
+
"""
|
278
|
+
self.logger.info(f"Fetching artifact classes for '{data_type}'")
|
279
|
+
if data_type not in self.wrapped_classes:
|
280
|
+
raise ValueError(f"Unsupported data type: {data_type}")
|
281
|
+
classes = self.wrapped_classes[data_type]
|
282
|
+
self.logger.info(f"Found {len(classes)} artifact classes for '{data_type}'")
|
283
|
+
return classes
|
284
|
+
|
285
|
+
def estimate_priority(self, artifact_cls: Type) -> int:
|
286
|
+
"""
|
287
|
+
Determine task priority for ordering. Lower values run first.
|
288
|
+
"""
|
289
|
+
name = artifact_cls.__name__
|
290
|
+
if self.priority_fn:
|
291
|
+
try:
|
292
|
+
pr = self.priority_fn(artifact_cls)
|
293
|
+
self.logger.debug(f"priority_fn for {name}: {pr}")
|
294
|
+
return pr
|
295
|
+
except Exception as e:
|
296
|
+
self.logger.warning(f"priority_fn error for {name}: {e}")
|
297
|
+
try:
|
298
|
+
fs = self.artifact_class_kwargs.get('fs')
|
299
|
+
path = self.artifact_class_kwargs.get('parquet_storage_path')
|
300
|
+
pr=1
|
301
|
+
if hasattr(artifact_cls, 'get_size_estimate'):
|
302
|
+
pr = artifact_cls.get_size_estimate(fs, path)
|
303
|
+
self.logger.debug(f"Estimated priority for {name}: {pr}")
|
304
|
+
return pr
|
305
|
+
except Exception:
|
306
|
+
return 1
|
307
|
+
|
308
|
+
async def _bounded_update(self, artifact_cls: Type, sem: asyncio.Semaphore, **update_kwargs) -> None:
|
309
|
+
"""
|
310
|
+
Wrap update_artifact in a semaphore slot to limit concurrency.
|
311
|
+
"""
|
312
|
+
async with sem:
|
313
|
+
name = artifact_cls.__name__
|
314
|
+
start = asyncio.get_event_loop().time()
|
315
|
+
self.logger.info(f"Starting update for {name}")
|
316
|
+
try:
|
317
|
+
for attempt in range(1, self.retry_attempts + 1):
|
318
|
+
try:
|
319
|
+
artifact = await asyncio.to_thread(
|
320
|
+
artifact_cls, **self.artifact_class_kwargs
|
321
|
+
)
|
322
|
+
await asyncio.wait_for(
|
323
|
+
asyncio.to_thread(
|
324
|
+
artifact.update_parquet, **update_kwargs
|
325
|
+
),
|
326
|
+
timeout=self.update_timeout_seconds
|
327
|
+
)
|
328
|
+
duration = asyncio.get_event_loop().time() - start
|
329
|
+
self.completion_times[name] = duration
|
330
|
+
self.logger.info(f"✅ {name} updated in {duration:.2f}s (attempt {attempt})")
|
331
|
+
if self.metrics_client:
|
332
|
+
self.metrics_client.increment('task_succeeded')
|
333
|
+
return
|
334
|
+
except asyncio.TimeoutError:
|
335
|
+
self.logger.warning(f"Timeout on {name}, attempt {attempt}")
|
336
|
+
except Exception as e:
|
337
|
+
self.logger.error(f"Error on {name} attempt {attempt}: {e}")
|
338
|
+
|
339
|
+
delay = min(self.backoff_base ** (attempt - 1), self.backoff_max)
|
340
|
+
delay *= 1 + random.uniform(0, self.backoff_jitter)
|
341
|
+
self.logger.info(f"Sleeping {delay:.1f}s before retrying {name}")
|
342
|
+
await asyncio.sleep(delay)
|
343
|
+
|
344
|
+
except asyncio.CancelledError:
|
345
|
+
self.logger.warning(f"{name} update cancelled")
|
346
|
+
raise
|
347
|
+
|
348
|
+
# permanent failure
|
349
|
+
self.logger.error(f"✖️ {name} permanently failed after {self.retry_attempts} attempts")
|
350
|
+
if self.metrics_client:
|
351
|
+
self.metrics_client.increment('task_failed')
|
352
|
+
self.failed.append(name)
|
353
|
+
|
354
|
+
async def update_data(self, data_type: str, **kwargs: Any) -> None:
|
355
|
+
"""
|
356
|
+
Entry point to update all artifacts of a given type concurrently.
|
357
|
+
"""
|
358
|
+
self.logger.info(f"Starting update_data for '{data_type}' with kwargs={kwargs}")
|
359
|
+
|
360
|
+
# RESET STATE
|
361
|
+
self.completion_times.clear()
|
362
|
+
self.failed.clear()
|
363
|
+
self.original_classes = self.get_artifact_classes(data_type)
|
364
|
+
|
365
|
+
# NON-DESTRUCTIVE SORTING
|
366
|
+
ordered = sorted(self.original_classes, key=self.estimate_priority)
|
367
|
+
|
368
|
+
sem = asyncio.Semaphore(self.max_workers)
|
369
|
+
tasks = [
|
370
|
+
asyncio.create_task(self._bounded_update(cls, sem, **kwargs))
|
371
|
+
for cls in ordered
|
372
|
+
]
|
373
|
+
|
374
|
+
try:
|
375
|
+
for coro in asyncio.as_completed(tasks):
|
376
|
+
await coro
|
377
|
+
except asyncio.CancelledError:
|
378
|
+
self.logger.warning("update_data was cancelled—aborting remaining retries")
|
379
|
+
for t in tasks:
|
380
|
+
t.cancel()
|
381
|
+
raise
|
382
|
+
finally:
|
383
|
+
total = len(self.original_classes)
|
384
|
+
completed = len(self.completion_times)
|
385
|
+
failed = len(self.failed)
|
386
|
+
self.logger.info(f"All artifacts processed: total={total}, completed={completed}, failed={failed}")
|
387
|
+
|
388
|
+
def get_update_status(self) -> Dict[str, Any]:
|
389
|
+
"""
|
390
|
+
Returns summary status including completion times.
|
391
|
+
"""
|
392
|
+
total = len(self.original_classes)
|
393
|
+
completed = set(self.completion_times.keys())
|
394
|
+
failed = set(self.failed)
|
395
|
+
pending = {cls.__name__ for cls in self.original_classes} - completed - failed
|
396
|
+
|
397
|
+
return {
|
398
|
+
'total': total,
|
399
|
+
'completed': list(completed),
|
400
|
+
'failed': list(failed),
|
401
|
+
'pending': list(pending),
|
402
|
+
'completion_times': self.completion_times,
|
403
|
+
}
|
404
|
+
|
405
|
+
@staticmethod
|
406
|
+
def format_status_table(status: Dict[str, Any]) -> str:
|
407
|
+
"""
|
408
|
+
Formats the status dict into a readable table.
|
409
|
+
"""
|
410
|
+
lines = [
|
411
|
+
f"Total: {status['total']}",
|
412
|
+
f"Completed: {len(status['completed'])} {status['completed']}",
|
413
|
+
f"Failed: {len(status['failed'])} {status['failed']}",
|
414
|
+
f"Pending: {len(status['pending'])} {status['pending']}",
|
415
|
+
"",
|
416
|
+
"Per-artifact timings:"
|
417
|
+
]
|
418
|
+
for name, dur in status['completion_times'].items():
|
419
|
+
lines.append(f" {name}: {dur:.2f}s")
|
420
|
+
return "\n".join(lines)
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import logging
|
2
1
|
from typing import Optional, ClassVar, Dict
|
3
2
|
|
4
3
|
import dask.dataframe as dd
|
@@ -47,15 +46,13 @@ class ParquetReader(DfHelper):
|
|
47
46
|
'backend': 'parquet'
|
48
47
|
}
|
49
48
|
|
50
|
-
def __init__(self,
|
49
|
+
def __init__(self, **kwargs):
|
51
50
|
self.config = {
|
52
51
|
**self.DEFAULT_CONFIG,
|
53
52
|
**kwargs,
|
54
53
|
}
|
55
|
-
self.
|
56
|
-
|
57
|
-
#self.logger = self.config.setdefault('logger', Logger.default_logger(logger_name=self.__class__.__name__))
|
58
|
-
#self.logger.set_level(logging.DEBUG if self.debug else logging.INFO)
|
54
|
+
super().__init__(**self.config)
|
55
|
+
|
59
56
|
self.parquet_storage_path = self.config.setdefault('parquet_storage_path', None)
|
60
57
|
if self.parquet_storage_path is None:
|
61
58
|
raise ValueError('parquet_storage_path must be set')
|
@@ -67,19 +64,9 @@ class ParquetReader(DfHelper):
|
|
67
64
|
if self.parquet_end_date is None:
|
68
65
|
raise ValueError('parquet_end_date must be set')
|
69
66
|
|
70
|
-
# Filesystem setup
|
71
|
-
#self.filesystem_type = filesystem_type
|
72
|
-
#self.filesystem_options = filesystem_options or {}
|
73
|
-
#self.fs = self.config.setdefault('fs', None)
|
74
|
-
#if self.fs is None:
|
75
|
-
# self.fs = fsspec.filesystem(self.filesystem_type, **self.filesystem_options)
|
76
|
-
#self.config.setdefault('fs', self.fs)
|
77
|
-
|
78
67
|
if not self.directory_exists():
|
79
68
|
raise ValueError(f"{self.parquet_storage_path} does not exist")
|
80
69
|
|
81
|
-
super().__init__(**self.config)
|
82
|
-
|
83
70
|
def load(self, **kwargs):
|
84
71
|
self.df = super().load(**kwargs)
|
85
72
|
return self.df
|
@@ -89,5 +76,4 @@ class ParquetReader(DfHelper):
|
|
89
76
|
info = self.fs.info(self.parquet_storage_path)
|
90
77
|
return info['type'] == 'directory'
|
91
78
|
except FileNotFoundError:
|
92
|
-
return False
|
93
|
-
|
79
|
+
return False
|
@@ -1,9 +1,9 @@
|
|
1
1
|
sibi_dst/__init__.py,sha256=j8lZpGCJlxlLgEgeIMxZnWdqJ0g3MCs7-gsnbvPn_KY,285
|
2
|
-
sibi_dst/df_helper/__init__.py,sha256=
|
3
|
-
sibi_dst/df_helper/_artifact_updater_multi_wrapper.py,sha256=
|
2
|
+
sibi_dst/df_helper/__init__.py,sha256=Jur_MO8RGPkVw0CS3XH5YIWv-d922DC_FwRDTvHHV6Y,432
|
3
|
+
sibi_dst/df_helper/_artifact_updater_multi_wrapper.py,sha256=10EkCYEfoWwTQbS-ahYWo6TvbtNXM8p0UqqDu0gTuyI,17426
|
4
4
|
sibi_dst/df_helper/_df_helper.py,sha256=iBoWz2iVgLzQ3hA1EwllL62dkraKamRx2sXseu30FVI,11914
|
5
5
|
sibi_dst/df_helper/_parquet_artifact.py,sha256=dCvUA2bytv0wY0pFI8lxbcLwXlgGpHndS36iKfEmjLw,14310
|
6
|
-
sibi_dst/df_helper/_parquet_reader.py,sha256=
|
6
|
+
sibi_dst/df_helper/_parquet_reader.py,sha256=m98C0TZRroOXvVc2LpEuElrJnquGlR81E1gjI7v1hi4,3102
|
7
7
|
sibi_dst/df_helper/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
sibi_dst/df_helper/backends/http/__init__.py,sha256=d1pfgYxbiYg7E0Iw8RbJ7xfqIfJShqqTBQQGU_S6OOo,105
|
9
9
|
sibi_dst/df_helper/backends/http/_http_config.py,sha256=eGPFdqZ5M3Tscqx2P93B6XoBEEzlmdt7yNg7PXUQnNQ,4726
|
@@ -71,6 +71,6 @@ sibi_dst/v2/df_helper/core/_params_config.py,sha256=DYx2drDz3uF-lSPzizPkchhy-kxR
|
|
71
71
|
sibi_dst/v2/df_helper/core/_query_config.py,sha256=Y8LVSyaKuVkrPluRDkQoOwuXHQxner1pFWG3HPfnDHM,441
|
72
72
|
sibi_dst/v2/utils/__init__.py,sha256=6H4cvhqTiFufnFPETBF0f8beVVMpfJfvUs6Ne0TQZNY,58
|
73
73
|
sibi_dst/v2/utils/log_utils.py,sha256=rfk5VsLAt-FKpv6aPTC1FToIPiyrnHAFFBAkHme24po,4123
|
74
|
-
sibi_dst-2025.1.
|
75
|
-
sibi_dst-2025.1.
|
76
|
-
sibi_dst-2025.1.
|
74
|
+
sibi_dst-2025.1.7.dist-info/METADATA,sha256=AaJunhF_PdvxT9KpA0mVzQhoY1sAZoe5HTA9ClabYPs,2610
|
75
|
+
sibi_dst-2025.1.7.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
76
|
+
sibi_dst-2025.1.7.dist-info/RECORD,,
|
File without changes
|