Open In App

Django – Creating Apps | Set – 1

Improve
Improve
Like Article
Like
Save
Share
Report

Prerequisites: Django – Dealing with warnings

Why do we need apps?
In Django Set 2 (Creating a Project), we saw how we can display text in our browser using Django but that is not the best and pythonic way. Django recommends using the project-app relationship to build Django projects.
Any website contains different sections. For example, Geeksforgeeks has different sections for users, contributors, to practice programming, for online courses, payments, etc. All these sections have different attributes, formats and authorized staffs like only users with admin privileges can access, see and alter payment details. For all these different sections, we create different Django apps.

Benefits of using Django apps

  • Django apps are reusable i.e. a Django app can be used with multiple projects.
  • We has loosely coupled i.e. almost independent components
  • Multiple developers can work on different components
  • Debugging and code organisation is easy. Django has excellent debugger tool.

Pre-installed apps

Django provides some pre-installed apps for users. To see pre-installed apps, navigate to
geeksforgeeks –> geeks_site –> settings.py
In your settings.py file, you will find INSTALLED_APPS. Apps listed in INSTALLED_APPS are provided by Django for developers’ comfort.

We will use some of these apps in our project.


Last Updated : 07 Jun, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads