Obtenga el tiempo de 1 minuto después en Python
now = datetime.datetime.now()
now_plus_10 = now + datetime.timedelta(minutes = 10)
Uptight Unicorn
now = datetime.datetime.now()
now_plus_10 = now + datetime.timedelta(minutes = 10)