PyCharm provides powerful and convenient support for Django projects through various functionalities. Following an example of an online library containing information on books and authors, we will be examining these functionalities one by one. After this section, we will have a better understanding of the way PyCharm facilitates the process of developing web applications in Django.
You can additionally find the complete code for this section in the Chapter08/mysite subfolder in the repository of the book. Note that, if you do decide to import the whole project instead of doing the steps yourself while following the discussion, you will need to create an appropriate virtual environment for the project to be imported. With that in mind, you can utilize the requirements.txt file of the project to correctly install all dependencies.
(You can head back to the Importing...