This is a duplicate of this question. You basically just need to add a timedelta of 10 minutes to get the time you want.
from datetime import datetime, timedelta
now = datetime.now()
now_plus_10 = now + timedelta(minutes = 10)
This is a duplicate of this question. You basically just need to add a timedelta of 10 minutes to get the time you want.
from datetime import datetime, timedelta
now = datetime.now()
now_plus_10 = now + timedelta(minutes = 10)