django-keyvaluestore

A Key-Value store for Django


License
BSD-3-Clause
Install
pip install django-keyvaluestore==0.3

Documentation

A simple key-value-store for Django

django-keyvaluestore implements a very simple database-based key-value store for Django.

Usage

The interface is straightforward:

from keyvaluestore import get_value_for_key, set_key_value
set_key_value('foo', 'bar')
get_value_for_key('foo')