pickledb

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

Github stars Tracking Chart

Download badge

pickleDB

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

pickleDB is Fun

>>> import pickledb

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

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

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

>>> db.dump()
True

Easy to Install

$ pip install pickledb

Latest Release Notes (version: 0.9)

  • rem(key) now returns False instead of raising an exception (0.9dev)
  • Change lrem(name) to lremlist(name) (0.9)
  • Add lremvalue(name, value) (0.9)
  • Add load() option to use sigterm handler or not (0.9)
  • All keys must now be strings (0.8)
  • All names for lists must now be strings (0.8)
  • All names for dicts must now be strings (0.8)
  • The get(key) function now returns False instead of None if there is no key (0.8)
  • Switched to Python's built in json module from simplejson (0.8.1)

Overview

Name With Ownerpatx/pickledb
Primary LanguagePython
Program languagePython (Language Count: 1)
Platform
License:BSD 3-Clause "New" or "Revised" License
Release Count0
Created At2011-10-28 00:04:40
Pushed At2023-05-14 06:17:52
Last Commit At2023-04-18 23:40:46
Stargazers Count875
Watchers Count14
Fork Count126
Commits Count109
Has Issues Enabled
Issues Count60
Issue Open Count18
Pull Requests Count11
Pull Requests Open Count15
Pull Requests Close Count6
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private
To the top