article

Saturday, June 11, 2016

Python Django - Apps Life Cycle

Python Django - Apps Life Cycle

Every application has an objective and can be reused into another project, like the contact form on a website can be an application, and can be reused for others.

Create an Application

We assume you are in your project folder. In our main “myprojectdjango” folder, the same folder than manage.py −

C:\myprojectdjango>python manage.py startapp myapp

You just created myapp application and like project, Django create a “myapp” folder with the application structure −

myapp/
   __init__.py
   admin.py
   models.py
   tests.py
   views.py

__init__.py − Just to make sure python handles this folder as a package.
admin.py − This file helps you make the app modifiable in the admin interface.
models.py − This is where all the application models are stored.
tests.py − This is where your unit tests are.
views.py − This is where your application views are.

Get the Project to Know About Your Application

we have our "myapp" application, now we need to register it with our Django project "myprojectdjango". To do so, update INSTALLED_APPS tuple in the settings.py file of your project (add your app name) −

myprojectdjango\myprojectdjango\settings.py

INSTALLED_APPS = (
   'django.contrib.admin',
   'django.contrib.auth',
   'django.contrib.contenttypes',
   'django.contrib.sessions',
   'django.contrib.messages',
   'django.contrib.staticfiles',
   'myapp', #created application myapp folder
)

Related Post