()
| 117 | |
| 118 | # ---- Basic Utilities ---- |
| 119 | def get_timestamp(): |
| 120 | return time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) |
| 121 | |
| 122 | def generate_id(prefix="id"): |
| 123 | return f"{prefix}_{uuid.uuid4().hex[:8]}" |
no outgoing calls
no test coverage detected