What is the basic difference between the following import statements in a Django web app?
import settings
and
from django.conf import settings
Thanks in advance.
|
What is the basic difference between the following import statements in a Django web app?
and
Thanks in advance. |
|||||
|
Will import settings(.py) module of your Django project (if you are writing this code from the "root" package of your application, of course)
Will import settings object from django.conf package (Django's provided files). This is important, because
UPDATE: if you want to define some own settings, see this part of the documentation |
|||||
|