简体   繁体   中英

How to schedule Python Code Run Multiple Time Every Day, With using only python code

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

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

If you are using Kaggle, it maybe helpful.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM