我正在尝试遵循https://chalice.readthedocs.io/en/latest/topics/events.html中的文档
我试过这个
@app.schedule('0 0 * * ? *')
def dataRefresh(event):
print(event.to_dict())
并得到这个错误:
botocore.exceptions.ClientError:调用 PutRule 操作时发生错误 (ValidationException):参数 ScheduleExpression 无效。
所以尝试了这个:
@app.schedule(Cron('0 0 * * ? *'))
def dataRefresh(event):
print(event.to_dict())
并得到了另一个错误:
NameError:未定义名称“Cron”
没有任何效果......什么是正确的语法?