如果你想使用
Cron
对象,则每个值都是
对象:
from chalice import Chalice, Cron
app = Chalice(app_name='sched')
@app.schedule(Cron(0, 0, '*', '*', '?', '*'))
def my_schedule():
return {'hello': 'world'}
这是
docs
克朗
有更多的信息。
@app.schedule('cron(0 0 * * ? *)')
def dataRefresh(event):
print(event.to_dict())