Install & Compatibility
Where this runs
tested against v1.2.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 67.6MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 4.3s · import 0.000s · 68MB
66MB installed
● package 66MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
settings_export
✓ from django_settings_export import settings_export
✗ from SETTINGS_EXPORT.settings_export import settings_export
Add 'SETTINGS_EXPORT' to INSTALLED_APPS, add the context processor, and define SETTINGS_EXPORT list.
# settings.py
INSTALLED_APPS = [
...
'SETTINGS_EXPORT',
]
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'OPTIONS': {
'context_processors': [
...
'SETTINGS_EXPORT.settings_export.settings_export',
],
},
},
]
SETTINGS_EXPORT = [
'DEBUG',
'SITE_NAME',
]
# In template:
# {{ settings.DEBUG }}
Upgrade
Version history
1.2.1latest on PyPI · released Nov 6, 2016
Audit
Dependencies
No dependency data recorded yet.