class AsyncIterable:
def __aiter__(self):
return self
async def __anext__(self):
data = await ...
if data:
return data
else:
raise StopAsyncIteration
Slide 51
Slide 51 text
Python
asyncio.
Slide 52
Slide 52 text
Wrapping Up
• What is asynchrony
• How asynchrony works
• Asynchrony and asyncio
Slide 53
Slide 53 text
Further Watching
• A gentle introduction to asyncio
• What in the World is Asyncio?
• Topics of Interest (Python Asyncio)
• You Might Not Want Async
• and more…!