PyJedis
is a python package for easyjson
management that have an interface similar to redis.
to install with pip:
pip install jedis
or from source:
python setup.py install
from jedis import Jedis
j = Jedis("example.json")
if not j.exists("foo"):
j.set("foo", "bar")
print(j.get('foo'))