using python get current timestamp

>>>import time

>>>time.time()

//currenting timestamp to int

>>>int(time.time())

//converting to string

>>>str(time.time())