Create a Django App in PyCharm

The core idea of Django is to let developers build their applications quickly. When you master this framework, the path from concept to production-ready web application will be a short one. However, if you want to go even faster, you can learn to create Django apps in PyCharm.

View at original site


This tutorial will guide you through all of the steps to create a simple Django application that shows the current air temperature at your location. To bring in some interactivity, the app also lets you browse weather conditions at other random locations.

In this tutorial, you will learn how to:

  • Create a Django project in PyCharm.
  • Write models, views, and templates.
  • Make API calls and process responses.
  • Connect to databases and fill them with data.

Related Resources

Automate checks for your Django project
Extend Django's system check framework to turn painful code reviews into a joy.
Demystifying nulls and blanks in Django
What is the difference between blank=True and null=True anyway?
Django + htmx = ❤️
Speed up your Django list view with htmx and pagination.