Website | Source

Hello world

from prefect import task, Flow

@task
def say_hello():
    print("Hello, World!")

with Flow("My First Flow") as flow:
    say_hello()

flow.run() # "Hello, world!"

Source appears to be PrefectCore (Python library), which suggests a "freemium" open-source model.

Features described:


Tags: platform   distribution   low-code  

Last modified 24 August 2021