package documentation

Settings and configuration for Django. Read values from the module specified by the DJANGO_SETTINGS_MODULE environment variable, and then from django.conf.global_settings; see the global_settings.py for a list of all possible variables.

Module global_settings Default Django settings. Override these with settings in the module pointed to by the DJANGO_SETTINGS_MODULE environment variable.
Package locale LANG_INFO is a dictionary structure to provide meta information about languages.
Package urls Undocumented

From __init__.py:

Class LazySettings A lazy proxy for either global Django settings or a custom settings object. The user can manually configure settings prior to using them. Otherwise, Django uses the settings module pointed to by DJANGO_SETTINGS_MODULE.
Class Settings Undocumented
Class SettingsReference String subclass which references a current settings value. It's treated as the value in memory but serializes to a settings.NAME attribute reference.
Class UserSettingsHolder Holder for user configured settings.
Constant CSRF_COOKIE_MASKED_DEPRECATED_MSG Undocumented
Constant ENVIRONMENT_VARIABLE Undocumented
Constant USE_DEPRECATED_PYTZ_DEPRECATED_MSG Undocumented
Constant USE_L10N_DEPRECATED_MSG Undocumented
Variable settings Undocumented
ENVIRONMENT_VARIABLE: str = (source)

Undocumented

Value
'DJANGO_SETTINGS_MODULE'
USE_DEPRECATED_PYTZ_DEPRECATED_MSG: str = (source)

Undocumented

Value
'The USE_DEPRECATED_PYTZ setting, and support for pytz timezones is deprecated i
n favor of the stdlib zoneinfo module. Please update your code to use zoneinfo a
nd remove the USE_DEPRECATED_PYTZ setting.'
USE_L10N_DEPRECATED_MSG: str = (source)

Undocumented

Value
'The USE_L10N setting is deprecated. Starting with Django 5.0, localized formatt
ing of data will always be enabled. For example Django will display numbers and 
dates using the format of the current locale.'
CSRF_COOKIE_MASKED_DEPRECATED_MSG: str = (source)

Undocumented

Value
'The CSRF_COOKIE_MASKED transitional setting is deprecated. Support for it will 
be removed in Django 5.0.'
settings = (source)

Undocumented