Asynchronous generators are a powerful feature introduced in Python 3.6 that combine the capabilities of asynchronous programming and generators. They allow you to create functions that can produce a sequence of values asynchronously.
Read or watch:
- PEP 530 – Asynchronous Comprehensions
- What’s New in Python: Asynchronous Comprehensions / Generators
- Type-hints for generators
At the end of this project, you are expected to be able to explain to anyone, without the help of Google:
- How to write an asynchronous generator
- How to use async comprehensions
- How to type-annotate generators