I want to find out the datetime 10 mins after current time. Let\'s say we have
from datetime import datetime now = datetime.now() new_now = datetime.str
This is a duplicate of this question. You basically just need to add a timedelta of 10 minutes to get the time you want.
now = datetime.datetime.now() now_plus_10 = now + datetime.timedelta(minutes = 10)