Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 365 Bytes

README.rst

File metadata and controls

13 lines (10 loc) · 365 Bytes

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')