is there any prefect native function in python whi...
# prefect-getting-started
w
is there any prefect native function in python which is equivalent to the command:
prefect deployment ls --flow-name <flow-name>
?
2
r
Yes with prefect client
client.read_deployments(flow_filter=FlowFilter(name={"any_": flow_name})
1