Obtenha o tempo de 1 minuto depois em Python

now = datetime.datetime.now()
now_plus_10 = now + datetime.timedelta(minutes = 10)
Uptight Unicorn