Florent VanDeMoortele
06/06/2024, 3:00 PMMarvin
06/06/2024, 3:00 PMprefect.runtimepython
from prefect import flow
from prefect.runtime import flow_run
@flow
def my_flow():
    flow_name = flow_run.flow_name
    print(f'The name of the flow is: {flow_name}')
my_flow()prefect.runtime.flow_run.flow_name