I have been writing this code and the time taken for the execution is about 3-4 seconds and I want it to run every 15 minutes I have been using this code
while True:
if datetime.datetime.now().minute % 15 == 0:
...
time.sleep(60)
now I cannot start the code to run exactly when the seconds on the clock are at 0 so I want the code to run exactly when the seconds are zero. Thanks in advance