Jul-16-2019, 08:43 AM
import schedule
import pyautogui
def job():
pyautogui.click()
schedule.every().day.at("04:39:03").do(job)
while True:
schedule.run_pending()Could someone point me in the right direction as to how I can set the time to milliseconds? I tried ("04:39:03:200") but it wouldn't work.Thank you in advance for any help,
yeto
