I need to create a DateTime object that represents the current time minus 15 minutes.
This is simply what to do:
datetime.datetime.now() - datetime.timedelta(minutes = 15)
timedeltas are specifically designed to allow you to subtract or add deltas (differences) to datetimes.