https://prefect.io logo
Title
r

Rob Freedy

12/13/2022, 3:08 PM
@ask-marvin how can I run a flow?
a

ask-marvin

12/13/2022, 3:08 PM
Let me check that for you @Rob Freedy
Hi! You can run a flow by using the
run-flow
command. For example:```from prefect import flow, task@flow()def my_flow(): print("Hello World!") task = flow(task=task.run_flow_run_task_2())my_flow()```