I’m looking for a Pythonic way to wait/sleep until 5 seconds after midnight UTC. Server time is already set to UTC. I thought the most elegant way would be simply through pause & datetime, but datetime requires a mandatory date, as far as I understand. And I don’t want a specific date at all.
Like this, just without the date, only time.
import pause, datetime
dt = datetime.datetime(2013, 6, 2, 14, 36, 34, 383752)
pause.until(dt)