gunarevuri
10/06/2020, 6:14 AMclient.create_project("my_first_flow")
to create it." And here is my basic code from prefect import task, Flow
@task
def hello_world():
return "hello prefect"
@task
def prefect_say(s:str):
print(s)
with Flow("my_first_flow") as f:
r = hello_world()
s = prefect_say(r)
# f.run()
f.visualize()
f.register("my_first_flow")Jenny
10/06/2020, 1:15 PM