Get Current Timestamp

Get the current Unix timestamp in milliseconds.

Code

General
import time
return int(time.time() * 1000)
Server

More Python Snippets