gpt4 book ai didi

python - cron 事件的 chalice @app.schedule 语法是什么?

转载 作者:行者123 更新时间:2023-12-02 13:45:06 33 4
gpt4 key购买 nike

我正在尝试遵循 https://chalice.readthedocs.io/en/latest/topics/events.html 中的文档

我试过了

@app.schedule('0 0 * * ? *')
def dataRefresh(event):
print(event.to_dict())

得到这个错误:

botocore.exceptions.ClientError: An error occurred (ValidationException) when calling the PutRule operation: Parameter ScheduleExpression is not valid.

所以尝试了这个:

@app.schedule(Cron('0 0 * * ? *'))
def dataRefresh(event):
print(event.to_dict())

还有这个错误:

NameError: name 'Cron' is not defined

没有任何效果...正确的语法是什么?

最佳答案

如果你想使用 Cron 对象,你必须从 chalice 包中导入它,然后每个值都是 Cron 对象的位置参数:

from chalice import Chalice, Cron

app = Chalice(app_name='sched')


@app.schedule(Cron(0, 0, '*', '*', '?', '*'))
def my_schedule():
return {'hello': 'world'}

这里是 docs对于具有更多信息的 Cron

或者使用这种无需额外导入的语法:

@app.schedule('cron(0 0 * * ? *)')
def dataRefresh(event):
print(event.to_dict())

关于python - cron 事件的 chalice @app.schedule 语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60520326/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com