We have come quite far in this book while trying to understand how to build applications for enterprises in Python. The chapters we've covered so far consisted of how to build a scalable and responsive backend for our enterprise application that can cater for a large number of concurrent users, so that our enterprise application is a success with its users. However, there is one topic we have been missing and which usually gets very little attention when building enterprise level applications: the application frontend.
When a user interacts with our application, they are hardly concerned with what is going on in the backend. The experience of the user is directly connected with how the frontend of the application responds to their inputs. This makes the application frontend not only one of the most important aspects of the application, but also...