Research-Stack/4-Infrastructure/shim/utils/__init__.py
allaun 5f80fd8429 chore(repo): push local 768-commit branch state onto clean remote baseline
This squashes all local history (768 commits) onto the scrubbed PR #90
baseline. Individual commits were lost during filter-repo corruption;
the working tree content is preserved intact.

Build: N/A (working tree state only)
2026-06-15 22:46:50 -05:00

8 lines
396 B
Python

from .hashing import sha256_text, sha256_bytes, sha256_path, file_sha256
from .json_utils import stable_json, canonical_json_bytes, load_json, load_jsonl
from .q16_utils import (
Q16_SCALE, Q16_ONE, q16_from_int, q16_to_float, q16_from_float,
q16_from_ratio, q16_add, q16_sub, q16_mul, q16_div, q16_neg, q16_abs,
)
from .datetime_utils import utc_now
from .paths import resolve_repo_root