timedelta python 1 day code example
Example 1: python subtract 14 days from date
from datetime import date, timedelta
dt = date.today() - timedelta(5)
print('Current Date :',date.today())
print('5 days before Current Date :',dt)
Example 2: python timestamp shift one day
from datetime import datetime, timedelta
print datetime.now() + timedelta(days=5, hours=-5)