Получите время в MS Python

import time
round(time.time() * 1000)

def militime():
	return round(time.time() * 1000)
Thankful Toucan