conver current time to seconds using python code example
Example: python get current time in seconds
import time
milliseconds = int(round(time.time() * 1000))
print(milliseconds)
import time
milliseconds = int(round(time.time() * 1000))
print(milliseconds)