github-actions[bot]
Auto-sync from demo at Thu Aug 28 10:06:44 UTC 2025
ba8b592
raw
history blame
210 Bytes
from hashlib import md5
def compute_args_hash(*args):
return md5(str(args).encode()).hexdigest()
def compute_content_hash(content, prefix: str = ""):
return prefix + md5(content.encode()).hexdigest()