Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

python实现进程定时执行

python如何实现定期执行,比如每隔5分钟执行,之前使用schedule方式定时调用发现随着时间累积,python进程越来越多


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
  • 定期执行可以用while循环加time.sleep()。
  • threading模块里有Timer类,也是间隔执行。
  • 也可以用APScheduler第三方模块。

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...