Redis like syntax to store and retrieve from json files


Keywords
redis, json
License
Apache-2.0
Install
pip install easystore==1.3.9

Documentation

Easystore is a generic interface to call and write to json files using the abstractions used by redis-client.

## Sample ``` import sys sys.path.append("..") import easystore

k = easystore.DiskStore("jam") k.hset("system", "metrics", {"cpu": "31"}) ```