init commit

This commit is contained in:
Ayzen
2026-03-05 14:42:33 +03:00
commit fd4618b20d
964 changed files with 325114 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
"""NPZ-based dataset storage implementation and serialization helpers."""
from python_app.storage.npz.paths import radar_key_from_config
from python_app.storage.npz.serialize import PREPROC_MAGIC, RAW_MAGIC, RESULT_MAGIC
from python_app.storage.npz.store import NpzStore
__all__ = [
"NpzStore",
"PREPROC_MAGIC",
"RAW_MAGIC",
"RESULT_MAGIC",
"radar_key_from_config",
]