Divkix / pickledb_ujson

pickleDB is an open source key-value store using Python's json module.

Home Page:https://pickledb-ujson.divkix.me

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyPI CI (pip) Release Package Pre-commit auto-update Supported Python Versions Downloads

pickleDB

pickleDB is lightweight, fast, and simple database based on the ujson module. And it's BSD licensed!

pickleDB is Fun

>>> import pickledb_ujson as pickledb

>>> db = pickledb.load('test.db', False)

>>> db.set('key', 'value')

>>> db.get('key')
'value'

>>> db.dump()
True

Easy to Install

$ pip install pickledb-ujson

Links

About

pickleDB is an open source key-value store using Python's json module.

https://pickledb-ujson.divkix.me

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%