# pickledb **Repository Path**: mirrors_lepy/pickledb ## Basic Information - **Project Name**: pickledb - **Description**: pickleDB is an open source key-value store using Python's json module. - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-09-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Logo](https://patx.github.io/pickledb/logo.png)](https://patx.github.io/pickledb) [pickleDB](https://patx.github.io/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](https://patx.github.io/pickledb) for installation instructions, API docs, advanced examples, benchmarks, and more. ```python from pickledb import PickleDB db = PickleDB("example.json").load() db.set("key", "value") db.get("key") # return "value" ```