Looking at Prefect I think I want to be doing some...
# ask-community
f
Looking at Prefect I think I want to be doing something like:
Copy code
with Flow('dummy prefect job') as flow:
    SendStatusTask('running')
    DoSomthethingTask()
    SendStatusTask('finished')
    SendStatusTask('failed')
But I don’t exactly know the correct way of doing the triggers in Prefect land?