check the time when python script is started code example
Example 1: find time of run for python code
import time
start_time = time.time()
main()
print("--- %s seconds ---" % (time.time() - start_time))
Example 2: how to time a python script
from datetime import datetime
start = datetime.now()
# some kind of code
print(datetime.now() - start)