This chapter will walk you through the entire process of building a Django blog application from scratch in PyCharm. It combines all the topics that we discussed in the previous chapters regarding Python web development while introducing a number of new technologies from the Django web framework and explaining how they are integrated by PyCharm.
The following topics will be covered in this chapter:
- Understanding the model-view diagram in Django
- Working and interacting with a database
- The deployment of a Python web project
This discussion will help us tie in several important topics we have learned about so far in the context of web development, and serve as a conclusion for this section of this book. By the end of this chapter, you will also have a working version of a new web application in PyCharm that can also be extended further so that...