Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在 Python 中每 x 秒重复执行一个函数的最佳方法是什么?
我想使用 SMNT 协议获取系统信息,并且我想每 30 秒刷新一次此数据。我的想法是运行一个线程并在获取数据后调用睡眠函数。有没有其他办法。例如,在后台每 30 秒运行给定函数的内置函数?
查看事件调度程序。您可以安排一个函数每 30 秒调用一次,并且一旦调用,它可以将自己重新添加到提示中,以便在另外 30 秒内调用。
另外,这篇文章可能对你有用。