繁体   English   中英

如何安排 Python 代码每天运行多次,仅使用 python 代码

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

我有一个 CSV 文件,其中一直提到,我想每天按时运行我的 python 代码文件,该文件在 CSV 文件中给出。 在此处输入图像描述

我在 Schedule 库上看到了一些代码,但我不明白我应该如何编写该代码。 以及,我必须在我想要运行的同一个文件中编写计划代码,或者我应该创建新文件并在那里编写计划代码并提供我想要运行的文件链接?

我的文件名是 - send_mesaage.ipynb

geeksforgeeks我发现了这个:

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()

这是如何工作的:它很简单,
event_schedule.enter(Sleep_Time, Priority, Function_to_run)
event_schedule.run()启动event_schedule.enter()你有吗

如果您使用的是 Kaggle,可能会有所帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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