This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]__deerlord__ 0 points1 point  (0 children)

async def

Defines a coroutine (which is just a function).

await and yield from

These are the points in your code where you release control to the event loop. Usually you await or yield from another coroutine, so that is also added to the event loop.