django-dynamic-preferences 1.10.1-1 source package in Ubuntu

Changelog

django-dynamic-preferences (1.10.1-1) unstable; urgency=low

  * Initial release

 -- Tom Teichler <email address hidden>  Wed, 15 Dec 2021 12:39:24 +0200

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
django-dynamic-preferences_1.10.1-1.dsc 1.7 KiB c35b4f338f30559fddc4e6dcaf027b20285528c22fae54ca2a089d5ca1593379
django-dynamic-preferences_1.10.1.orig.tar.gz 37.3 KiB e4b2bb7b2563c5064ba56dd76441c77e06b850ff1466a386a1cd308909a6c7de
django-dynamic-preferences_1.10.1-1.debian.tar.xz 2.8 KiB d9b66fc07902ce30945a6f94975d50dc43538321fabd8d4c7000cf6abe455eac

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.