我想让 Python apscheduler 在后台运行,这是我的代码:
from apscheduler.schedulers.background import BackgroundScheduler, BlockingScheduler
from datetime import datetime
import logging
import sys
logging.basicConfig(level=logging.DEBUG, stream=sys.stdout)
def singleton(cls, *args, **kw):
instances = {}
def _singleton(*args, **kw):
if cls not in instances:
instances[cls] = cls(*args, **kw)
return instances[cls]
return _singleton
@singleton
class MyScheduler(BackgroundScheduler):
pass
def simple_task(timestamp):
logging.info("RUNNING simple_task: %s" % timestamp)
scheduler = MyScheduler()
scheduler.start()
scheduler.add_job(simple_task, 'interval', seconds=5, args=[datetime.utcnow()])
当我运行命令时:
look:Python look$ python itger.py
我刚得到这个:
INFO:apscheduler.scheduler:Scheduler 已启动 DEBUG:apscheduler.scheduler:正在寻找要运行的作业 DEBUG:apscheduler.scheduler:No jobs; 等到添加作业 INFO:apscheduler.scheduler:将作业“simple_task”添加到作业存储“默认”
和ps:
ps -e | grep python
我刚得到54615 ttys000 0:00.00 grep python
我的问题是如何设置代码在后台运行,我可以看到它正在运行,或者它每 5 秒打印一次日志,所以代码显示?