Matthias
Kevin Kho
flow
@flow def abc(x: int, y:int): ....
from prefect import flow, task from prefect.deployments import DeploymentSpec from datetime import timedelta @task def abc(x): return x+1 @flow def myflow(x:int): abc(x) DeploymentSpec( flow=myflow, name="hello-world-daily", parameters={"x": 1} )