8 lines
140 B
Python
Raw Normal View History

2021-09-08 16:17:37 +02:00
from time import time
def now_timestamp() -> int:
2021-09-16 18:33:39 +02:00
"""Return current timestamp in milliseconds (ms)."""
2021-09-08 16:17:37 +02:00
return int(time() * 1000)