在Python上安排任务
我想运行一个每 4 小时运行一次函数的程序。 消耗最少的方法是什么?
I want to run a program that runs a function every 4 hours.
What is the least consuming way to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我能想到的最简单的方法(在 python 中,因为帖子是用 python 标记的):
Simlest way I can think of (in python since the post is tagged with python):
您可以使用
sched
模块以下是文档
https://docs .python.org/3.4/library/sched.html
You can use
sched
moduleHere are the docs
https://docs.python.org/3.4/library/sched.html
使用内置计时器线程:
Use the build in timer thread: