7 lines
175 B
Python
7 lines
175 B
Python
from datetime import datetime
|
|
from uuid import uuid4
|
|
|
|
|
|
def generate_id(prefix: str) -> str:
|
|
return f"{prefix}_{datetime.now().strftime('%Y%m%d%H%M%S')}_{uuid4().hex[:6]}"
|