Kicking off the <#C036FRC4KMW|> channel with my l...
# ask-community
k
Kicking off the #C036FRC4KMW channel with my latest Meetup presentation!
d
nice talk, when you migrated the Python code to Prefect Orion it looked like the output of tasks had to be "awaited" in order to get the results, does that mean Orion treats tasks as asynchronous whereas they weren't before?
a
It's because the Orion client itself is async your tasks can be both synchronous and async but well spotted 👍
k
Thank you for watching! Yes Orion is async, “await”-ing it lets you get the native Python object and use it inside the Flow
👍 1
d
very cool, thanks for explaining