Hands-On Reactive Programming with Python
上QQ阅读APP看书,第一时间看更新

Further reading

The evolution of the Python language is documented in Python Enhancement Proposals (PEPs). The three main evolution points of asynchronous programming in Python are described in detail in these dedicated PEPs:

The documentation of the AsyncIO package is in the Python official documentation. Do not hesitate to read it to see all features available with event loops, futures, and coroutines: https://docs.python.org/3/library/asyncio.html.

The documentation of the aiohttp package is very detailed, and contains examples. This package will be used throughout this whole book to write microservices. Its documentation is available here: https://aiohttp.readthedocs.io/en/stable/index.html.