You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import schedule
import time
def job():
print("I am doing this job!")
schedule.every().monday.at("14:00").do(job)
schedule.every().tuesday.at("14:00").do(job)
schedule.every().wednesday.at("14:00").do(job)
schedule.every().thursday.at("14:00").do(job)
schedule.every().friday.at("14:00").do(job)
while True:
schedule.run_pending()
time.sleep(1)
Now how can I schedule them for Asia/Kolkata time zone?
The text was updated successfully, but these errors were encountered:
Hi,
I am using this to schedule a job
Now how can I schedule them for Asia/Kolkata time zone?
The text was updated successfully, but these errors were encountered: