Wingmore
12/15/2022, 4:26 AMfrom prefect import flow, task
@flow(name="Hello Flow",
description = "Hello flow")
def hello_world(name="world"):
"""Some description"""
...
Jeff Hale
12/15/2022, 2:12 PMWingmore
12/15/2022, 11:15 PMJeff Hale
12/16/2022, 12:05 AMWingmore
12/16/2022, 3:57 AMJeff Hale
12/16/2022, 1:43 PMpython myflow.py
• You should see the flow runs show up on the flow run page - which you showed above
• You should not see anything on the deployments page as you haven’t build and applied a deployment - see the docs here.
• If you click on astute-hoatzin you should see information about that specific flow run
• To see about making a description for your flow run - see this section of the docsWingmore
12/23/2022, 1:15 AMJeff Hale
12/23/2022, 1:24 AM