pickleDB is an in memory key-value store using Python's orjson module for persistence. It can also use SQLite instead of orjson if needed.
Last updated Jul 6, 2026
1.1k
Stars
134
Forks
18
Issues
0
Stars/day
Attention Score
69
Language breakdown
Python 100.0%
โธ Files
click to expand
README
pickleDB is a fast, easy to use, in-memory Python key-value store with first class asynchronous support. It is built with the orjson module for extremely high performance. It is licensed under the BSD three-clause license. Check out the website for installation instructions, API docs, advanced examples, benchmarks, and more.
from pickledb import PickleDB
db = PickleDB("example.json").load() db.set("key", "value")
db.get("key") # return "value"
๐ More in this category
