Metadata-Version: 2.1
Name: jedis
Version: 0.1.0
Summary: An easy way to manage data in json
Home-page: https://github.com/Kobsser/Jedis
Author: Kobsser
Author-email: devmoein@gmail.com
License: MIT
Keywords: json python redis jedis PyJedis Kobsser easy-json easy simple easy-json-manipulation manager
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

[![telegram](https://img.shields.io/badge/Telegram-/json?url=https://t.me/Kobsser&style=flat&logo=telegram&color=26A5E4)](https://t.me/Kobsser) [![github](https://img.shields.io/badge/Github-Jedis-/json?url=https://github.com/Kobsser/Jedis&style=flat&logo=github&color=181717)](https://github.com/Kobsser/Jedis) [![pypi](https://img.shields.io/badge/Pypi-/json?url=https://pypi.org/project/jedis/&style=flat&logo=pypi&color=b5b5b5)](https://pypi.org/project/jedis/)
# 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](https://github.com/Kobsser/Jedis)**:
```
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'))
```
#

Change Log
==========

0.1.0 (30/05/2022)
------------------
- First release
- Fix bugs
- Add `keys` function (fix bugs)
- load & dump with utf-8 encoding
