mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-03-25 01:20:23 +00:00
26 lines
568 B
Python
26 lines
568 B
Python
from models import KeyMap
|
|
|
|
class Client(object):
|
|
|
|
def set(self, key, value):
|
|
"""
|
|
This method is used to set a new value
|
|
in the db.
|
|
"""
|
|
o = self.get(key)
|
|
if o is None:
|
|
o = KeyMap()
|
|
o.key = key
|
|
|
|
o.value = value
|
|
o.save()
|
|
|
|
def get(self, key):
|
|
"""
|
|
This method is used to retrieve a value
|
|
from the db.
|
|
"""
|
|
try:
|
|
return KeyMap.objects.get(key=key).value
|
|
except KeyMap.DoesNotExist:
|
|
return None
|