Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 887 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 887 Bytes

telegram github pypi

Jedis

PyJedis is a python package for easy json management that have an interface similar to redis.

Installation

to install with pip:

pip install jedis

or from source:

python setup.py install

Getting Started

from jedis import Jedis

j = Jedis("example.json")
if not j.exists("foo"):
    j.set("foo", "bar")
    
print(j.get('foo'))