django-dynamic-preferences 1.17.0-1 source package in Ubuntu
Changelog
django-dynamic-preferences (1.17.0-1) unstable; urgency=medium * Team Upload * Update d/watch for new PyPi archive naming policy * New upstream version 1.17.0 * Drop build-dep on python3-six -- Alexandre Detiste <email address hidden> Sun, 12 Jan 2025 18:35:51 +0100
Upload details
- Uploaded by:
- Debian Python Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Python Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Questing | release | universe | misc | |
Plucky | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
django-dynamic-preferences_1.17.0-1.dsc | 2.2 KiB | 493a25ed9c55d6479a3a46bfbb6e751162aa513b9be84c05af01b0be20754088 |
django-dynamic-preferences_1.17.0.orig.tar.gz | 50.1 KiB | c13520107d13c696997a237f8e7731cef93642837d523b95863a40115f7f2d8f |
django-dynamic-preferences_1.17.0-1.debian.tar.xz | 3.1 KiB | 00b80ccdbee9c151d1f6a98cd87745aa819ad6fcb383a05fc6057985072bc6ee |
Available diffs
- diff from 1.16.0-1 to 1.17.0-1 (4.8 KiB)
No changes file available.
Binary packages built by this source
- python3-django-dynamic-preferences: Dynamic global and instance settings for your django project
Dynamic-
preferences is a Django app, BSD-licensed, designed to help you
manage your project settings. While most of the time, a settings.py file is
sufficient, there are some situations where you need something more flexible
such as:
.
* per-user settings (or, generally speaking, per instance settings)
* settings change without server restart
.
For per-instance settings, you could actually store them in some kind of
profile model. However, it means that every time you want to add a new
setting, you need to add a new column to the profile DB table. Not very
efficient.
.
Dynamic-preferences allow you to register settings (a.k.a. preferences) in
a declarative way. Preferences values are serialized before storage in
database, and automatically deserialized when you need them.
.
With dynamic-preferences, you can update settings on the fly, through
django's admin or custom forms, without restarting your application.