7c6ffa6
1
2
3
4
5
6
from uuid import uuid4 def prefixed_id(prefix: str) -> str: return f"{prefix}_{uuid4().hex[:16]}"