Skip to content

_hash_row

Internal helper
This page documents an internal implementation helper, not a primary public API.
Source code in src/fabricops_kit/technical_columns.py
88
89
90
def _hash_row(values: list[Any]) -> str:
    joined = "||".join(_safe_string(v) for v in values)
    return hashlib.sha256(joined.encode("utf-8")).hexdigest()