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
+21
View File
@@ -0,0 +1,21 @@
"""Facade exports for NPZ-based storage implementation."""
from python_app.storage.npz.paths import (
collection_dir_name as _collection_dir_name,
format_float_for_key as _format_float_for_key,
radar_key_from_config,
sanitize_path_component as _sanitize_path_component,
)
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",
"_collection_dir_name",
"_format_float_for_key",
"_sanitize_path_component",
"radar_key_from_config",
]