abdulsalam2121
first commit
ec2ef5e
Raw
History Blame Contribute Delete
201 Bytes
import os
from datetime import datetime
def timestamped_filename(prefix: str = "output", ext: str = "csv") -> str:
ts = datetime.now().strftime("%Y%m%d_%H%M%S")
return f"{prefix}_{ts}.{ext}"