I have a CSV file in which all time mentioned, and I want to run my python code file every day on time which is given in CSV file.

I saw some code on the Schedule library, but I don't understand how should I write that code. as well as, I have to write schedule code in that same file that I want to run, or should I create new file and write schedule code there and give that file link that I want to run?
and my file name is - send_mesaage.ipynb
CodePudding user response:
From geeksforgeeks i found this:
import sched
import time
# instance is created
scheduler = sched.scheduler(time.time,
time.sleep)
# function to print time
# and name of the event
def print_event(name):
print('EVENT:', time.time(), name)
# printing starting time
print ('START:', time.time())
# first event with delay of
# 1 second
e1 = scheduler.enter(1, 1,
print_event, ('1 st', ))
# second event with delay of
# 2 seconds
e1 = scheduler.enter(2, 1,
print_event, (' 2nd', ))
# executing the events
scheduler.run()
How this works:
Its simple,
event_schedule.enter(Sleep_Time, Priority, Function_to_run)
and event_schedule.run() starts the event_schedule.enter() do you have
CodePudding user response:
If you are using Kaggle, it maybe helpful.
