Technical requirements
Since this chapter builds upon the previous chapters, you should have all of the technical needs already fulfilled. We will start using some additional third-party packages, so make sure you have pip
handy.
If you would like to jump ahead to make sure your environment is set up, here are the pip
packages that we plan to use:
$ pip install aioredis ariadne "databases[postgresql]" nextcord
Furthermore, if you recall, back in Chapter 2, Organizing a Project, we discussed using factory patterns. Because we are now starting to build what could become the base of a real-world application, I feel it is much better to use a factory pattern here that can be expanded. Therefore, for the remainder of this book, you will see more and more usage of the factory pattern that we already have established and used.
To see the full application code, please follow along with the GitHub repository at https://github.com/PacktPublishing/Python-Web-Development...