from datetime import datetime
now = datetime.now()
month = str(now.month)
day = str(now.day)
year = str(now.year)
hour = str(now.hour)
minutes = str(now.minute)
seconds = str(now.second)
rightnow = str (year + month + day+ hour + minutes + seconds)