I am reading the official documentations here
https://docs.python.org/2/library/datetime.html#strftime-strptime-behavior
and it states that I can use
%H and %M and %S for hours, minutes and seconds
I do this:
datetime.date.today().strftime("%Y-%m-%d %H:%M:%S")
and I always get
'2016-07-18 00:00:00'
where are the values ?