I'm using Python 3.8. Is there a simpler way to get the current UTC time in which the hour, minute, and second are all zero? For example, if UTC now evalutes to "2020-09-24 12:34:45", I would want my result to be "2020-09-24 00:00:00". Right now I have
today = datetime.datetime.utcnow()
today_wo_time_str = datetime.datetime.strftime(today, '%Y-%m-%d 00:00:00')
today_wo_time_obj = datetime.datetime.stpftime(today_wo_time_str, '%Y-%m-%d 00:00:00')
which seems a little unecessarily wordy.