so i have this python app and i need to schedule tasks on specific datetimes.
I was thinking something like:
scheduler.add(datetime,func())
which would call function func at the specified date and time but accurately. I want seconds or even milliseconds accuracy.
I searched and found the "scheduler" module and tried it but you can only use it with hh:mm format instead of hh:mm:ss.
I hope i am clear