Sudharshan B
03/03/2022, 4:38 AMAnna Geller
03/03/2022, 10:15 AMprefect get flows
prefect get flow-runs
To get more info about a specific flow run from python code (but as you noticed, you need the flow run ID but you can also get it from prefect.context.get("flow_run_id")
):
from prefect.backend import FlowRunView
flow_run = FlowRunView.from_flow_run_id("4c0101af-c6bb-4b96-8661-63a5bbfb5596")
https://docs.prefect.io/orchestration/flow-runs/inspection.html#creating-a-flowrunviewDekel R
03/17/2022, 3:49 PM