14.7. Async Generator
Asynchronous Generators https://peps.python.org/pep-0525/
14.7.1. Example
>>> async def myfunc(self):
... yield 1
... await asyncio.sleep(1)
... yield 2
14.7.2. Typing
collections.abc.AsyncGenerator
Asynchronous Generators https://peps.python.org/pep-0525/
>>> async def myfunc(self):
... yield 1
... await asyncio.sleep(1)
... yield 2
collections.abc.AsyncGenerator