Summary

This chapter covered all the base concepts of asynchronous programming and how they work in Python. You should now understand what it means to yield or await a coroutine and know the differences between blocking and non-blocking designs. Hopefully, the short history of asynchronous programming in Python and the examples of asynchronous programming with callback also helped you understand why Python is one of the few languages with best-in-class support of asynchronous programming.

Moreover, you should also be familiar enough with the AsyncIO APIs to write your own asynchronous applications. This chapter only covered the basic usage of AsyncIO, but the features presented here are the most-used ones. Other more advanced features will be introduced in this book, as they are needed in other examples.

One last word on this chapter: Do not be fooled by the simplicity of the echo server implementation. As simple as it is, it is nevertheless a solid foundation to implement real microservices in Python in a fully asynchronous way. A bigger project would require more code, but it would be based on the same APIs that are already used in this small project: the creation of an application, the routing of requests, eventually with variable resources, and the implementation of handlers.

The next chapter continues this introduction of asynchronous and reactive programming with a way to structure your code. More specifically, it will show you how functional programming is well adapted for the implementation of asynchronous code with ReactiveX.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.216.77.153