Python中是否存在类似于Ruby的Rufus-Scheduler的内存中作业调度程序

时间:2012-12-12 05:10:38

标签: python asynchronous scheduler

只是想知道Python是否有类似的东西:https://github.com/jmettraux/rufus-scheduler

我不希望附加任何数据库(postgres,redis等...)。

我检查了RQ和Celery,但是如果没有数据库就无法找到它。

理想情况下,我不需要任何工人。我想在主python进程中运行它。我相信Ruby通过EventMachine来做到这一点。

1 个答案:

答案 0 :(得分:3)

对于一次计划任务,请查看APScheduler,这是介绍页http://packages.python.org/APScheduler/#introduction

对于定期任务,请查看此SO问题 - Executing periodic actions in Python