您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

如何在Python中每60秒异步执行一个函数?

如何在Python中每60秒异步执行一个函数?

您可以尝试threading.Timer类:http : //docs.python.org/library/threading.html#timer- objects。

import threading

def f(f_stop):
    # do something here ...
    if not f_stop.is_set():
        # call f() again in 60 seconds
        threading.Timer(60, f, [f_stop]).start()

f_stop = threading.Event()
# start calling f Now and every 60 sec thereafter
f(f_stop)

# stop the thread when needed
#f_stop.set()
python 2022/1/1 18:45:33 有400人围观

撰写回答


你尚未登录,登录后可以

和开发者交流问题的细节

关注并接收问题和回答的更新提醒

参与内容的编辑和改进,让解决方法与时俱进

请先登录

推荐问题


联系我
置顶